@parcel/types-internal 2.12.1-dev.3187 → 2.12.1-dev.3195

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.d.ts CHANGED
@@ -294,7 +294,7 @@ export type InitialParcelOptionsInternal<WorkerFarm> = {
294
294
  packageName: DependencySpecifier;
295
295
  resolveFrom: FilePath;
296
296
  }>;
297
- readonly featureFlags?: FeatureFlags; // throwErrors
297
+ readonly featureFlags?: Partial<FeatureFlags>; // throwErrors
298
298
  // global?
299
299
 
300
300
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parcel/types-internal",
3
- "version": "2.12.1-dev.3187+f88048a4b",
3
+ "version": "2.12.1-dev.3195+7afdafedd",
4
4
  "license": "MIT",
5
5
  "main": "src/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -16,10 +16,10 @@
16
16
  "check-ts": "tsc --noEmit lib/index.d.ts"
17
17
  },
18
18
  "dependencies": {
19
- "@parcel/diagnostic": "2.0.0-dev.1564+f88048a4b",
20
- "@parcel/feature-flags": "2.12.1-dev.3187+f88048a4b",
19
+ "@parcel/diagnostic": "2.0.0-dev.1572+7afdafedd",
20
+ "@parcel/feature-flags": "2.12.1-dev.3195+7afdafedd",
21
21
  "@parcel/source-map": "^2.1.1",
22
22
  "utility-types": "^3.10.0"
23
23
  },
24
- "gitHead": "f88048a4b5e7b0d65ea484365b568ad423a8bf45"
24
+ "gitHead": "7afdafedd7f01d82b9868ec004b3966a88006300"
25
25
  }
@@ -11,5 +11,6 @@ contents = contents.replace(
11
11
  );
12
12
  contents = contents.replace(/\$ReadOnlyMap/g, 'ReadonlyMap');
13
13
  contents = contents.replace(/\$ReadOnlySet/g, 'ReadonlySet');
14
+ contents = contents.replace(/\$Partial/g, 'Partial');
14
15
 
15
16
  fs.writeFileSync(typesPath, contents);
package/src/index.js CHANGED
@@ -385,7 +385,7 @@ export type InitialParcelOptionsInternal<WorkerFarm> = {|
385
385
  resolveFrom: FilePath,
386
386
  |}>,
387
387
 
388
- +featureFlags?: FeatureFlags,
388
+ +featureFlags?: $Partial<FeatureFlags>,
389
389
 
390
390
  // throwErrors
391
391
  // global?