grunt由于jit-grunt而失败:没有找到“帮助”的插件

时间:2014-11-28 12:53:29

标签: gruntjs grunt-contrib-watch grunt-usemin grunt-contrib-requirejs

enter image description here 到底是怎么回事?我尝试在Gruntfile.js中添加以下内容,但它仍然不起作用。

module.exports =function(grunt){

    require('time-grunt')(grunt);

    require('load-grunt-config')(grunt, {
        jitGrunt: true
    });
};

2 个答案:

答案 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}}解决问题

参考:https://github.com/shootaroo/jit-grunt#static-mappings