@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/build.js
CHANGED
|
@@ -172400,18 +172400,22 @@ ${content.slice(firstUseIdx)}`;
|
|
|
172400
172400
|
], buildPath)
|
|
172401
172401
|
};
|
|
172402
172402
|
const conventionCompiledToBundled = new Map;
|
|
172403
|
+
const conventionBaseNames = new Set(conventionServerPaths.map((p) => basename6(p).replace(/\.[^.]+$/, "")));
|
|
172403
172404
|
for (const artifact of serverOutputs) {
|
|
172404
172405
|
const fileWithHash = basename6(artifact.path);
|
|
172405
172406
|
const [baseName] = fileWithHash.split(`.${artifact.hash}.`);
|
|
172406
172407
|
if (!baseName)
|
|
172407
172408
|
continue;
|
|
172408
|
-
|
|
172409
|
-
|
|
172410
|
-
|
|
172411
|
-
|
|
172412
|
-
|
|
172409
|
+
if (conventionBaseNames.has(baseName)) {
|
|
172410
|
+
for (const compiledPath of conventionServerPaths) {
|
|
172411
|
+
const compiledBase = basename6(compiledPath).replace(/\.[^.]+$/, "");
|
|
172412
|
+
if (compiledBase === baseName) {
|
|
172413
|
+
conventionCompiledToBundled.set(compiledPath, artifact.path);
|
|
172414
|
+
}
|
|
172413
172415
|
}
|
|
172416
|
+
continue;
|
|
172414
172417
|
}
|
|
172418
|
+
manifest[toPascal(baseName)] = artifact.path;
|
|
172415
172419
|
}
|
|
172416
172420
|
if (conventionCompiledToBundled.size > 0) {
|
|
172417
172421
|
const compiledPaths = [...conventionCompiledToBundled.keys()];
|
|
@@ -177042,5 +177046,5 @@ export {
|
|
|
177042
177046
|
build
|
|
177043
177047
|
};
|
|
177044
177048
|
|
|
177045
|
-
//# debugId=
|
|
177049
|
+
//# debugId=85B3F945BCC198B964756E2164756E21
|
|
177046
177050
|
//# sourceMappingURL=build.js.map
|