I have a grunt task that looks at options with grunt.option(\'foo\'). If I\'m calling this task from grunt.task.run(\'my-task\'), how can I change thos
grunt.option(\'foo\')
grunt.task.run(\'my-task\')
Looks like I can use the following:
grunt.option('foo', 'bar'); grunt.task.run('my-task');
It feels a bit odd to set the options globally instead of just for that command, but it works.