@parcel/feature-flags 2.12.1-canary.3269 → 2.12.1-canary.3271

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.js CHANGED
@@ -11,7 +11,8 @@ exports.setFeatureFlags = setFeatureFlags;
11
11
  const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
12
12
  exampleFeature: false,
13
13
  configKeyInvalidation: false,
14
- parcelV3: false
14
+ parcelV3: false,
15
+ randomLargeBlobKeys: false
15
16
  };
16
17
  let featureFlagValues = {
17
18
  ...DEFAULT_FEATURE_FLAGS
package/lib/types.d.ts CHANGED
@@ -13,4 +13,9 @@ 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;
16
21
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parcel/feature-flags",
3
- "version": "2.12.1-canary.3269+9eff0bfeb",
3
+ "version": "2.12.1-canary.3271+53161b463",
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": "9eff0bfeb655845c8ffd86d8acdba9a21bbafc82"
27
+ "gitHead": "53161b46382f9b0e57124c08eea4b526c6f1e995"
28
28
  }
package/src/index.js CHANGED
@@ -9,6 +9,7 @@ export const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
9
9
  exampleFeature: false,
10
10
  configKeyInvalidation: false,
11
11
  parcelV3: false,
12
+ randomLargeBlobKeys: false,
12
13
  };
13
14
 
14
15
  let featureFlagValues: FeatureFlags = {...DEFAULT_FEATURE_FLAGS};
package/src/types.js CHANGED
@@ -13,4 +13,8 @@ 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,
16
20
  |};