@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 +1 -2
- package/lib/types.d.ts +0 -5
- package/package.json +2 -2
- package/src/index.js +0 -1
- package/src/types.js +0 -4
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
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@parcel/feature-flags",
|
3
|
-
"version": "2.13.4-canary.
|
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": "
|
27
|
+
"gitHead": "7eae895f3c77e1b97d0646628f59dd6c9107ab83"
|
28
28
|
}
|
package/src/index.js
CHANGED