YZProjectCloud/yanzhu-ui-app/.vscode/tasks.json

34 lines
692 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "miniprogram-dev",
"type": "shell",
"command": "echo",
"args": ["启动微信小程序开发模式"],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
},
{
"label": "miniprogram-build",
"type": "shell",
"command": "echo",
"args": ["构建微信小程序"],
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
}
]
}