feature/share-libs
json 38 lines 768 Bytes
Raw
1 {
2 "version": "2.0.0",
3 "tasks": [
4 {
5 "label": "sf-desktop:setup",
6 "type": "shell",
7 "command": "nvm",
8 "args": [
9 "use",
10 ],
11 "isBackground": true,
12 "options": {
13 "cwd": "${workspaceFolder}/frontend/splitfire-desktop/"
14 }
15 },
16 {
17 "label": "ui:dev",
18 "type": "npm",
19 "isBackground": true,
20 "script": "next-dev",
21 "options": {
22 "cwd": "${workspaceFolder}/frontend/splitfire-desktop/"
23 },
24 "dependsOn": [
25 "sf-desktop:setup"
26 ]
27 },
28 {
29 "label": "ui:build",
30 "type": "npm",
31 "script": "next-build",
32 "isBackground": true,
33 "options": {
34 "cwd": "${workspaceFolder}/frontend/splitfire-desktop/"
35 }
36 }
37 ]
38 }