tasks.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "自动API文档生成",
  6. "type": "shell",
  7. "command": "myapidoc",
  8. "presentation": {
  9. "reveal": "always",
  10. "panel": "new",
  11. "group": "myapidoc"
  12. },
  13. },
  14. {
  15. "label": "运行文档服务",
  16. "type": "shell",
  17. "command": "mydoc",
  18. "presentation": {
  19. "reveal": "always",
  20. "panel": "new",
  21. "group": "mydoc"
  22. },
  23. },
  24. {
  25. "label": "Tinker交互终端",
  26. "type": "shell",
  27. "command": "php artisan tinker",
  28. "presentation": {
  29. "reveal": "always",
  30. "panel": "new",
  31. "group": "tinker"
  32. },
  33. },
  34. {
  35. "label": "你的日志",
  36. "type": "shell",
  37. "command": "mylog",
  38. "presentation": {
  39. "reveal": "always",
  40. "panel": "new",
  41. "group": "mylog",
  42. "showReuseMessage": false,
  43. "clear": true,
  44. "focus": true
  45. },
  46. }
  47. ]
  48. }