-
Notifications
You must be signed in to change notification settings - Fork 1
/
tasks.json
42 lines (42 loc) · 1.07 KB
/
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
{
"version": "2.0.0",
"tasks": [
{
"label": "Dev: Lint",
"type": "shell",
"command": "./scripts/dev-lint.sh",
},
{
"label": "Dev: Setup",
"type": "shell",
"command": "./scripts/dev-setup.sh",
},
{
"label": "Dev: Build",
"type": "shell",
"command": "./scripts/dev-build.sh",
},
{
"label": "Dev: Test",
"type": "shell",
"dependsOn": "Dev: Build",
"command": "./scripts/dev-test.sh",
},
{
"label": "Release: Setup",
"type": "shell",
"command": "./scripts/release-setup.sh",
},
{
"label": "Release: Build",
"type": "shell",
"command": "./scripts/release-build.sh",
},
{
"label": "Release: Benchmark",
"type": "shell",
"dependsOn": "Release: Build",
"command": "./scripts/release-benchmark.sh",
},
]
}