@absolutejs/absolute 0.19.0-beta.825 → 0.19.0-beta.827
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/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/angular/index.js +6 -3
- package/dist/angular/index.js.map +3 -3
- package/dist/angular/server.js +6 -3
- package/dist/angular/server.js.map +3 -3
- package/dist/build.js +7 -4
- package/dist/build.js.map +4 -4
- package/dist/client/index.js +6 -3
- package/dist/client/index.js.map +3 -3
- package/dist/index.js +7 -4
- package/dist/index.js.map +4 -4
- package/dist/islands/index.js +6 -3
- package/dist/islands/index.js.map +3 -3
- package/dist/react/index.js +6 -3
- package/dist/react/index.js.map +3 -3
- package/dist/svelte/index.js +6 -3
- package/dist/svelte/index.js.map +3 -3
- package/dist/svelte/router/viewTransitions.ts +7 -3
- package/dist/vue/index.js +6 -3
- package/dist/vue/index.js.map +3 -3
- package/package.json +1 -1
package/dist/angular/server.js
CHANGED
|
@@ -209,8 +209,11 @@ var resolveAngularPackageDir = (specifier) => {
|
|
|
209
209
|
return resolvePackageEntry(packageDir);
|
|
210
210
|
return specifier;
|
|
211
211
|
}, toSafeVendorName = (specifier) => specifier.replace(/^@/, "").replace(/\//g, "_"), resolveAngularRuntimePath = (specifier) => {
|
|
212
|
-
const
|
|
213
|
-
|
|
212
|
+
const buildDirs = [
|
|
213
|
+
process.env.ABSOLUTE_BUILD_DIR,
|
|
214
|
+
resolve(process.cwd(), "build")
|
|
215
|
+
].filter((value) => Boolean(value));
|
|
216
|
+
for (const buildDir of buildDirs) {
|
|
214
217
|
const vendorPath = join(buildDir, "angular", "vendor", "server", `${toSafeVendorName(specifier)}.js`);
|
|
215
218
|
if (existsSync(vendorPath))
|
|
216
219
|
return vendorPath;
|
|
@@ -5616,5 +5619,5 @@ export {
|
|
|
5616
5619
|
ABSOLUTE_HTTP_TRANSFER_CACHE_SKIP_HEADER
|
|
5617
5620
|
};
|
|
5618
5621
|
|
|
5619
|
-
//# debugId=
|
|
5622
|
+
//# debugId=CADCACE62BD9DB2664756E2164756E21
|
|
5620
5623
|
//# sourceMappingURL=server.js.map
|