ismism/ismism.ts/.vscode/tasks.json
2022-11-24 13:40:45 +08:00

39 lines
638 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 ..; deno test --allow-all",
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
}
}
]
}