@@ -1,23 +1,57 @@
|
||||
{
|
||||
"version": "0.1.0",
|
||||
"version": "2.0.0",
|
||||
"command": "npm",
|
||||
"isShellCommand": true,
|
||||
"args": ["run"],
|
||||
"showOutput": "always",
|
||||
"args": [
|
||||
"run"
|
||||
],
|
||||
"tasks": [
|
||||
{
|
||||
"taskName": "compile",
|
||||
"isBuildCommand": true
|
||||
"label": "compile",
|
||||
"type": "shell",
|
||||
"command": "npm",
|
||||
"args": [
|
||||
"run",
|
||||
"compile"
|
||||
],
|
||||
"problemMatcher": [],
|
||||
"group": {
|
||||
"_id": "build",
|
||||
"isDefault": false
|
||||
}
|
||||
},
|
||||
{
|
||||
"taskName": "clean"
|
||||
"label": "clean",
|
||||
"type": "shell",
|
||||
"command": "npm",
|
||||
"args": [
|
||||
"run",
|
||||
"clean"
|
||||
],
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"taskName": "lint"
|
||||
"label": "lint",
|
||||
"type": "shell",
|
||||
"command": "npm",
|
||||
"args": [
|
||||
"run",
|
||||
"lint"
|
||||
],
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"taskName": "test",
|
||||
"isTestCommand": true
|
||||
"label": "test",
|
||||
"type": "shell",
|
||||
"command": "npm",
|
||||
"args": [
|
||||
"run",
|
||||
"test"
|
||||
],
|
||||
"problemMatcher": [],
|
||||
"group": {
|
||||
"_id": "test",
|
||||
"isDefault": false
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user