ismism/.vscode/tasks.json

37 lines
684 B
JSON
Raw Normal View History

2023-11-04 16:55:00 +08:00
{
"version": "2.0.0",
"tasks": [
{
"label": "deno test",
"type": "shell",
2023-12-04 13:32:36 +08:00
"command": "zsh cli/db.zsh; deno test --allow-net --allow-read ismism.ts/tst",
2023-11-04 16:55:00 +08:00
"group": {
"kind": "test",
"isDefault": true,
},
"presentation": {
"echo": true,
"reveal": "always",
"panel": "dedicated",
"showReuseMessage": true,
"clear": true,
}
2023-12-04 13:32:36 +08:00
}, {
"label": "build",
"type": "shell",
2023-12-11 14:26:44 +08:00
"command": "cd ismism.ts; zsh cli/build.zsh",
2023-12-04 13:32:36 +08:00
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"panel": "dedicated",
"showReuseMessage": true,
"clear": true,
}
2023-11-04 16:55:00 +08:00
}
]
}