@parcel/feature-flags 2.12.1-canary.3267 → 2.12.1-canary.3270
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/index.js +1 -1
- package/lib/types.d.ts +4 -4
- package/package.json +2 -2
- package/src/index.js +1 -1
- package/src/types.js +4 -4
package/lib/index.js
CHANGED
@@ -12,7 +12,7 @@ const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
|
|
12
12
|
exampleFeature: false,
|
13
13
|
configKeyInvalidation: false,
|
14
14
|
parcelV3: false,
|
15
|
-
|
15
|
+
randomLargeBlobKeys: false
|
16
16
|
};
|
17
17
|
let featureFlagValues = {
|
18
18
|
...DEFAULT_FEATURE_FLAGS
|
package/lib/types.d.ts
CHANGED
@@ -10,12 +10,12 @@ export type FeatureFlags = {
|
|
10
10
|
readonly configKeyInvalidation: boolean;
|
11
11
|
|
12
12
|
/**
|
13
|
-
*
|
13
|
+
* Rust backed requests
|
14
14
|
*/
|
15
|
-
readonly
|
15
|
+
readonly parcelV3: boolean;
|
16
16
|
|
17
17
|
/**
|
18
|
-
*
|
18
|
+
* Store large blobs on randomly generated keys
|
19
19
|
*/
|
20
|
-
readonly
|
20
|
+
readonly randomLargeBlobKeys: boolean;
|
21
21
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@parcel/feature-flags",
|
3
|
-
"version": "2.12.1-canary.
|
3
|
+
"version": "2.12.1-canary.3270+2ce4efe40",
|
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": "
|
27
|
+
"gitHead": "2ce4efe40b663d04706dcd21b1a38e78eb24be79"
|
28
28
|
}
|
package/src/index.js
CHANGED
@@ -9,7 +9,7 @@ export const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
|
|
9
9
|
exampleFeature: false,
|
10
10
|
configKeyInvalidation: false,
|
11
11
|
parcelV3: false,
|
12
|
-
|
12
|
+
randomLargeBlobKeys: false,
|
13
13
|
};
|
14
14
|
|
15
15
|
let featureFlagValues: FeatureFlags = {...DEFAULT_FEATURE_FLAGS};
|
package/src/types.js
CHANGED
@@ -9,12 +9,12 @@ export type FeatureFlags = {|
|
|
9
9
|
* `config.getConfigFrom(..., {packageKey: '...'})` and the value itself hasn't changed.
|
10
10
|
*/
|
11
11
|
+configKeyInvalidation: boolean,
|
12
|
-
/**
|
13
|
-
* Refactors dfsNew to use an iterative approach.
|
14
|
-
*/
|
15
|
-
+dfsFasterRefactor: boolean,
|
16
12
|
/**
|
17
13
|
* Rust backed requests
|
18
14
|
*/
|
19
15
|
+parcelV3: boolean,
|
16
|
+
/**
|
17
|
+
* Store large blobs on randomly generated keys
|
18
|
+
*/
|
19
|
+
+randomLargeBlobKeys: boolean,
|
20
20
|
|};
|