문제

I am trying to install 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

I get

D:\ResourceLibrary\Frameworks\silk-sass-mixin>compass -w WARNING: This interface is deprecated. Please use the new subcommand interface. Seecompass helpfor more information.

Whats the new command then?

도움이 되었습니까?

해결책

-w watches a project for changes and recompile when a change is occurred.

The new command command for watch is:

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

In the way you are using (as you are going to the project directory using cd silk-sass-mixin, you need to use

compass watch

Instead of

compass -w
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top