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
{{ message }}
This repository was archived by the owner on Jul 24, 2024. It is now read-only.
I'm starting node-sass from terminal with the following options:
> node-sass -w -r ./ -o ./
The problem is that when it compiles the changed .scss file and outputs it in the same folder it detects that the output .css file is changed and starts the compilation again and starts looping:
=> changed: D:_\my-project\css\login.component.scss
Rendering Complete, saving .css file...
Wrote CSS to D:_\my-project\css\login.component.css
=> changed: D:_\my-project\css\login.component.css
Rendering Complete, saving .css file...
Wrote CSS to D:_\my-project\css\login.component.css
=> changed: D:_\my-project\css\login.component.css
Rendering Complete, saving .css file...
Wrote CSS to D:_\my-project\css\login.component.css
=> changed: D:_\my-project\css\login.component.css
Rendering Complete, saving .css file...
Wrote CSS to D:_\my-project\css\login.component.css
=> changed: D:_\my-project\css\login.component.css
Rendering Complete, saving .css file...
Wrote CSS to D:_\my-project\css\login.component.css
...