Skip to content

Make a setup script #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
157 changes: 157 additions & 0 deletions .codesandbox/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"command": "npm run setup",
"name": "Install Dependencies"
}
],

// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"build-ts": {
"name": "build-ts",
<<<<<<< HEAD
"command": "yarn build-ts",
=======
"command": "npm run build-ts",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"build": {
"name": "build",
<<<<<<< HEAD
"command": "yarn build",
=======
"command": "npm run build",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"lint": {
"name": "lint",
<<<<<<< HEAD
"command": "yarn lint",
=======
"command": "npm run lint",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"serve": {
"name": "serve",
<<<<<<< HEAD
"command": "yarn serve",
=======
"command": "npm run serve",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"start": {
"name": "start",
"command": "npm run start:dev",
<<<<<<< HEAD
"runAtStart": true
},
"build-css": {
"name": "build-css",
"command": "yarn build-css",
=======
"runAtStart": false
},
"build-css": {
"name": "build-css",
"command": "npm run build-css",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"start:dev": {
"name": "start:dev",
<<<<<<< HEAD
"command": "yarn start:dev",
=======
"command": "npm run start:dev",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"format": {
"name": "format",
<<<<<<< HEAD
"command": "yarn format",
=======
"command": "npm run format",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"migrate-dev": {
"name": "migrate-dev",
<<<<<<< HEAD
"command": "yarn migrate-dev",
=======
"command": "npm run migrate-dev",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"migrate-deploy": {
"name": "migrate-deploy",
<<<<<<< HEAD
"command": "yarn migrate-deploy",
=======
"command": "npm run migrate-deploy",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"test": {
"name": "test",
<<<<<<< HEAD
"command": "yarn test",
=======
"command": "npm run test",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"watch-test": {
"name": "watch-test",
<<<<<<< HEAD
"command": "yarn watch-test",
=======
"command": "npm run watch-test",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"watch-ts": {
"name": "watch-ts",
<<<<<<< HEAD
"command": "yarn watch-ts",
=======
"command": "npm run watch-ts",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"watch-css": {
"name": "watch-css",
<<<<<<< HEAD
"command": "yarn watch-css",
=======
"command": "npm run watch-css",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"watch": {
"name": "watch",
<<<<<<< HEAD
"command": "yarn watch",
=======
"command": "npm run watch",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
},
"setup": {
"name": "setup",
<<<<<<< HEAD
"command": "yarn setup",
=======
"command": "npm run setup",
>>>>>>> ab2652c7958e0ff7c6548f048d18413891ca345c
"runAtStart": false
}
}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ node_modules/
# Build outputs
dist/

# Code sandbox
.codesandbox/

# Prisma files
prisma/*
!prisma/schema.prisma
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/shelf/Uncommitted_changes_before_rebase__Changes_.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/shelf/Uncommitted_changes_before_rebase__Changes_1.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/shelf/Uncommitted_changes_before_rebase__Changes_2.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading