Skip to content

Commit

Permalink
Use node-sass-chokidar to avoid infinite loop
Browse files Browse the repository at this point in the history
  • Loading branch information
mfogel committed Dec 2, 2017
1 parent 46b73d3 commit 88a9f3c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
15 changes: 15 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 4 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@
"license": "ISC",
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype"
]
"plugins": ["flowtype"]
},
"dependencies": {
"bootstrap": "^4.0.0-beta.2",
"firebase": "^4.7.0",
"jquery": "^3.2.1",
"node-sass": "^4.7.2",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
Expand All @@ -22,8 +20,8 @@
"reactstrap": "^5.0.0-alpha.4"
},
"scripts": {
"build-css": "node-sass --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
Expand Down

0 comments on commit 88a9f3c

Please sign in to comment.