57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build",
|
|
"type": "shell",
|
|
"command": "npx spec compile --all",
|
|
"windows": {
|
|
"options": {
|
|
"shell": {
|
|
"executable": "cmd.exe",
|
|
"args": ["/d", "/c"]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "Serve",
|
|
"type": "shell",
|
|
"command": "npx spec serve",
|
|
"windows": {
|
|
"options": {
|
|
"shell": {
|
|
"executable": "cmd.exe",
|
|
"args": ["/d", "/c"]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "Watch",
|
|
"type": "shell",
|
|
"command": "npx spec watch",
|
|
"windows": {
|
|
"options": {
|
|
"shell": {
|
|
"executable": "cmd.exe",
|
|
"args": ["/d", "/c"]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "Conservative",
|
|
"type": "shell",
|
|
"command": "npx spec watch --conservative",
|
|
"windows": {
|
|
"options": {
|
|
"shell": {
|
|
"executable": "cmd.exe",
|
|
"args": ["/d", "/c"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |