Sass watch is detecting changes but not compiling to css
When I run sass --watch app.sass:app.css
terminal shows that changes have been detected to sass but won't compile to css. I am using Bourbon so all my .scss and .sass files are imported via mixins.
ex.
>>> Sass is watching for changes. Press Ctrl-C to stop.
>>> Change detected to: css/2-modules/top-nav.scss
Make sure the file you are saving with an _filename.scss
has been properly imported into the mainfile.scss
. if you have not imported the _filename.scss
it will detect a change but not compile.
check for the Config.rb file in your folder. without it you have to Ctr c every time and pass this command sass --watch scssname:cssname
then You can find your code in css.
Are you sure all of your partials are being imported into app.scss? I had the same issue, only to realize the partial file I was modifying (_custom.scss) wasn't actually being imported by the main.scss.
链接地址: http://www.djcxy.com/p/83426.html