Skip to content

Commit f2dc65b

Browse files
authored
run gulp watch on launch
1 parent d953632 commit f2dc65b

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
]
1313
}
1414
},
15-
"onCreateCommand": "npm install",
15+
"onCreateCommand": "npm install & npm install -g gulp",
1616
"postAttachCommand": {
1717
"server": "npm run serve",
1818
"watcher": "gulp watch"

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"test": "nyc --check-coverage --lines 100 --functions 100 --branches 100 mocha app/tests",
1010
"coverage": "nyc report --reporter=text-lcov | node ./node_modules/coveralls/bin/coveralls.js",
1111
"lint": "./node_modules/.bin/eslint .",
12-
"watch-dev": "gulp start-watcher",
1312
"serve": "node ./node_modules/http-server/bin/http-server"
1413
},
1514
"husky": {
@@ -27,6 +26,7 @@
2726
"eslint": "^5.16.0",
2827
"eslint-config-airbnb-base": "^13.1.0",
2928
"eslint-plugin-import": "^2.17.2",
29+
"sass": "^1.26.10",
3030
"gulp": "^4.0.2",
3131
"gulp-concat": "^2.6.1",
3232
"gulp-remove-code": "^3.0.4",
@@ -35,7 +35,6 @@
3535
"husky": "^8.0.1",
3636
"mocha": "^8.1.2",
3737
"nyc": "^14.1.0",
38-
"sass": "^1.26.10",
3938
"sinon": "^7.3.2"
4039
}
4140
}

0 commit comments

Comments
 (0)