有没有办法从 package.json 文件中将数组传递给 grunt.js?我尝试了几种不同的方法,但它们似乎都不起作用。我目前有:
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: '<json:package.json>',
lint: {
files: '<%= pkg.lint.join(", ") %>'
}
// Default task 'lint qunit concat min'
grunt.registerTask('default', 'lint');
};
包.json
{
"lint": [
"grunt.js",
"test.js"
]
}
我能找到的唯一解决方案是传入数组的特定索引;例如 <%= pkg.lint[0] %>。在此先感谢您的帮助!