我正在尝试安装https://github.com/markyoung/silk-sass-mixin
$ (sudo) gem install compass
$ git clone http://github.com/zarzax/silk-sass-mixin.git
$ cd silk-sass-mixin
$ compass -w
我得到了
D:\ResourceLibrary\Frameworks\silk-sass-mixin>compass -w WARNING: This interface is deprecated. Please use the new subcommand interface. See
罗盘 帮助for more information.
那么新命令是什么?
答案 0 :(得分:1)
-w监视项目以进行更改,并在发生更改时重新编译。
watch的新命令命令是:
compass watch [path/to/project] [path/to/project/src/file.sass ...] [options]
在您使用的方式中(当您使用cd silk-sass-mixin
转到项目目录时,您需要使用
compass watch
而不是
compass -w