@absolutejs/absolute 0.19.0-beta.220 → 0.19.0-beta.222
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.
- package/.absolutejs/vue-tsc.tsbuildinfo +1 -1
- package/dist/build.js +16 -7
- package/dist/build.js.map +3 -3
- package/dist/index.js +16 -7
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -172390,10 +172390,16 @@ ${content.slice(firstUseIdx)}`;
|
|
|
172390
172390
|
...cssLogs
|
|
172391
172391
|
];
|
|
172392
172392
|
outputLogs(allLogs);
|
|
172393
|
+
const conventionBaseNames = new Set(conventionServerPaths.map((p) => basename6(p).replace(/\.[^.]+$/, "")));
|
|
172394
|
+
const pageServerOutputs = serverOutputs.filter((artifact) => {
|
|
172395
|
+
const fileWithHash = basename6(artifact.path);
|
|
172396
|
+
const [baseName] = fileWithHash.split(`.${artifact.hash}.`);
|
|
172397
|
+
return !baseName || !conventionBaseNames.has(baseName);
|
|
172398
|
+
});
|
|
172393
172399
|
const manifest = {
|
|
172394
172400
|
...options?.baseManifest || {},
|
|
172395
172401
|
...generateManifest([
|
|
172396
|
-
...
|
|
172402
|
+
...pageServerOutputs,
|
|
172397
172403
|
...reactClientOutputs,
|
|
172398
172404
|
...nonReactClientOutputs,
|
|
172399
172405
|
...cssOutputs
|
|
@@ -172405,13 +172411,16 @@ ${content.slice(firstUseIdx)}`;
|
|
|
172405
172411
|
const [baseName] = fileWithHash.split(`.${artifact.hash}.`);
|
|
172406
172412
|
if (!baseName)
|
|
172407
172413
|
continue;
|
|
172408
|
-
|
|
172409
|
-
|
|
172410
|
-
|
|
172411
|
-
|
|
172412
|
-
|
|
172414
|
+
if (conventionBaseNames.has(baseName)) {
|
|
172415
|
+
for (const compiledPath of conventionServerPaths) {
|
|
172416
|
+
const compiledBase = basename6(compiledPath).replace(/\.[^.]+$/, "");
|
|
172417
|
+
if (compiledBase === baseName) {
|
|
172418
|
+
conventionCompiledToBundled.set(compiledPath, artifact.path);
|
|
172419
|
+
}
|
|
172413
172420
|
}
|
|
172421
|
+
continue;
|
|
172414
172422
|
}
|
|
172423
|
+
manifest[toPascal(baseName)] = artifact.path;
|
|
172415
172424
|
}
|
|
172416
172425
|
if (conventionCompiledToBundled.size > 0) {
|
|
172417
172426
|
const compiledPaths = [...conventionCompiledToBundled.keys()];
|
|
@@ -177042,5 +177051,5 @@ export {
|
|
|
177042
177051
|
build
|
|
177043
177052
|
};
|
|
177044
177053
|
|
|
177045
|
-
//# debugId=
|
|
177054
|
+
//# debugId=700C8871C04D30C964756E2164756E21
|
|
177046
177055
|
//# sourceMappingURL=build.js.map
|