equicord-companion
Version:
Equicord Companion is a vscode extension to test Equicord patches & webpack finds right from the comfort of your IDE
113 lines (112 loc) • 2.54 kB
JSON
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command": "pnpm",
"args": [
"run",
"watch:test"
],
"label": "watch:test",
"isBackground": true,
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"problemMatcher": []
},
{
"type": "shell",
"command": "pnpm",
"args": [
"run",
"test"
],
"label": "test",
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
}
},
{
"type": "shell",
"command": "pnpm",
"args": [
"run",
"watch"
],
"label": "watch",
"isBackground": true,
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
}
},
{
"type": "shell",
"command": "pnpm",
"args": [
"run",
"build",
"--dev"
],
"label": "build:dev",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"close": true,
"focus": false,
"panel": "new",
"showReuseMessage": false,
"clear": true
},
"problemMatcher": []
},
{
"type": "shell",
"command": "pnpm",
"args": [
"run",
"build:test"
],
"label": "build:test",
"group": {
"kind": "build",
"isDefault": false
},
"presentation": {
"echo": true,
"reveal": "always",
"close": true,
"focus": false,
"panel": "new",
"showReuseMessage": false,
"clear": true
},
"problemMatcher": []
}
]
}