registerTask に渡される関数があります。その中から initConfig ブロックにアクセスできるかどうかを知りたいです。
grunt.initConfig({
foo: 'bar'
...
});
grunt.registerTask('deploy', "Deploy web app", function(){
grunt.task.run('shell:create_temp');
//access init.foo configuration here
});