ismism/ismism.ts/.vscode/tasks.json
2023-10-17 13:13:28 +08:00

38 lines
683 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "cd ..; zsh cli/build.zsh",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
}
},
{
"label": "test",
"type": "shell",
"command": "cd ..; zsh cli/dbtst.zsh; deno test --allow-net --allow-read ismism.ts/tst",
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
}
}
]
}