38 lines
853 B
JSON
38 lines
853 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "(legacy) Start Node server with nvs latest",
|
|
"type": "shell",
|
|
"command": "nvs use latest && npm run start",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/front/v1"
|
|
},
|
|
"isBackground": true,
|
|
"problemMatcher": [],
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared"
|
|
}
|
|
},
|
|
{
|
|
"label": "Start Node server with nvs latest",
|
|
"type": "shell",
|
|
"command": "nvs use latest && npm run start",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/front/v2"
|
|
},
|
|
"isBackground": true,
|
|
"problemMatcher": [],
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared"
|
|
}
|
|
}
|
|
]
|
|
}
|