We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c97aab0 commit f26d15cCopy full SHA for f26d15c
2 files changed
.devcontainer/devcontainer.json
@@ -15,7 +15,7 @@
15
"onCreateCommand": "npm install",
16
"postAttachCommand": {
17
"server": "npm run serve",
18
- "watcher": "npx gulp watch"
+ "watcher": "npx run watch"
19
},
20
"hostRequirements": {"cpus": 4}
21
}
package.json
@@ -9,7 +9,8 @@
9
"test": "nyc --check-coverage --lines 100 --functions 100 --branches 100 mocha app/tests",
10
"coverage": "nyc report --reporter=text-lcov | node ./node_modules/coveralls/bin/coveralls.js",
11
"lint": "./node_modules/.bin/eslint .",
12
- "serve": "npx serve -n"
+ "serve": "npx gulp && npx serve -n",
13
+ "watch": "npx gulp watch"
14
"husky": {
"hooks": {
0 commit comments