Manuel Thalmann
a097fa2b88
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
77 lines
2 KiB
JSON
77 lines
2 KiB
JSON
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build",
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"command": "npm",
|
|
"args": [
|
|
"run",
|
|
"watch"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": [
|
|
{
|
|
"owner": "gulp",
|
|
"pattern": {
|
|
"regexp": ""
|
|
},
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": {
|
|
"regexp": "Starting '(?!Watch).*?'"
|
|
},
|
|
"endsPattern": {
|
|
"regexp": "Finished '.*?'"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "never"
|
|
}
|
|
},
|
|
{
|
|
"label": "Rebuild",
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"command": "npm",
|
|
"args": [
|
|
"run",
|
|
"rebuild"
|
|
],
|
|
"problemMatcher": [],
|
|
"presentation": {
|
|
"reveal": "never"
|
|
}
|
|
},
|
|
{
|
|
"label": "Lint",
|
|
"type": "shell",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
"command": "npm",
|
|
"args": [
|
|
"run",
|
|
"lint-ide"
|
|
],
|
|
"problemMatcher": "$eslint-stylish",
|
|
"presentation": {
|
|
"reveal": "never"
|
|
}
|
|
}
|
|
]
|
|
}
|