Sass does not update changes when saving

I use sass for windows and apply sass --watchthrough cmd. it first gives css output , but it does not detect or update any changes that I make to the file .scss.

This is what I do.

I have style.scss, in which I make changes and every time I have to apply

sass --watch style.scss:style.css

to convert it to style.css.

sass version: ' sass 3.5.1 (bleeding edge) ruby version:' ruby 2.4.2p198 '

where am i wrong enter image description here

+4
source share
1 answer

. .scss , , ... Sass is watching for changes. Press Ctrl-C to stop. write _style.css write _style.css.map

0

Source: https://habr.com/ru/post/1686623/


All Articles