grunt-contrib-sass プラグイン (grunt v0.4.0) を使用して scss ファイルをコンパイルしようとしています。コンパイル結果は空の 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"]);
};
パッケージ.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 ファイルになります。
あなたの助けは大歓迎です
ニウソール