vike 0.4.253-commit-6539e7f → 0.4.253-commit-04e346f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -86,8 +86,11 @@ function find_ASSETS_MANIFEST(bundle) {
|
|
|
86
86
|
let chunkPath;
|
|
87
87
|
for (const filePath in bundle) {
|
|
88
88
|
const chunk = bundle[filePath];
|
|
89
|
-
if ('code' in chunk &&
|
|
90
|
-
|
|
89
|
+
if ('code' in chunk &&
|
|
90
|
+
chunk.code.includes(ASSETS_MANIFEST) &&
|
|
91
|
+
// Skip ASSETS_MANIFEST found in `node_modules/vike/` when ssr.noExternal.includes('vike')
|
|
92
|
+
Object.entries(chunk.modules).some(([moduleId, module]) => module.code?.includes(ASSETS_MANIFEST) && !moduleId.includes('node_modules'))) {
|
|
93
|
+
assert(!chunkPath, { chunkPath, filePath });
|
|
91
94
|
chunkPath = filePath;
|
|
92
95
|
}
|
|
93
96
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PROJECT_VERSION: "0.4.253-commit-
|
|
1
|
+
export declare const PROJECT_VERSION: "0.4.253-commit-04e346f";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Automatically updated by @brillout/release-me
|
|
2
|
-
export const PROJECT_VERSION = '0.4.253-commit-
|
|
2
|
+
export const PROJECT_VERSION = '0.4.253-commit-04e346f';
|