node-sass
node-sass copied to clipboard
Version 5.0.0 does not seem to have fixed some fundamental problems
- NPM version (
npm -v
): 6.14.8 - Node version (
node -v
): 14.15.1 - node-sass: 5.0.0
The Problem
The issue #2111 was closed 9 days ago, but at least 2 of the main issues listed there do not appear to have been fixed.
- Compile on watch by default: When using the watch flag we should do a compilation before watching.
- Stop watching .css files
We've installed node-sass version 5. We use it as follows:
start /min /b node-sass source\css --output output\css --watch
We're still seeing the following problems:
- When the watcher is started it does not compile before watching.
- A newly added
.scss
file is not being compiled. This requires having to start the process again. - When a change is made to an
.scss
file then there are two outputs: the.css
file is also being compiled.
Can someone advise on this?
Thanks