1
0
Fork 0
forked from swablab/website
website/.vscode/tasks.json
2025-02-22 16:59:06 +00:00

36 lines
698 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "install/update",
"command": "deno task install",
"type": "shell",
"problemMatcher": []
},
{
"label": "dev",
"command": "deno task dev",
"type": "shell",
"problemMatcher": []
},
{
"label": "check",
"command": "deno task check",
"type": "shell",
"problemMatcher": []
},
{
"label": "preview",
"command": "deno task preview",
"type": "shell",
"problemMatcher": [],
"dependsOn": ["build"]
},
{
"label": "build",
"command": "deno task build",
"type": "shell",
"problemMatcher": []
}
]
}