@parcel/types-internal 2.12.1-canary.3345 → 2.12.1-canary.3351

Sign up to get free protection for your applications and to get access to all the features.
package/lib/index.d.ts CHANGED
@@ -1726,7 +1726,6 @@ export type Namer<ConfigType> = {
1726
1726
  tracer: PluginTracer;
1727
1727
  }): Async<FilePath | null | undefined>;
1728
1728
  };
1729
- type RuntimeAssetPriority = "sync" | "parallel";
1730
1729
 
1731
1730
  /**
1732
1731
  * A "synthetic" asset that will be inserted into the bundle graph.
@@ -1738,7 +1737,6 @@ export type RuntimeAsset = {
1738
1737
  readonly dependency?: Dependency;
1739
1738
  readonly isEntry?: boolean;
1740
1739
  readonly env?: EnvironmentOptions;
1741
- readonly priority?: RuntimeAssetPriority;
1742
1740
  };
1743
1741
 
1744
1742
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parcel/types-internal",
3
- "version": "2.12.1-canary.3345+9c95c1b9b",
3
+ "version": "2.12.1-canary.3351+d1f3ffeeb",
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-canary.1722+9c95c1b9b",
20
- "@parcel/feature-flags": "2.12.1-canary.3345+9c95c1b9b",
19
+ "@parcel/diagnostic": "2.0.0-canary.1728+d1f3ffeeb",
20
+ "@parcel/feature-flags": "2.12.1-canary.3351+d1f3ffeeb",
21
21
  "@parcel/source-map": "^2.1.1",
22
22
  "utility-types": "^3.10.0"
23
23
  },
24
- "gitHead": "9c95c1b9ba961142e8aab79378be988afe3ed624"
24
+ "gitHead": "d1f3ffeebe74a6f3a7cb028210c31a44d93fea23"
25
25
  }
package/src/index.js CHANGED
@@ -1711,8 +1711,6 @@ export type Namer<ConfigType> = {|
1711
1711
  |}): Async<?FilePath>,
1712
1712
  |};
1713
1713
 
1714
- type RuntimeAssetPriority = 'sync' | 'parallel';
1715
-
1716
1714
  /**
1717
1715
  * A "synthetic" asset that will be inserted into the bundle graph.
1718
1716
  * @section runtime
@@ -1723,7 +1721,6 @@ export type RuntimeAsset = {|
1723
1721
  +dependency?: Dependency,
1724
1722
  +isEntry?: boolean,
1725
1723
  +env?: EnvironmentOptions,
1726
- +priority?: RuntimeAssetPriority,
1727
1724
  |};
1728
1725
 
1729
1726
  /**