tasks.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. "runOptions": {
  14. "runOn": "folderOpen"
  15. }
  16. },
  17. {
  18. "label": "运行文档服务",
  19. "type": "shell",
  20. "command": "mydoc",
  21. "presentation": {
  22. "reveal": "always",
  23. "panel": "new",
  24. "group": "mydoc"
  25. },
  26. "runOptions": {
  27. "runOn": "folderOpen"
  28. }
  29. },
  30. {
  31. "label": "Tinker交互终端",
  32. "type": "shell",
  33. "command": "php artisan tinker",
  34. "presentation": {
  35. "reveal": "always",
  36. "panel": "new",
  37. "group": "tinker"
  38. },
  39. "runOptions": {
  40. "runOn": "folderOpen"
  41. }
  42. },
  43. {
  44. "label": "你的日志",
  45. "type": "shell",
  46. "command": "mylog",
  47. "presentation": {
  48. "reveal": "always",
  49. "panel": "new",
  50. "group": "mylog",
  51. "showReuseMessage": false,
  52. "clear": true,
  53. "focus": true
  54. },
  55. "runOptions": {
  56. "runOn": "folderOpen"
  57. }
  58. }
  59. ]
  60. }