到底是怎么回事?我尝试在Gruntfile.js中添加以下内容,但它仍然不起作用。
module.exports =function(grunt){
require('time-grunt')(grunt);
require('load-grunt-config')(grunt, {
jitGrunt: true
});
};
答案 0 :(得分:3)
您需要向load-grunt-config任务添加静态映射,如下所示:
require('load-grunt-config')(grunt, {
jitGrunt: {
staticMappings: {
default: 'the-name-of-your-grunt-task'
}
}
});
此链接也可能有所帮助:
http://ia.njamieson.co.uk/2015/03/27/speeding-up-grunt-initial-load-jit-grunt-and-load-grunt-config/
答案 1 :(得分:-4)
使用命令{{1}}解决问题