@atlaspack/feature-flags 2.14.1-dev.47 → 2.14.1-dev.48

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
@@ -27,7 +27,8 @@ const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
27
27
  patchProjectPaths: false,
28
28
  enableRustWorkerThreadDylibHack: true,
29
29
  inlineStringReplacementPerf: false,
30
- conditionalBundlingAsyncRuntime: false
30
+ conditionalBundlingAsyncRuntime: false,
31
+ conditionalBundlingReporterDuplicateFix: false
31
32
  };
32
33
  let featureFlagValues = {
33
34
  ...DEFAULT_FEATURE_FLAGS
package/lib/types.d.ts CHANGED
@@ -84,5 +84,10 @@ export type FeatureFlags = {
84
84
  * Enable support for the async bundle runtime (unstable_asyncBundleRuntime) in conditional bundling
85
85
  */
86
86
  conditionalBundlingAsyncRuntime: boolean;
87
+
88
+ /**
89
+ * Fix a bug where the conditional manifest reporter would report and write the same manifest multiple times
90
+ */
91
+ conditionalBundlingReporterDuplicateFix: boolean;
87
92
  };
88
93
  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-dev.47+0a3b08abf",
3
+ "version": "2.14.1-dev.48+19755ffc2",
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": "0a3b08abfeb2f12a780b4f6b6e616e3ffe52d951"
24
+ "gitHead": "19755ffc26d7267190d1597d7215530c9bc42e41"
25
25
  }
package/src/index.js CHANGED
@@ -23,6 +23,7 @@ export const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
23
23
  enableRustWorkerThreadDylibHack: true,
24
24
  inlineStringReplacementPerf: false,
25
25
  conditionalBundlingAsyncRuntime: false,
26
+ conditionalBundlingReporterDuplicateFix: false,
26
27
  };
27
28
 
28
29
  let featureFlagValues: FeatureFlags = {...DEFAULT_FEATURE_FLAGS};
package/src/types.js CHANGED
@@ -71,6 +71,10 @@ export type FeatureFlags = {|
71
71
  * Enable support for the async bundle runtime (unstable_asyncBundleRuntime) in conditional bundling
72
72
  */
73
73
  conditionalBundlingAsyncRuntime: boolean,
74
+ /**
75
+ * Fix a bug where the conditional manifest reporter would report and write the same manifest multiple times
76
+ */
77
+ conditionalBundlingReporterDuplicateFix: boolean,
74
78
  |};
75
79
 
76
80
  export type ConsistencyCheckFeatureFlagValue =