123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "自动API文档生成",
- "type": "shell",
- "command": "myapidoc",
- "presentation": {
- "reveal": "always",
- "panel": "new",
- "group": "myapidoc"
- },
- },
- {
- "label": "运行文档服务",
- "type": "shell",
- "command": "mydoc",
- "presentation": {
- "reveal": "always",
- "panel": "new",
- "group": "mydoc"
- },
- },
- {
- "label": "Tinker交互终端",
- "type": "shell",
- "command": "php artisan tinker",
- "presentation": {
- "reveal": "always",
- "panel": "new",
- "group": "tinker"
- },
- },
- {
- "label": "你的日志",
- "type": "shell",
- "command": "mylog",
- "presentation": {
- "reveal": "always",
- "panel": "new",
- "group": "mylog",
- "showReuseMessage": false,
- "clear": true,
- "focus": true
- },
- }
- ]
- }
|