Closed
Description
- OS - Windows 10
- Node version: 5.7.1
- I installed node-sass (version 3.7.0), renamed test-project.component.css to test-project.component.scss and filled it with:
h1 {
color: blue;
}
After running ng s
everything is allright. But any change to .scss file (e.g. color: red;
) does not update/reaload a page despite succesful build:
file added app\test-project.component.scss___jb_tmp___
file changed app\test-project.component.scss___jb_tmp___
file deleted app\test-project.component.scss
file added app\test-project.component.scss___jb_old___
file deleted app\test-project.component.scss___jb_tmp___
file added app\test-project.component.scss
file deleted app\test-project.component.scss___jb_old___
Build successful - 407ms.
Slowest Trees | Total
----------------------------------------------+---------------------
vendor | 327ms
Slowest Trees (cumulative) | Total (avg)
----------------------------------------------+---------------------
vendor (1) | 327ms
Funnel (9) | 34ms (3 ms)
Preferably it would be great if a page ptyles were updated without full page reload.