Gruntjs:为什么编译scss来清空文件? 使用咕噜声

我正在尝试使用grunt-contrib-sass插件编译scss文件(使用grunt v0.4.0)。 编译的结果是一个空的CSS文件。 以下是base.scss,Gruntfile.js和package.json文件。

base.scss

$color: #000;

header{
color: $color;  
}

Gruntfile.js

module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
    // Metadata.
    pkg: grunt.file.readJSON('package.json'),       
    sass: {
        dist: {
            options: { style: "expanded", trace: true },
            files: { "base.css": "base.scss" }
        }       
    }
});

grunt.loadNpmTasks('grunt-contrib-sass');

// Default task.
grunt.registerTask("default", [""]);
grunt.registerTask("sass--",["sass"]);
};

的package.json

{
"name": "my_grunt",
"version": "1.0.0",
"description": "New to Grunt",
"main": "index.js",
"scripts": {
    "test": "test"
},
"repository": {
    "type": "git",
    "url": "none"
},
"keywords": [
        "none"
],
"author": "none",
"license": "BSD",
"devDependencies": {
        "grunt-contrib-sass": "~0.2.2"
}
}

结果:

要么运行sass命令“grunt sass”或“grunt sass--”,结果只是一个空的css文件,没有任何错误。

非常感谢您的帮助

Niusaul


如果你还没有在全球安装Grunt,你可以这样做,或者添加Grunt作为依赖。 否则Grunt将无法工作。

要全局安装Grunt, npm install -g grunt-cli在终端中运行npm install -g grunt-cli或将其添加为“devDependency”:

"devDependencies": {
      "grunt": "0.4.x",
      "grunt-contrib-sass": "0.7.x",
   }

编辑:当在Google上搜索这个问题时,我瘫痪了来自同一用户的Github上的一个报告错误,他解决了问题。 对于每个可能遇到同样问题的人来说,这是他的解决方案:

该错误是由我在命令处理器(Windows注册表)中设置的手动配置引起的,从中我添加了一个自动运行以更改默认命令提示符。

链接地址: http://www.djcxy.com/p/78963.html

上一篇: Gruntjs: why compiled scss to empty file? using grunt

下一篇: Passing varargs to another method as different type