forked from weaigc/bingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.json
46 lines (45 loc) · 959 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
39
40
41
42
43
44
45
46
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [],
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"dev": {
"name": "Start Server",
"command": "npm start",
"runAtStart": true,
"preview": {
"port": 3000
},
"restartOn": {
"files": [
"./package.json"
],
"branch": false,
"resume": false
}
},
"build": {
"name": "Build",
"command": "npm run build"
},
"start": {
"name": "Start Server",
"command": "npm start"
},
"lint": {
"name": "Lint",
"command": "npm run lint"
},
"install": {
"name": "Install Dependencies",
"command": "npm install",
"restartOn": {
"files": [
"./package.json"
],
"branch": false,
"resume": false
}
}
}
}