我正在使用Grunt將通過監視將我的SASS文件轉換爲CSS。使用Grunt Watch將SASS轉換爲CSS致命錯誤
的事情是:我可以normaly運行北斗任務時,CSS創建的非常好,但是當我使用WATCH我得到了錯誤:
grunt.util._.contains is not a function
這裏是我的package.json
:
{
"name": "myName",
"description": "myDesc",
"author": "mySelf",
"version": "0.0.1",
"private": true,
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-compass": "^1.1.1",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^0.5.1",
"grunt-contrib-watch": "^0.4.4"
}
}
這裏是我的Gruntfile.js
:
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
compass: {
dist: {
options: {
config: 'config.rb'
}
}
},
watch: {
css: {
files: 'assets/**/*.{scss,sass}',
tasks: ['compass']
}
}
});
grunt.loadNpmTasks('grunt-contrib-compass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default',['compass','watch']);
};
我嘗試了很多的變化,但沒有什麼幫助
Update!
After a long night, solve the problem... Please read my own answer