Question

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?

Was it helpful?

Solution

-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
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top