0

我正在尝试安装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.

那么新命令是什么?

4

1 回答 1

1

-w 监视项目的更改并在发生更改时重新编译。

watch 的新命令命令是:

compass watch [path/to/project] [path/to/project/src/file.sass ...] [options]

在您使用的方式中(当您使用 进入项目目录cd silk-sass-mixin时,您需要使用

compass watch

代替

compass -w
于 2011-01-17T09:29:42.813 回答