@parcel/feature-flags 2.12.1-canary.3333 → 2.12.1-canary.3334
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/index.js +1 -0
- package/lib/types.d.ts +5 -0
- package/package.json +2 -2
- package/src/index.js +1 -0
- package/src/types.js +4 -0
package/lib/index.js
CHANGED
package/lib/types.d.ts
CHANGED
@@ -7,6 +7,11 @@ export type FeatureFlags = {
|
|
7
7
|
*/
|
8
8
|
readonly parcelV3: boolean;
|
9
9
|
|
10
|
+
/**
|
11
|
+
* Use node.js implementation of @parcel/watcher watchman backend
|
12
|
+
*/
|
13
|
+
readonly useWatchmanWatcher: boolean;
|
14
|
+
|
10
15
|
/**
|
11
16
|
* Configure runtime to enable retriable dynamic imports
|
12
17
|
*/
|
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.3334+fcce2abca",
|
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": "fcce2abca788ee021adf29a9f3b1362db7dcea6d"
|
28
28
|
}
|
package/src/index.js
CHANGED
package/src/types.js
CHANGED
@@ -7,6 +7,10 @@ export type FeatureFlags = {|
|
|
7
7
|
* Rust backed requests
|
8
8
|
*/
|
9
9
|
+parcelV3: boolean,
|
10
|
+
/**
|
11
|
+
* Use node.js implementation of @parcel/watcher watchman backend
|
12
|
+
*/
|
13
|
+
+useWatchmanWatcher: boolean,
|
10
14
|
/**
|
11
15
|
* Configure runtime to enable retriable dynamic imports
|
12
16
|
*/
|