Skip to content

Commit

Permalink
#133 Make sure CSS is built the first time in watch mode
Browse files Browse the repository at this point in the history
  • Loading branch information
akabekobeko committed Oct 5, 2018
1 parent 7b92545 commit fc4560b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"build": "npm-run-all -p build:*",
"watch:css1": "node-sass ./src/scss/App.scss ./src/assets/stylesheets/application.css -w -r --source-map true --output-style expanded",
"watch:css2": "node-sass ./src/scss/Responsive.scss ./src/assets/stylesheets/responsive.css -w -r --source-map true --output-style expanded",
"watch:server": "browser-sync start --server ./ --startPath src/assets",
"watch": "npm-run-all -p watch:*",
"watch:server": "browser-sync start --server ./ --startPath src/assets -f \"src/assets\"",
"watch": "npm-run-all -s build:css1 build:css2 -p watch:*",
"release:clean": "rimraf ./minimalflat2",
"release:mkdir": "mkdirp minimalflat2/stylesheets",
"release:css1": "node-sass ./src/scss/App.scss ./minimalflat2/stylesheets/application.css -r --output-style compressed",
Expand All @@ -44,12 +44,12 @@
"normalize.css": "^8.0.0"
},
"devDependencies": {
"bestzip": "^1.1.4",
"browser-sync": "^2.24.5",
"bestzip": "^2.1.1",
"browser-sync": "^2.24.7",
"cpx": "^1.5.0",
"cross-conf-env": "^1.1.2",
"mkdirp": "^0.5.1",
"node-sass": "^4.9.2",
"node-sass": "^4.9.3",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2"
}
Expand Down

0 comments on commit fc4560b

Please sign in to comment.