@atlaspack/feature-flags 2.14.1-canary.21 → 2.14.1-canary.22

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.js CHANGED
@@ -26,7 +26,8 @@ const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
26
26
  conditionalBundlingNestedRuntime: false,
27
27
  patchProjectPaths: false,
28
28
  enableRustWorkerThreadDylibHack: true,
29
- inlineStringReplacementPerf: false
29
+ inlineStringReplacementPerf: false,
30
+ conditionalBundlingAsyncRuntime: false
30
31
  };
31
32
  let featureFlagValues = {
32
33
  ...DEFAULT_FEATURE_FLAGS
package/lib/types.d.ts CHANGED
@@ -79,5 +79,10 @@ export type FeatureFlags = {
79
79
  * Used heavily for inline bundles.
80
80
  */
81
81
  inlineStringReplacementPerf: boolean;
82
+
83
+ /**
84
+ * Enable support for the async bundle runtime (unstable_asyncBundleRuntime) in conditional bundling
85
+ */
86
+ conditionalBundlingAsyncRuntime: boolean;
82
87
  };
83
88
  export type ConsistencyCheckFeatureFlagValue = "NEW" | "OLD" | "NEW_AND_CHECK" | "OLD_AND_CHECK";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/feature-flags",
3
- "version": "2.14.1-canary.21+570493bea",
3
+ "version": "2.14.1-canary.22+e1422ad0a",
4
4
  "description": "Provides internal feature-flags for the atlaspack codebase.",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "publishConfig": {
@@ -21,5 +21,5 @@
21
21
  "node": ">= 16.0.0"
22
22
  },
23
23
  "type": "commonjs",
24
- "gitHead": "570493beaf754e7985aebc7daaaf6dfcfa8fe56b"
24
+ "gitHead": "e1422ad0a801faaa4bc4f1023bed042ffe236e9b"
25
25
  }
package/src/index.js CHANGED
@@ -22,6 +22,7 @@ export const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
22
22
  patchProjectPaths: false,
23
23
  enableRustWorkerThreadDylibHack: true,
24
24
  inlineStringReplacementPerf: false,
25
+ conditionalBundlingAsyncRuntime: false,
25
26
  };
26
27
 
27
28
  let featureFlagValues: FeatureFlags = {...DEFAULT_FEATURE_FLAGS};
package/src/types.js CHANGED
@@ -67,6 +67,10 @@ export type FeatureFlags = {|
67
67
  * Used heavily for inline bundles.
68
68
  */
69
69
  inlineStringReplacementPerf: boolean,
70
+ /**
71
+ * Enable support for the async bundle runtime (unstable_asyncBundleRuntime) in conditional bundling
72
+ */
73
+ conditionalBundlingAsyncRuntime: boolean,
70
74
  |};
71
75
 
72
76
  export type ConsistencyCheckFeatureFlagValue =