44 lines
968 B
JSON
44 lines
968 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build TypeScript and Bundle Static Site",
|
|
"type": "shell",
|
|
"command": "cd ${workspaceFolder}; source nodetopath.sh; npm run build",
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"reveal": "always"
|
|
}
|
|
},
|
|
{
|
|
"label": "Clean site",
|
|
"type": "shell",
|
|
"command": "cd ${workspaceFolder}; rm -rf dist",
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"reveal": "always"
|
|
}
|
|
},
|
|
{
|
|
"label": "Run Site",
|
|
"type": "shell",
|
|
"command": "cd ${workspaceFolder}; source nodetopath.sh; npm run start",
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"reveal": "always"
|
|
}
|
|
}
|
|
]
|
|
} |