-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtasks.json
53 lines (53 loc) · 1.14 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
43
44
45
46
47
48
49
50
51
52
53
{
"version": "2.0.0",
"tasks": [
{
"label": "Build Library",
"type": "shell",
"command": "pnpm run build:plugin",
"problemMatcher": []
},
{
"label": "Build GitHub Demo (prod build)",
"type": "shell",
"command": "pnpm build:demo",
"problemMatcher": []
},
{
"label": "Cypress Open GUI",
"type": "shell",
"command": "pnpm cypress:open",
"problemMatcher": []
},
{
"label": "Cypress CI (mochawesome)",
"type": "shell",
"command": "pnpm cypress:ci",
"problemMatcher": []
},
{
"label": "Run Jest Tests with Coverage",
"type": "shell",
"command": "pnpm test:jest:coverage",
"problemMatcher": []
},
{
"label": "Run Jest Watch",
"type": "shell",
"command": "pnpm test:jest",
"problemMatcher": []
},
{
"label": "Start Library Development",
"type": "shell",
"command": "pnpm dev",
"problemMatcher": []
},
{
"label": "Release new Version (prompt)",
"type": "shell",
"command": "npm run release",
"problemMatcher": []
}
]
}