website/.vscode/tasks.json
ndsboy 0f02f367f5
Some checks failed
deploy / deploy (push) Failing after 1m15s
feat: use npm
2025-03-19 20:12:13 +00:00

38 lines
No EOL
699 B
JSON

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