@atlaspack/types-internal 2.14.1-dev.55 → 2.14.1-dev.58

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/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @atlaspack/types-internal
2
2
 
3
+ ## 2.14.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`9b85d3e`](https://github.com/atlassian-labs/atlaspack/commit/9b85d3e645b10bd027eed2304afc970a5ba40062), [`17b9579`](https://github.com/atlassian-labs/atlaspack/commit/17b9579484eced0ed8f23e2aba6d23b3c7238c39), [`8f4e6c1`](https://github.com/atlassian-labs/atlaspack/commit/8f4e6c1b0e7c1fd48624afda48c1dcc599f1460f)]:
8
+ - @atlaspack/feature-flags@2.14.2
9
+
10
+ ## 2.14.1
11
+
12
+ ### Patch Changes
13
+
14
+ - [#420](https://github.com/atlassian-labs/atlaspack/pull/420) [`e1422ad`](https://github.com/atlassian-labs/atlaspack/commit/e1422ad0a801faaa4bc4f1023bed042ffe236e9b) Thanks [@JakeLane](https://github.com/JakeLane)! - Support async script runtime in conditional bundling
15
+
16
+ - [#478](https://github.com/atlassian-labs/atlaspack/pull/478) [`570493b`](https://github.com/atlassian-labs/atlaspack/commit/570493beaf754e7985aebc7daaaf6dfcfa8fe56b) Thanks [@yamadapc](https://github.com/yamadapc)! - The first attempt at Version Packages didn't include the built artifacts.
17
+ This has hopefully been fixed, so this change will force those packages to re-release.
18
+ - Updated dependencies [[`4aab060`](https://github.com/atlassian-labs/atlaspack/commit/4aab0605c0d4ee8e0dcc3ffa1162eae5b360b677), [`e1422ad`](https://github.com/atlassian-labs/atlaspack/commit/e1422ad0a801faaa4bc4f1023bed042ffe236e9b), [`570493b`](https://github.com/atlassian-labs/atlaspack/commit/570493beaf754e7985aebc7daaaf6dfcfa8fe56b)]:
19
+ - @atlaspack/feature-flags@2.14.1
20
+ - @atlaspack/diagnostic@2.14.1
21
+
3
22
  ## 2.14.0
4
23
 
5
24
  ### Minor Changes
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.55+f298b7f5c",
3
+ "version": "2.14.1-dev.58+304528673",
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.55+f298b7f5c",
20
- "@atlaspack/feature-flags": "2.14.1-dev.55+f298b7f5c",
19
+ "@atlaspack/diagnostic": "2.14.1-dev.58+304528673",
20
+ "@atlaspack/feature-flags": "2.14.1-dev.58+304528673",
21
21
  "@parcel/source-map": "^2.1.1",
22
22
  "utility-types": "^3.10.0"
23
23
  },
24
24
  "type": "commonjs",
25
- "gitHead": "f298b7f5cac438d5150790475bde0cb959b3f6a5"
25
+ "gitHead": "304528673208007ba9e03ec6360fdf99a4945910"
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
  |},