@atlaspack/types-internal 2.14.1-dev.39 → 2.14.1-dev.40

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/lib/index.d.ts CHANGED
@@ -1646,7 +1646,8 @@ export interface BundleGraph<TBundle extends Bundle> {
1646
1646
 
1647
1647
  /** Returns the common root directory for the entry assets of a target. */
1648
1648
  getEntryRoot(target: Target): FilePath;
1649
- getConditionalBundleMapping(): Map<TBundle, Map<string, {
1649
+ getConditionalBundleMapping(): Map<string, Map<string, {
1650
+ bundle: TBundle;
1650
1651
  ifTrueBundles: Array<TBundle>;
1651
1652
  ifFalseBundles: Array<TBundle>;
1652
1653
  }>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/types-internal",
3
- "version": "2.14.1-dev.39+cb7a8afb9",
3
+ "version": "2.14.1-dev.40+3a5870291",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "main": "src/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -16,11 +16,11 @@
16
16
  "check-ts": "tsc --noEmit lib/index.d.ts"
17
17
  },
18
18
  "dependencies": {
19
- "@atlaspack/diagnostic": "2.14.1-dev.39+cb7a8afb9",
20
- "@atlaspack/feature-flags": "2.14.1-dev.39+cb7a8afb9",
19
+ "@atlaspack/diagnostic": "2.14.1-dev.40+3a5870291",
20
+ "@atlaspack/feature-flags": "2.14.1-dev.40+3a5870291",
21
21
  "@parcel/source-map": "^2.1.1",
22
22
  "utility-types": "^3.10.0"
23
23
  },
24
24
  "type": "commonjs",
25
- "gitHead": "cb7a8afb9b35e4570ba1b04175774f30561dc6fb"
25
+ "gitHead": "3a587029124601f8578afe85cbe36d50ee182837"
26
26
  }
package/src/index.js CHANGED
@@ -1644,10 +1644,11 @@ export interface BundleGraph<TBundle: Bundle> {
1644
1644
  /** Returns the common root directory for the entry assets of a target. */
1645
1645
  getEntryRoot(target: Target): FilePath;
1646
1646
  getConditionalBundleMapping(): Map<
1647
- TBundle,
1647
+ string,
1648
1648
  Map<
1649
1649
  string,
1650
1650
  {|
1651
+ bundle: TBundle,
1651
1652
  ifTrueBundles: Array<TBundle>,
1652
1653
  ifFalseBundles: Array<TBundle>,
1653
1654
  |},