Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Ahoy grunt-masters!

I would like to load external config files into grunt so that I can do something like this:

$ grunt dev:homepage

and it would load in homepage-config.json, then run watch

$ grunt dev:contact

and it would load in contact-config.json, then run watch

Each config file would provide a particular setup for tasks: watch, jshint, concat, etc...

Inside my Gruntfile I have a task called dev

grunt.registerTask('dev', 'loads in external -config.json file, then runs watch', function(name) {

  grunt.initConfig(grunt.file.readJSON(name + '-config.json'));

  console.log(grunt.config('jshint.pageConfig.src') // correctly logs whatever had been specified in my external json file

  grunt.task.run('watch'); // correctly boots up watch with configuration specified by external file

});

Within that dev task the externally loaded config works just fine. That console.log would return what you'd expect, and the watch task kicks off with the externally specified setup.

My problem is that once that watch starts triggering tasks, those tasks no longer seem to have access to this externally loaded config. Somewhere between the dev task and the tasks triggered by watch, the dynamically loaded config gets blown away.

Can anyone shed light on why this is happening and how I might accomplish my goal?

Many thanks, -James

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.