mirror of
https://github.com/certd/certd.git
synced 2026-04-03 14:10:54 +08:00
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "启动Client",
|
|
"type": "shell",
|
|
"command": "npm",
|
|
"args": ["run", "dev"],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/packages/ui/certd-client"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared"
|
|
}
|
|
},
|
|
{
|
|
"label": "启动Server",
|
|
"type": "shell",
|
|
"command": "npm",
|
|
"args": ["run", "dev"],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/packages/ui/certd-server"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared"
|
|
}
|
|
},
|
|
{
|
|
"label": "同时启动Client和Server",
|
|
"dependsOn": ["启动Client", "启动Server"],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |