@atlaspack/types-internal 2.19.1 → 2.19.2

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,15 @@
1
1
  # @atlaspack/types-internal
2
2
 
3
+ ## 2.19.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#742](https://github.com/atlassian-labs/atlaspack/pull/742) [`ee040bb`](https://github.com/atlassian-labs/atlaspack/commit/ee040bb6428f29b57d892ddd8107e29077d08ffd) Thanks [@yamadapc](https://github.com/yamadapc)! - Internal changes and bug fixes to environmentDeduplication flag
8
+
9
+ - Updated dependencies [[`ee040bb`](https://github.com/atlassian-labs/atlaspack/commit/ee040bb6428f29b57d892ddd8107e29077d08ffd)]:
10
+ - @atlaspack/feature-flags@2.23.1
11
+ - @atlaspack/diagnostic@2.14.3
12
+
3
13
  ## 2.19.1
4
14
 
5
15
  ### Patch Changes
@@ -1533,6 +1533,7 @@ export type RuntimeAsset = {
1533
1533
  readonly isEntry?: boolean;
1534
1534
  readonly env?: EnvironmentOptions;
1535
1535
  readonly priority?: RuntimeAssetPriority;
1536
+ readonly runtimeAssetRequiringExecutionOnLoad?: boolean;
1536
1537
  };
1537
1538
  /**
1538
1539
  * @section runtime
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/types-internal",
3
- "version": "2.19.1",
3
+ "version": "2.19.2",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "main": "./lib/index.js",
6
6
  "source": "./src/index.ts",
@@ -17,8 +17,8 @@
17
17
  "build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
18
18
  },
19
19
  "dependencies": {
20
- "@atlaspack/diagnostic": "2.14.2",
21
- "@atlaspack/feature-flags": "2.23.0",
20
+ "@atlaspack/diagnostic": "2.14.3",
21
+ "@atlaspack/feature-flags": "2.23.1",
22
22
  "@parcel/source-map": "^2.1.1",
23
23
  "utility-types": "^3.10.0"
24
24
  },
package/src/index.ts CHANGED
@@ -1849,6 +1849,7 @@ export type RuntimeAsset = {
1849
1849
  readonly isEntry?: boolean;
1850
1850
  readonly env?: EnvironmentOptions;
1851
1851
  readonly priority?: RuntimeAssetPriority;
1852
+ readonly runtimeAssetRequiringExecutionOnLoad?: boolean;
1852
1853
  };
1853
1854
 
1854
1855
  /**