2

在此处输入图像描述 到底是怎么回事?我尝试在 Gruntfile.js 中添加它,但它仍然不起作用。

module.exports =function(grunt){

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

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

1 回答 1

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/

于 2015-04-03T10:12:32.833 回答