@absolutejs/absolute 0.19.0-beta.221 → 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 +8 -3
- package/dist/build.js.map +3 -3
- package/dist/index.js +8 -3
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -172677,17 +172677,22 @@ ${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
|
|
172687
172693
|
], buildPath)
|
|
172688
172694
|
};
|
|
172689
172695
|
const conventionCompiledToBundled = new Map;
|
|
172690
|
-
const conventionBaseNames = new Set(conventionServerPaths.map((p) => basename7(p).replace(/\.[^.]+$/, "")));
|
|
172691
172696
|
for (const artifact of serverOutputs) {
|
|
172692
172697
|
const fileWithHash = basename7(artifact.path);
|
|
172693
172698
|
const [baseName] = fileWithHash.split(`.${artifact.hash}.`);
|
|
@@ -178337,5 +178342,5 @@ export {
|
|
|
178337
178342
|
ANGULAR_INIT_TIMEOUT_MS
|
|
178338
178343
|
};
|
|
178339
178344
|
|
|
178340
|
-
//# debugId=
|
|
178345
|
+
//# debugId=F79A191A33B743E564756E2164756E21
|
|
178341
178346
|
//# sourceMappingURL=index.js.map
|