@absolutejs/absolute 0.19.0-beta.736 → 0.19.0-beta.737

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.
@@ -2,8 +2,17 @@
2
2
  * `linkerJitMode` controls whether NgModule definitions retain their
3
3
  * declarations/exports — required when consumer (user) components are
4
4
  * runtime-compiled by `@angular/compiler` (dev/HMR via compileAngularFileJIT).
5
- * Production AOT builds set this to false to match AOT'd user components. */
6
- export declare const buildAngularVendor: (buildDir: string, directories?: string[], linkerJitMode?: boolean) => Promise<string[]>;
5
+ * Production AOT builds set this to false to match AOT'd user components.
6
+ *
7
+ * `depVendorSpecifiers` are non-framework packages that are also vendored
8
+ * separately (by `buildDepVendor`). They MUST be externalized here too —
9
+ * otherwise transitive imports like `@angular/fire/compat/auth` →
10
+ * `firebase/compat/auth` get bundled twice, creating duplicate
11
+ * @firebase/app-compat instances. The angular-vendor copy registers
12
+ * `firebase.auth.*` on its own firebase singleton, leaving the user's
13
+ * `import firebase from 'firebase/compat/app'` with `firebase.auth` undefined.
14
+ * Externalizing forces both pipelines to share the same /vendor chunks. */
15
+ export declare const buildAngularVendor: (buildDir: string, directories?: string[], linkerJitMode?: boolean, depVendorSpecifiers?: string[]) => Promise<string[]>;
7
16
  export declare const computeAngularVendorPaths: (specifiers?: string[]) => Record<string, string>;
8
17
  /** Async variant that scans source + transitive deps before producing the
9
18
  * vendor path map. Use this when the page-bundle build needs the full set of
package/package.json CHANGED
@@ -336,5 +336,5 @@
336
336
  ]
337
337
  }
338
338
  },
339
- "version": "0.19.0-beta.736"
339
+ "version": "0.19.0-beta.737"
340
340
  }