@absolutejs/absolute 0.19.0-beta.730 → 0.19.0-beta.731
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 +9 -5
- package/dist/build.js.map +4 -4
- package/dist/index.js +9 -5
- package/dist/index.js.map +4 -4
- package/dist/src/build/buildAngularVendor.d.ts +5 -0
- package/package.json +1 -1
|
@@ -1,3 +1,8 @@
|
|
|
1
1
|
/** Build vendor bundles for every @angular/* package the project imports. */
|
|
2
2
|
export declare const buildAngularVendor: (buildDir: string, directories?: string[]) => Promise<string[]>;
|
|
3
3
|
export declare const computeAngularVendorPaths: (specifiers?: string[]) => Record<string, string>;
|
|
4
|
+
/** Async variant that scans source + transitive deps before producing the
|
|
5
|
+
* vendor path map. Use this when the page-bundle build needs the full set of
|
|
6
|
+
* angular specs in its rewrite map (otherwise transitively-discovered subpaths
|
|
7
|
+
* like `@angular/core/rxjs-interop` end up as bare specifiers in the output). */
|
|
8
|
+
export declare const computeAngularVendorPathsAsync: (directories?: string[]) => Promise<Record<string, string>>;
|
package/package.json
CHANGED