GRUNT ERROR中的SASS TASK:你需要安装Ruby和Sass

时间:2014-10-08 08:14:57

标签: css sass gruntjs

我尝试使用grunt-contrib-sass并收到错误:

You need to have Ruby and Sass installed and in your PATH for this task to work.

但我确信我已经安装了Ruby和Sass。 我用下面的命令检查了它

ruby -v and receive 1.9.3p545
sass -v and receive 3.4.5

这样我确定已经安装了Ruby和Sass。

但是当我使用

grunt sass

我收到了这个错误。

请帮助我,我真的很感激。 对不起,我的英语不太好。

这是我的package.json

{
    "name": "TEST",
    "version": "0.0.1",
    "dependencies": 
    {
        "grunt": "~0.4.5",
        "grunt-contrib-sass": "~0.8.1"
    }
}

这是gruntfile.js

module.exports = function(grunt)
{
grunt.loadNpmTasks('grunt-contrib-sass');

grunt.initConfig
({
    sass: 
    {                              
        dist: 
        {                            
            options: 
            {                       
                style: 'compressed'
            },//options
            files: 
            {                         
                'css/style.css': 'component/sass/style.scss'
            }//files
        }//dist
    }//sass
})//initConfig
}//exports

1 个答案:

答案 0 :(得分:-1)

运行gem install sass,一切都应该没问题。因为全新安装会修复安装路径和绑定。