1

registerTask に渡される関数があります。その中から initConfig ブロックにアクセスできるかどうかを知りたいです。

grunt.initConfig({
    foo: 'bar'
    ...
});

grunt.registerTask('deploy', "Deploy web app", function(){
    grunt.task.run('shell:create_temp');
    //access init.foo configuration here
});
4

1 に答える 1

2

見つけた:

    grunt.config.get('foo');
于 2013-11-07T02:08:58.130 に答える