1

我绕过内置的 Yeoman 服务器并直接从 /app 目录中切断文件。由于 Yeomen 的服务器管理 compass/sass 编译,我很难在它之外运行 compass。直接运行 compass cli 是不行的;它不知道它在现有的指南针项目中。所以我得到:

$ compass watch /app (or /app/styles)
Nothing to compile. If you're trying to start a new project, you have left off the directory argument.

有没有人有过让这个工作的经验?

4

1 回答 1

2

您必须将 Compass 设置移出到一个config.rb文件中才能使用 Compass CLI。

但是,您可以像这样轻松地单独运行 Compass grunt 任务grunt compass进行编译,或者grunt watch在文件更改时自动编译。

于 2013-01-14T21:14:11.300 回答