@parcel/feature-flags 2.13.4-canary.3395 → 2.13.4-canary.3397

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
@@ -10,8 +10,7 @@ exports.setFeatureFlags = setFeatureFlags;
10
10
  // but we want to export FeatureFlags for Flow
11
11
  const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
12
12
  exampleFeature: false,
13
- useWatchmanWatcher: false,
14
- importRetry: false
13
+ useWatchmanWatcher: false
15
14
  };
16
15
  let featureFlagValues = {
17
16
  ...DEFAULT_FEATURE_FLAGS
package/lib/types.d.ts CHANGED
@@ -6,9 +6,4 @@ export type FeatureFlags = {
6
6
  * Use node.js implementation of @parcel/watcher watchman backend
7
7
  */
8
8
  readonly useWatchmanWatcher: boolean;
9
-
10
- /**
11
- * Configure runtime to enable retriable dynamic imports
12
- */
13
- importRetry: boolean;
14
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parcel/feature-flags",
3
- "version": "2.13.4-canary.3395+f86f5f27c",
3
+ "version": "2.13.4-canary.3397+7eae895f3",
4
4
  "description": "Provides internal feature-flags for the parcel codebase.",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -24,5 +24,5 @@
24
24
  "engines": {
25
25
  "node": ">= 16.0.0"
26
26
  },
27
- "gitHead": "f86f5f27c3a6553e70bd35652f19e6ab8d8e4e4a"
27
+ "gitHead": "7eae895f3c77e1b97d0646628f59dd6c9107ab83"
28
28
  }
package/src/index.js CHANGED
@@ -8,7 +8,6 @@ export type FeatureFlags = _FeatureFlags;
8
8
  export const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
9
9
  exampleFeature: false,
10
10
  useWatchmanWatcher: false,
11
- importRetry: false,
12
11
  };
13
12
 
14
13
  let featureFlagValues: FeatureFlags = {...DEFAULT_FEATURE_FLAGS};
package/src/types.js CHANGED
@@ -7,8 +7,4 @@ export type FeatureFlags = {|
7
7
  * Use node.js implementation of @parcel/watcher watchman backend
8
8
  */
9
9
  +useWatchmanWatcher: boolean,
10
- /**
11
- * Configure runtime to enable retriable dynamic imports
12
- */
13
- importRetry: boolean,
14
10
  |};