website/.vscode/tasks.json
ndsboy 4bca29d3c3
Some checks are pending
Build Astro / 🧪 Astro check (push) Waiting to run
initial commit
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": []
}
]
}