Skip to content

Commit c1956b8

Browse files
concat arrays instead of replace because we want all items in the array (microsoft#155228)
1 parent 4b6b842 commit c1956b8

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

build/azure-pipelines/upload-nlsmetadata.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ function main() {
2020
.pipe(merge({
2121
fileName: 'combined.nls.metadata.json',
2222
jsonSpace: '',
23+
concatArrays: true,
2324
edit: (parsedJson, file) => {
2425
if (file.base === 'out-vscode-web-min') {
2526
return { vscode: parsedJson };

build/azure-pipelines/upload-nlsmetadata.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ function main(): Promise<void> {
3333
.pipe(merge({
3434
fileName: 'combined.nls.metadata.json',
3535
jsonSpace: '',
36+
concatArrays: true,
3637
edit: (parsedJson, file) => {
3738
if (file.base === 'out-vscode-web-min') {
3839
return { vscode: parsedJson };

0 commit comments

Comments
 (0)