@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/index.js
CHANGED
|
@@ -172677,10 +172677,16 @@ ${content.slice(firstUseIdx)}`;
|
|
|
172677
172677
|
...cssLogs
|
|
172678
172678
|
];
|
|
172679
172679
|
outputLogs(allLogs);
|
|
172680
|
+
const conventionBaseNames = new Set(conventionServerPaths.map((p) => basename7(p).replace(/\.[^.]+$/, "")));
|
|
172681
|
+
const pageServerOutputs = serverOutputs.filter((artifact) => {
|
|
172682
|
+
const fileWithHash = basename7(artifact.path);
|
|
172683
|
+
const [baseName] = fileWithHash.split(`.${artifact.hash}.`);
|
|
172684
|
+
return !baseName || !conventionBaseNames.has(baseName);
|
|
172685
|
+
});
|
|
172680
172686
|
const manifest = {
|
|
172681
172687
|
...options?.baseManifest || {},
|
|
172682
172688
|
...generateManifest([
|
|
172683
|
-
...
|
|
172689
|
+
...pageServerOutputs,
|
|
172684
172690
|
...reactClientOutputs,
|
|
172685
172691
|
...nonReactClientOutputs,
|
|
172686
172692
|
...cssOutputs
|
|
@@ -172692,13 +172698,16 @@ ${content.slice(firstUseIdx)}`;
|
|
|
172692
172698
|
const [baseName] = fileWithHash.split(`.${artifact.hash}.`);
|
|
172693
172699
|
if (!baseName)
|
|
172694
172700
|
continue;
|
|
172695
|
-
|
|
172696
|
-
|
|
172697
|
-
|
|
172698
|
-
|
|
172699
|
-
|
|
172701
|
+
if (conventionBaseNames.has(baseName)) {
|
|
172702
|
+
for (const compiledPath of conventionServerPaths) {
|
|
172703
|
+
const compiledBase = basename7(compiledPath).replace(/\.[^.]+$/, "");
|
|
172704
|
+
if (compiledBase === baseName) {
|
|
172705
|
+
conventionCompiledToBundled.set(compiledPath, artifact.path);
|
|
172706
|
+
}
|
|
172700
172707
|
}
|
|
172708
|
+
continue;
|
|
172701
172709
|
}
|
|
172710
|
+
manifest[toPascal(baseName)] = artifact.path;
|
|
172702
172711
|
}
|
|
172703
172712
|
if (conventionCompiledToBundled.size > 0) {
|
|
172704
172713
|
const compiledPaths = [...conventionCompiledToBundled.keys()];
|
|
@@ -178333,5 +178342,5 @@ export {
|
|
|
178333
178342
|
ANGULAR_INIT_TIMEOUT_MS
|
|
178334
178343
|
};
|
|
178335
178344
|
|
|
178336
|
-
//# debugId=
|
|
178345
|
+
//# debugId=F79A191A33B743E564756E2164756E21
|
|
178337
178346
|
//# sourceMappingURL=index.js.map
|