@absolutejs/absolute 0.19.0-beta.803 → 0.19.0-beta.805
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/build.js +2 -2
- package/dist/{chunk-26qn7py4.js → chunk-0fsxp5gc.js} +5 -3
- package/dist/{chunk-26qn7py4.js.map → chunk-0fsxp5gc.js.map} +1 -1
- package/dist/{chunk-tcssehtt.js → chunk-f8k0tb5z.js} +3 -3
- package/dist/{chunk-k6km9xnz.js → chunk-gxrsf71e.js} +12 -3
- package/dist/{chunk-k6km9xnz.js.map → chunk-gxrsf71e.js.map} +3 -3
- package/dist/{chunk-r3j3td07.js → chunk-n5a5nxnt.js} +35 -6
- package/dist/{chunk-r3j3td07.js.map → chunk-n5a5nxnt.js.map} +4 -4
- package/dist/index.js +1 -1
- package/dist/src/build/buildAngularVendor.d.ts +5 -0
- package/package.json +1 -1
- /package/dist/{chunk-tcssehtt.js.map → chunk-f8k0tb5z.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -452,7 +452,7 @@ var prepareDev = async (config, buildDir) => {
|
|
|
452
452
|
patchElysiaRouteRegistrationCallsites();
|
|
453
453
|
recordStep("patch route registration", stepStartedAt);
|
|
454
454
|
stepStartedAt = performance.now();
|
|
455
|
-
const { devBuild } = await import("./chunk-
|
|
455
|
+
const { devBuild } = await import("./chunk-f8k0tb5z.js");
|
|
456
456
|
const result = await devBuild(config);
|
|
457
457
|
recordStep("devBuild", stepStartedAt);
|
|
458
458
|
stepStartedAt = performance.now();
|
|
@@ -33,3 +33,8 @@ export declare const buildAngularServerVendor: (buildDir: string, directories?:
|
|
|
33
33
|
/** Absolute filesystem paths to server vendor files, for `rewriteImports`
|
|
34
34
|
* on server-side bundles and for runtime resolution in `getAngularDeps`. */
|
|
35
35
|
export declare const computeAngularServerVendorPaths: (buildDir: string, specifiers: string[]) => Record<string, string>;
|
|
36
|
+
/** Async server-vendor path map: scans source + transitive deps, then
|
|
37
|
+
* produces absolute filesystem paths for every @angular/* spec the project
|
|
38
|
+
* uses (plus the always-vendored server-only specs). Mirrors
|
|
39
|
+
* `computeAngularVendorPathsAsync` but for server-side rewriting. */
|
|
40
|
+
export declare const computeAngularServerVendorPathsAsync: (buildDir: string, directories?: string[]) => Promise<Record<string, string>>;
|
package/package.json
CHANGED
|
File without changes
|