ismism/ismism.ts/.vscode/tasks.json

39 lines
638 B
JSON
Raw Normal View History

2022-08-11 13:01:30 +08:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
2022-11-24 13:40:45 +08:00
"command": "cd ..; zsh cli/build.zsh",
2022-08-11 13:01:30 +08:00
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
}
},
{
"label": "test",
"type": "shell",
2022-11-23 11:40:57 +08:00
"command": "cd ..; deno test --allow-all",
2022-08-11 13:01:30 +08:00
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
}
}
]
}