123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "tasks": [
- {
- "taskName": "Watch Site Dev",
- "type": "shell",
- "command": "./node_modules/.bin/gulp",
- "args": ["watch", "--development"],
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": ["$tsc-watch", "$gulp-tsc"],
- "isBackground": true
- },
- {
- "taskName": "Watch Site Prod",
- "type": "shell",
- "command": "./node_modules/.bin/gulp",
- "args": ["watch"],
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": ["$tsc-watch", "$gulp-tsc"],
- "isBackground": true
- },
- {
- "taskName": "Watch Site Login Dev",
- "type": "shell",
- "command": "./node_modules/.bin/gulp",
- "args": ["watch", "--development", "--section", "auth"],
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": ["$tsc-watch", "$gulp-tsc"],
- "isBackground": true
- },
- {
- "taskName": "Watch Site Login Prod",
- "type": "shell",
- "command": "./node_modules/.bin/gulp",
- "args": ["watch", "--section", "auth"],
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": ["$tsc-watch", "$gulp-tsc"],
- "isBackground": true
- },
- {
- "taskName": "Watch Client Dev",
- "type": "shell",
- "command": "./node_modules/.bin/gulp",
- "args": ["watch", "--development", "--client", "--write"],
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "isBackground": true
- },
- {
- "taskName": "Watch Client Prod",
- "type": "shell",
- "command": "./node_modules/.bin/gulp",
- "args": ["watch", "--client", "--write"],
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "isBackground": true
- }
- ]
- }
|