@parcel/feature-flags 2.12.1-dev.3171 → 2.12.1-dev.3238

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.js CHANGED
@@ -7,6 +7,5 @@ exports.DEFAULT_FEATURE_FLAGS = void 0;
7
7
  // We need to do these gymnastics as we don't want flow-to-ts to touch DEFAULT_FEATURE_FLAGS,
8
8
  // but we want to export FeatureFlags for Flow
9
9
  const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
10
- yarnWatcher: false,
11
10
  exampleFeature: false
12
11
  };
package/lib/types.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  export type FeatureFlags = {
2
- readonly yarnWatcher: boolean;
3
2
  // This feature flag mostly exists to test the feature flag system, and doesn't have any build/runtime effect
4
3
  readonly exampleFeature: boolean;
5
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parcel/feature-flags",
3
- "version": "2.12.1-dev.3171+79b158883",
3
+ "version": "2.12.1-dev.3238+7f6b4dbbc",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -24,5 +24,5 @@
24
24
  "engines": {
25
25
  "node": ">= 16.0.0"
26
26
  },
27
- "gitHead": "79b158883170daac9cd17bdecfebff163bc99e52"
27
+ "gitHead": "7f6b4dbbc56a203e0fce8794856c03598c4f6708"
28
28
  }
package/src/index.js CHANGED
@@ -6,6 +6,5 @@ import type {FeatureFlags as _FeatureFlags} from './types';
6
6
  export type FeatureFlags = _FeatureFlags;
7
7
 
8
8
  export const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
9
- yarnWatcher: false,
10
9
  exampleFeature: false,
11
10
  };
package/src/types.js CHANGED
@@ -1,7 +1,6 @@
1
1
  // @flow strict
2
2
 
3
3
  export type FeatureFlags = {|
4
- +yarnWatcher: boolean,
5
4
  // This feature flag mostly exists to test the feature flag system, and doesn't have any build/runtime effect
6
5
  +exampleFeature: boolean,
7
6
  |};