forked from toolkit-for-ynab/toolkit-for-ynab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.json
53 lines (53 loc) · 977 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
47
48
49
50
51
52
53
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "yarn build:development",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build-prod",
"command": "yarn build:production",
"type": "shell"
},
{
"label": "install",
"command": "yarn install",
"type": "shell"
},
{
"label": "lint",
"command": "yarn lint",
"type": "shell"
},
{
"label": "lint-fix",
"command": "yarn lint:fix",
"type": "shell"
},
{
"label": "setup",
"command": "yarn install && yarn build:development",
"type": "shell"
},
{
"label": "test",
"command": "yarn test",
"type": "shell",
"group": {
"kind": "test",
"isDefault": true
}
},
{
"label": "watch",
"command": "yarn watch",
"type": "shell"
}
]
}