@parcel/feature-flags 2.12.1-dev.3275 → 2.12.1-dev.3303

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.js CHANGED
@@ -11,8 +11,7 @@ exports.setFeatureFlags = setFeatureFlags;
11
11
  const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
12
12
  exampleFeature: false,
13
13
  configKeyInvalidation: false,
14
- parcelV3: false,
15
- randomLargeBlobKeys: false
14
+ parcelV3: false
16
15
  };
17
16
  let featureFlagValues = {
18
17
  ...DEFAULT_FEATURE_FLAGS
package/lib/types.d.ts CHANGED
@@ -13,9 +13,4 @@ export type FeatureFlags = {
13
13
  * Rust backed requests
14
14
  */
15
15
  readonly parcelV3: boolean;
16
-
17
- /**
18
- * Store large blobs on randomly generated keys
19
- */
20
- readonly randomLargeBlobKeys: boolean;
21
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parcel/feature-flags",
3
- "version": "2.12.1-dev.3275+8b017703f",
3
+ "version": "2.12.1-dev.3303+3edb0d741",
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": "8b017703fdf4a90a643ce0190cdd7482060dc86b"
27
+ "gitHead": "3edb0d7419831e49cfa7ea8c52b4f7127a16ae52"
28
28
  }
package/src/index.js CHANGED
@@ -9,7 +9,6 @@ export const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
9
9
  exampleFeature: false,
10
10
  configKeyInvalidation: false,
11
11
  parcelV3: false,
12
- randomLargeBlobKeys: false,
13
12
  };
14
13
 
15
14
  let featureFlagValues: FeatureFlags = {...DEFAULT_FEATURE_FLAGS};
package/src/types.js CHANGED
@@ -13,8 +13,4 @@ export type FeatureFlags = {|
13
13
  * Rust backed requests
14
14
  */
15
15
  +parcelV3: boolean,
16
- /**
17
- * Store large blobs on randomly generated keys
18
- */
19
- +randomLargeBlobKeys: boolean,
20
16
  |};