forked from skiff-org/skiff-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.json
38 lines (37 loc) · 796 Bytes
/
tasks.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"name": "Set yarn version",
"command": "yarn set version berry"
},
{
"name": "Install Dependencies",
"command": "yarn install"
},
{
"name": "Build dependencies",
"command": "yarn build:lib"
},
{
"name": "Start dev server",
"command": "yarn dev"
}
],
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"build:lib": {
"name": "build:lib",
"command": "yarn build:lib",
"runAtStart": false
},
"dev": {
"name": "dev",
"command": "yarn dev",
"runAtStart": true,
"preview": {
"port": 4200
}
}
}
}