How to use SASS with Polymer?
I'm trying to use SASS with Polymer but I don't know how to have multiple outputs.
I'd like sass to compile each scss files in their own directory, I don't need a global css output...
Is there a solution to this issue ? Thanks
Just use:
scss --watch ROOT_FOLDER:ROOT_FOLDER
example:
neciu$ mkdir dir1
neciu$ mkdir dir2
neciu$ touch dir1/1.scss
neciu$ touch dir2/2.scss
neciu$ scss --watch .:.
>>> Sass is watching for changes. Press Ctrl-C to stop.
write ./dir1/1.css
write ./dir2/2.css
链接地址: http://www.djcxy.com/p/80470.html
上一篇: ui.bootstrap变形<progress> HTML标记
下一篇: 如何使用SASS与聚合物?