gpt4 book ai didi

node.js - 使用 grunt concat-json 排除文件

转载 作者:太空宇宙 更新时间:2023-11-03 21:56:21 26 4
gpt4 key购买 nike

我正在使用 concat-json 将多个 json 合并为一个。但是,目标 src 有所不同,这意味着我从两个不同的路径读取。 在其中一个路径上,我想排除一个特定文件,使其不包含在 concat 中。在 npm 文档中,我没有找到与合并时排除文件相关的任何内容。

这就是我指定不同目标的方式:

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"
}
}
});

最佳答案

您可以指定exclusions in Grunt globbing patterns .

通过以下配置,not-me.json 文件将被排除:

grunt.initConfig({
"concat-json": {
"en": {
src: ["reports/*.json"],
dest: "reports/request.json"
},
"de": {
src: ["reports/temp/*.json", "!reports/temp/not-me.json"],
dest: "reports/request.json"
}
}
});

关于node.js - 使用 grunt concat-json 排除文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39625503/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com