在我的 gruntfile.js 中,我使用了这个插件 `grunt.loadNpmTasks('grunt-json-merge'); 我正在尝试使用以下代码合并两个 JSON 文件:
json_merge: {
files: {
files: { 'dest/resources/locales/merged.json':
function () {
var includedScripts = [];
includedScripts.push(project_x+'/locales/locale-fr.json');
includedScripts.push(project_y+'/locales/locale-fr.json');
return includedScripts;
}
},
},
}
我明白了Warning: pattern.indexOf is not a function Use --force to continue.
注意:我需要使用一个函数来定义输入值,因为它包含一些变量,也许我稍后需要集成一个for
循环。