我有'grunt-execute的Gruntfile。
execute: {
target: {
options: {
args: ['--mode', 'package' ,
'-b', 'aemac/',
'js']
},
src: ['uploader.js']
}
}
我在我的Maven项目中使用grunt并使用frontend-maven-plugin
。是否可以将参数从pom传递给args: {}
对象?
我在pom中的grunt配置很简单
<execution>
<id>grunt build</id>
<goals>
<goal>grunt</goal>
</goals>
</execution>
如何将参数传递给grunt任务?