0

Grunt を学習しようとしています。grunt-contrib-compassgrunt-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

何か案は?どこで間違ったのですか?

4

4 に答える 4

-4

これ:

 sudo npm install --save-dev
于 2015-03-03T14:39:46.620 に答える