@atlaspack/types-internal 2.14.1-dev.43 → 2.14.1-dev.45
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 +12 -0
- package/lib/index.d.ts +2 -1
- package/package.json +4 -4
- package/src/index.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaspack/types-internal
|
|
2
2
|
|
|
3
|
+
## 2.14.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
- [#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.
|
|
10
|
+
This has hopefully been fixed, so this change will force those packages to re-release.
|
|
11
|
+
- 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)]:
|
|
12
|
+
- @atlaspack/feature-flags@2.14.1
|
|
13
|
+
- @atlaspack/diagnostic@2.14.1
|
|
14
|
+
|
|
3
15
|
## 2.14.0
|
|
4
16
|
|
|
5
17
|
### 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<
|
|
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.
|
|
3
|
+
"version": "2.14.1-dev.45+821233261",
|
|
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.
|
|
20
|
-
"@atlaspack/feature-flags": "2.14.1-dev.
|
|
19
|
+
"@atlaspack/diagnostic": "2.14.1-dev.45+821233261",
|
|
20
|
+
"@atlaspack/feature-flags": "2.14.1-dev.45+821233261",
|
|
21
21
|
"@parcel/source-map": "^2.1.1",
|
|
22
22
|
"utility-types": "^3.10.0"
|
|
23
23
|
},
|
|
24
24
|
"type": "commonjs",
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "8212332616265d22454c2e0f0dabe9ab84be927a"
|
|
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
|
-
|
|
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
|
|},
|