正如标题所述,我想通过 node-sass 来观察/编译 scss 文件到 css,而无需一遍又一遍地运行命令。
编辑:是否有可以运行 node-sass 而不是 ruby sass 的 grunt 任务?因为我看到的是 grunt-contrib-sass/compass 都使用 ruby。
只需使用 watch 标志:
node-sass src/styles.scss dist/styles.css -w src
node-sass 没有原生的 watch 任务,但是你可以同时使用grunt-contrib-watch和grunt-sass来达到想要的效果。