Programmatically pass arguments to grunt task?
问题 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 : //