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

38 lines
683 B
JSON
Raw Normal View History

2023-04-18 11:20:03 +08:00
{
"version": "2.0.0",
"tasks": [
{
2023-10-03 12:35:20 +08:00
"label": "build",
"type": "shell",
"command": "cd ..; zsh cli/build.zsh",
"group": {
"kind": "build",
"isDefault": true
},
2023-04-18 12:33:41 +08:00
"presentation": {
2023-10-03 12:35:20 +08:00
"echo": true,
"reveal": "always",
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
}
},
{
"label": "test",
"type": "shell",
2023-10-17 13:13:28 +08:00
"command": "cd ..; zsh cli/dbtst.zsh; deno test --allow-net --allow-read ismism.ts/tst",
2023-10-03 12:35:20 +08:00
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"panel": "dedicated",
"showReuseMessage": false,
2023-04-18 12:33:41 +08:00
"clear": true
}
2023-04-18 11:20:03 +08:00
}
]
}