@absolutejs/absolute 0.19.0-beta.220 → 0.19.0-beta.221
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 +10 -6
- package/dist/build.js.map +3 -3
- package/dist/index.js +10 -6
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -172687,18 +172687,22 @@ ${content.slice(firstUseIdx)}`;
|
|
|
172687
172687
|
], buildPath)
|
|
172688
172688
|
};
|
|
172689
172689
|
const conventionCompiledToBundled = new Map;
|
|
172690
|
+
const conventionBaseNames = new Set(conventionServerPaths.map((p) => basename7(p).replace(/\.[^.]+$/, "")));
|
|
172690
172691
|
for (const artifact of serverOutputs) {
|
|
172691
172692
|
const fileWithHash = basename7(artifact.path);
|
|
172692
172693
|
const [baseName] = fileWithHash.split(`.${artifact.hash}.`);
|
|
172693
172694
|
if (!baseName)
|
|
172694
172695
|
continue;
|
|
172695
|
-
|
|
172696
|
-
|
|
172697
|
-
|
|
172698
|
-
|
|
172699
|
-
|
|
172696
|
+
if (conventionBaseNames.has(baseName)) {
|
|
172697
|
+
for (const compiledPath of conventionServerPaths) {
|
|
172698
|
+
const compiledBase = basename7(compiledPath).replace(/\.[^.]+$/, "");
|
|
172699
|
+
if (compiledBase === baseName) {
|
|
172700
|
+
conventionCompiledToBundled.set(compiledPath, artifact.path);
|
|
172701
|
+
}
|
|
172700
172702
|
}
|
|
172703
|
+
continue;
|
|
172701
172704
|
}
|
|
172705
|
+
manifest[toPascal(baseName)] = artifact.path;
|
|
172702
172706
|
}
|
|
172703
172707
|
if (conventionCompiledToBundled.size > 0) {
|
|
172704
172708
|
const compiledPaths = [...conventionCompiledToBundled.keys()];
|
|
@@ -178333,5 +178337,5 @@ export {
|
|
|
178333
178337
|
ANGULAR_INIT_TIMEOUT_MS
|
|
178334
178338
|
};
|
|
178335
178339
|
|
|
178336
|
-
//# debugId=
|
|
178340
|
+
//# debugId=B4CE3F002E730E5F64756E2164756E21
|
|
178337
178341
|
//# sourceMappingURL=index.js.map
|