@parcel/feature-flags 2.12.1-canary.3308 → 2.12.1-canary.3311
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/index.js +0 -1
- package/lib/types.d.ts +0 -7
- package/package.json +2 -2
- package/src/index.js +0 -1
- package/src/types.js +0 -6
package/lib/index.js
CHANGED
@@ -10,7 +10,6 @@ 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
|
-
configKeyInvalidation: false,
|
14
13
|
parcelV3: false
|
15
14
|
};
|
16
15
|
let featureFlagValues = {
|
package/lib/types.d.ts
CHANGED
@@ -2,13 +2,6 @@ export type FeatureFlags = {
|
|
2
2
|
// This feature flag mostly exists to test the feature flag system, and doesn't have any build/runtime effect
|
3
3
|
readonly exampleFeature: boolean;
|
4
4
|
|
5
|
-
/**
|
6
|
-
* Enables content hash based invalidation for config keys used in plugins.
|
7
|
-
* This allows Assets not to be invalidated when using
|
8
|
-
* `config.getConfigFrom(..., {packageKey: '...'})` and the value itself hasn't changed.
|
9
|
-
*/
|
10
|
-
readonly configKeyInvalidation: boolean;
|
11
|
-
|
12
5
|
/**
|
13
6
|
* Rust backed requests
|
14
7
|
*/
|
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.3311+ae9644820",
|
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": "ae9644820b06cdbd7e6ffcfc18e4f25b6f14990a"
|
28
28
|
}
|
package/src/index.js
CHANGED
package/src/types.js
CHANGED
@@ -3,12 +3,6 @@
|
|
3
3
|
export type FeatureFlags = {|
|
4
4
|
// This feature flag mostly exists to test the feature flag system, and doesn't have any build/runtime effect
|
5
5
|
+exampleFeature: boolean,
|
6
|
-
/**
|
7
|
-
* Enables content hash based invalidation for config keys used in plugins.
|
8
|
-
* This allows Assets not to be invalidated when using
|
9
|
-
* `config.getConfigFrom(..., {packageKey: '...'})` and the value itself hasn't changed.
|
10
|
-
*/
|
11
|
-
+configKeyInvalidation: boolean,
|
12
6
|
/**
|
13
7
|
* Rust backed requests
|
14
8
|
*/
|