tasks.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "taskName": "Watch Site Dev",
  8. "type": "shell",
  9. "command": "./node_modules/.bin/gulp",
  10. "args": ["watch", "--development"],
  11. "group": {
  12. "kind": "build",
  13. "isDefault": true
  14. },
  15. "problemMatcher": ["$tsc-watch", "$gulp-tsc"],
  16. "isBackground": true
  17. },
  18. {
  19. "taskName": "Watch Site Prod",
  20. "type": "shell",
  21. "command": "./node_modules/.bin/gulp",
  22. "args": ["watch"],
  23. "group": {
  24. "kind": "build",
  25. "isDefault": true
  26. },
  27. "problemMatcher": ["$tsc-watch", "$gulp-tsc"],
  28. "isBackground": true
  29. },
  30. {
  31. "taskName": "Watch Site Login Dev",
  32. "type": "shell",
  33. "command": "./node_modules/.bin/gulp",
  34. "args": ["watch", "--development", "--section", "auth"],
  35. "group": {
  36. "kind": "build",
  37. "isDefault": true
  38. },
  39. "problemMatcher": ["$tsc-watch", "$gulp-tsc"],
  40. "isBackground": true
  41. },
  42. {
  43. "taskName": "Watch Site Login Prod",
  44. "type": "shell",
  45. "command": "./node_modules/.bin/gulp",
  46. "args": ["watch", "--section", "auth"],
  47. "group": {
  48. "kind": "build",
  49. "isDefault": true
  50. },
  51. "problemMatcher": ["$tsc-watch", "$gulp-tsc"],
  52. "isBackground": true
  53. },
  54. {
  55. "taskName": "Watch Client Dev",
  56. "type": "shell",
  57. "command": "./node_modules/.bin/gulp",
  58. "args": ["watch", "--development", "--client", "--write"],
  59. "group": {
  60. "kind": "build",
  61. "isDefault": true
  62. },
  63. "isBackground": true
  64. },
  65. {
  66. "taskName": "Watch Client Prod",
  67. "type": "shell",
  68. "command": "./node_modules/.bin/gulp",
  69. "args": ["watch", "--client", "--write"],
  70. "group": {
  71. "kind": "build",
  72. "isDefault": true
  73. },
  74. "isBackground": true
  75. }
  76. ]
  77. }