Grunt を学習しようとしています。grunt-contrib-compass
とgrunt-contrib-watch
プラグインをインストールしました。ターミナルで使用するgrunt
と、コンパスタスクが実行され、戻ってきます
Running "compass:dist" (compass) task
Compass can't find any Sass files to compile.
Is your compass configuration correct?.
If you're trying to start a new project, you have left off the directory argument.
Run "compass -h" to get help.`
Gruntfile はwp-content/
、Wordpress インストールのフォルダーにあります。私のGrunfileでのコンパスの設定は次のとおりです。
compass: {
dist: {
options: {
config: 'themes/THEME-NAME/config.rb',
force: true
}
}
},
私のconfig.rbはそこにあり、次のようにセットアップされています:
require 'singularitygs'
require "breakpoint"
http_path = "/"
css_dir = "/"
sass_dir = "sass"
images_dir = "images"
javascripts_dir = "javascripts"
output_style = :compressed
line_comments = false
何か案は?どこで間違ったのですか?