我正在学习Grunt并希望使用load-grunt-config开始。这是我的代码:
Gruntfile.js
module.exports = function (grunt){
var path = require('path');
require('load-grunt-config')(grunt, {
configPath: path.join(process.cwd(), 'grunt-tasks'),
});
grunt.registerTask('install',['test']);
};
我的项目根目录中有grunt-tasks文件夹和Gruntfile.js,并且我已经包含了test.js
test.js
module.exports = {
test :{
local : {
}
}
};
现在,当我说从命令行安装grunt并使用CWD作为我项目的根目录时,我收到以下错误:
Warning: Task "test" not found. Use --force to continue.
当我在Gruntfile.js中包含以下段
时 loadGruntTasks : {
pattern : '*'
}
我收到以下错误:
>> Local Npm module "load-grunt-config" not found. Is it installed?
Warning: Task "test" not found. Use --force to continue.
May I know what I don't understand here?