Skip to content

Commit a8daf3f

Browse files
committed
fix: Moved chunk singleton back to false.
1 parent d589339 commit a8daf3f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

libs/native-federation-core/src/lib/core/bundle-shared.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ function addChunksToResult(
236236
for (const item of chunks) {
237237
const fileName = path.basename(item.fileName);
238238
result.push({
239-
singleton: true,
239+
singleton: false,
240240
strictVersion: false,
241241
// Here, the version does not matter because
242242
// a) a chunk split off by the bundler does
@@ -246,6 +246,7 @@ function addChunksToResult(
246246
//
247247
// For the same reason, we don't need to
248248
// take care of singleton and strictVersion.
249+
version: '0.0.0',
249250
requiredVersion: '0.0.0',
250251
packageName: deriveInternalName(fileName),
251252
outFileName: fileName,

0 commit comments

Comments
 (0)