2
concat-json
を使用して、json
を1つにマージします。しかし、ターゲットはsrc
で、これは2つの異なるパスから読み取ることを意味します。 これらのパスのうち、特定のファイルを除外してconcat
に含めないようにしたいとします。 npm
文書では、マージ中にファイルを除外することに関連するものは見つけられません。grunt concat-jsonでファイルを除外する
grunt.initConfig({
"concat-json": {
"en": {
src: [ "reports/*.json" ],
dest: "reports/request.json"
},
"de": {
//Here is where I want to merge all jsons but one in specific
src: [ "reports/temp/*.json" ],
dest: "reports/request.json"
}
}
});