Skip to content

Commit 0dac468

Browse files
committed
mark package.json as external module
1 parent 8295518 commit 0dac468

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build/gulpfile.reh.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,8 @@ function tweakProductForServerWeb(product) {
378378
// TODO: we cannot inline `product.json` because
379379
// it is being changed during build time at a later
380380
// point in time (such as `checksums`)
381-
'../product.json'
381+
'../product.json',
382+
'../package.json'
382383
]
383384
}
384385
}

build/gulpfile.vscode.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,8 @@ const optimizeVSCodeTask = task.define('optimize-vscode', task.series(
119119
// TODO: we cannot inline `product.json` because
120120
// it is being changed during build time at a later
121121
// point in time (such as `checksums`)
122-
'../product.json'
122+
'../product.json',
123+
'../package.json',
123124
]
124125
},
125126
manual: [

0 commit comments

Comments
 (0)