Programmatically set options for grunt task?

前端 未结 6 1193
旧时难觅i
旧时难觅i 2021-02-07 07:52

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

6条回答
  •  深忆病人
    2021-02-07 08:44

    If you can use task-based config options instead of grunt.option, this should work to give you more granular control:

    grunt.config.set('task.options.foo', 'bar');
    

提交回复
热议问题