sass
CLIを使用するときにCompassを構成するにはどうすればよいですか?
基本的に私はimages_dir
プロパティを設定することでした、これが私が使用しているコマンドです:
sass
--compass
path/to/input.scss
path/to/output.css
私は試した:
sass
--compass
-c path/to/config.rb
path/to/input.scss
path/to/output.css
出力:
WARNING on line 1 of path/to/config.rb:
This selector doesn't have any properties and will not be rendered.
Syntax error: Invalid CSS after "image_dir ": expected selector, was "= "test""
on line 1 of path/to/config.rb
したがって、コマンド-c
を使用する場合、明らかに同じようには機能しません。compass compile
と
sass
--compass
--images-dir path/to/images
path/to/input.scss
path/to/output.css
出力:
OptionParser::InvalidOption: invalid option: --images-dir
上記と同様。
使用しようとしましたcompass compile
が、プロジェクトディレクトリがありません。
compass compile
--images-dir path/to/images
path/to
path/to/input.scss
出力:
You must compile individual stylesheets from the project directory.
またこれを試しました:
compass compile
path/to
出力:
Nothing to compile. If you're trying to start a new project, you have left off the directory argument.
config.rbに含まれているもの:
images_dir = "test"