website/.vscode/tasks.json
ndsboy 131df9f7e1
All checks were successful
deploy / deploy (push) Successful in 1m53s
chore: update deps
2025-03-24 18:33:41 +00:00

44 lines
No EOL
814 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "install",
"command": "npm install",
"type": "shell",
"problemMatcher": []
},
{
"label": "update",
"command": "npm update -S",
"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": []
}
]
}