@parcel/feature-flags 2.12.1-canary.3333 → 2.12.1-canary.3335

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.js CHANGED
@@ -11,6 +11,7 @@ exports.setFeatureFlags = setFeatureFlags;
11
11
  const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
12
12
  exampleFeature: false,
13
13
  parcelV3: false,
14
+ useWatchmanWatcher: false,
14
15
  importRetry: false,
15
16
  ownedResolverStructures: false
16
17
  };
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.3333+6a8d5e9c9",
3
+ "version": "2.12.1-canary.3335+1afd7f7d2",
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": "6a8d5e9c90d62a8132f6921a132343295e28f91a"
27
+ "gitHead": "1afd7f7d2894679880ff0d2b644a61d8734f3f89"
28
28
  }
package/src/index.js CHANGED
@@ -8,6 +8,7 @@ export type FeatureFlags = _FeatureFlags;
8
8
  export const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
9
9
  exampleFeature: false,
10
10
  parcelV3: false,
11
+ useWatchmanWatcher: false,
11
12
  importRetry: false,
12
13
  ownedResolverStructures: false,
13
14
  };
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
  */