我刚开始使用 Grunt,我可能已经遇到了问题。所以,这就是我的Gruntfile.js
样子:
module.exports = function (grunt) {
grunt.initConfig({
// Ability to access the package.json informations
pkg: grunt.file.readJSON('package.json'),
// SASS compilation
sass: {
dist: {
options: {
style: 'compressed'
},
expand: true,
cwd: './sass/',
src: 'main.scss',
dest: './css/',
ext: '.css'
},
dev: {
options: {
style: 'expanded',
debugInfo: true,
lineNumbers: true
},
expand: true,
cwd: './sass/',
src: 'main.scss',
dest: './css/',
ext: '.css'
}
}
});
};
当我跑的时候grunt sass:dev
,它总会回来Warning: Task "sass:dev" not found. Use --force to continue.
当我开始使用它时,我查看了文档并且找不到我可能出错的地方......是的,依赖项已正确安装。