我有一个传递给 registerTask 的函数,我想知道是否可以从其中访问 initConfig 块:
grunt.initConfig({
foo: 'bar'
...
});
grunt.registerTask('deploy', "Deploy web app", function(){
grunt.task.run('shell:create_temp');
//access init.foo configuration here
});
我有一个传递给 registerTask 的函数,我想知道是否可以从其中访问 initConfig 块:
grunt.initConfig({
foo: 'bar'
...
});
grunt.registerTask('deploy', "Deploy web app", function(){
grunt.task.run('shell:create_temp');
//access init.foo configuration here
});