@parcel/types-internal 2.12.1-canary.3344 → 2.12.1-canary.3350
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/index.d.ts +0 -2
- package/package.json +4 -4
- package/src/index.js +0 -3
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.
|
3
|
+
"version": "2.12.1-canary.3350+5ecb1316c",
|
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.
|
20
|
-
"@parcel/feature-flags": "2.12.1-canary.
|
19
|
+
"@parcel/diagnostic": "2.0.0-canary.1727+5ecb1316c",
|
20
|
+
"@parcel/feature-flags": "2.12.1-canary.3350+5ecb1316c",
|
21
21
|
"@parcel/source-map": "^2.1.1",
|
22
22
|
"utility-types": "^3.10.0"
|
23
23
|
},
|
24
|
-
"gitHead": "
|
24
|
+
"gitHead": "5ecb1316c23d22b89bd3e2fbb44137761cecfc70"
|
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
|
/**
|