what is going on? i tried adding this below in Gruntfile.js, but it still doesn't work.
module.exports =function(grunt){
require('time-grunt')(grunt);
require('load-grunt-config')(grunt, {
jitGrunt: true
});
};
what is going on? i tried adding this below in Gruntfile.js, but it still doesn't work.
module.exports =function(grunt){
require('time-grunt')(grunt);
require('load-grunt-config')(grunt, {
jitGrunt: true
});
};
You need to add a static mapping to your load-grunt-config task, like this:
This link may also help:
http://ia.njamieson.co.uk/2015/03/27/speeding-up-grunt-initial-load-jit-grunt-and-load-grunt-config/