这是我的gruntfile.js,它与sass/style.scss
和package.json
位于同一目录中。 package.json
已安装grunt
,grunt-contrib-sass
和grunt-cli
。
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// this is where you set up your Sass settings. Once you know what you're doing, you can change thse.
Sass: {
dist: {
options: {
style: 'compressed'
},
files: {
'style.css': 'sass/style.scss'
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.registerTask('default', ["Sass"]);
};
为什么我收到任务未找到错误的任何想法?
答案 0 :(得分:1)
将Saas
更改为saas
,如example配置中所示。
注意:任务名称的正确拼写以小写字母(s
)开头。
<强> Gruntfile.js 强>
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sass: { // <-- Change to lowercase `s`
dist: {
options: {
style: 'compressed'
},
files: {
'style.css': 'sass/style.scss'
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.registerTask('default', ["sass"]); // <-- Change to lowercase `s`
};