Programmatically pass arguments to grunt task?

和自甴很熟 提交于 2019-12-17 10:36:09

问题


I have a grunt task that calls other grunt tasks. I want to call a subtask with programmatically determined arguments. Is this possible? I spent some time digging around the lib/grunt.js and lib/grunt/task.js, but couldn't figure it out.

I'm using grunt-compass with the following arguments specified in Gruntfile.js:

compass: {
  default_options: {
    src: 'components/201',
    dest: 'build',
    require: ['zurb-foundation']
  }
}

I want to be able to override them at runtime:

tasks/my-task.js:

// simplified example
module.exports = function(grunt) {
  grunt.registerTask('foo', 'bar', function() {
    var chooseDest = doWork();
    grunt.task.run('compass', {src: 'src', dest: chooseDest});
  });
};

For reference:

$ grunt --version
grunt-cli v0.1.6
grunt v0.4.0rc6

回答1:


I figured it out. Use the <%= %> syntax in Gruntfile.js:

compass: {
  default_options: {
    src: 'components/<%= myTask.src %>',
    dest: 'build',
    require: ['zurb-foundation']
  }
}

Then you can set it in your task:

grunt.config.set('myTask.src', getSrc());



回答2:


You can edit all the Grunt config:

grunt.config('compass.default_options.src', 'blabla');

Just before run the task. But your solution is "cleaner".



来源:https://stackoverflow.com/questions/14780622/programmatically-pass-arguments-to-grunt-task

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!