forked from swablab/website
36 lines
698 B
JSON
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": []
|
|
}
|
|
]
|
|
}
|