You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* update readme with fix from #1939
* update with better globbing
* added note
* updating with a note and reverting previous changes
* how about this?
* refactor
* added note about new files back in after verifying locally
* spaces back in, sorry was my editor!
* removed note about new files :)
* added bullet about new files issue currently open on node-sass
@@ -442,27 +441,19 @@ Then we can change `start` and `build` scripts to include the CSS preprocessor c
442
441
}
443
442
```
444
443
445
-
Now running `npm start` and `npm run build` also builds Sass files. Note that `node-sass` seems to have an [issue recognizing newly created files on some systems](https://github.com/sass/node-sass/issues/1891) so you might need to restart the watcher when you create a file until it’s resolved.
444
+
Now running `npm start` and `npm run build` also builds Sass files.
446
445
447
-
**Performance Note**
446
+
**Why `node-sass-chokidar`?**
448
447
449
-
`node-sass --watch` has been reported to have *performance issues* in certain conditions when used in a virtual machine or with docker. If you are experiencing high CPU usage with node-sass you can alternatively try [node-sass-chokidar](https://www.npmjs.com/package/node-sass-chokidar) which uses a different file-watcher. Usage remains the same, simply replace `node-sass` with `node-sass-chokidar`:
448
+
`node-sass` has been reported as having the following issues:
450
449
451
-
```
452
-
npm uninstall node-sass --save-dev
453
-
npm install node-sass-chokidar --save-dev
454
-
```
450
+
-`node-sass --watch` has been reported to have *performance issues* in certain conditions when used in a virtual machine or with docker.
0 commit comments