@parcel/types-internal 2.12.1-canary.3335 → 2.12.1-canary.3337
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +4 -4
- package/src/index.js +5 -1
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.3337+21bc8d4b5",
|
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.1714+21bc8d4b5",
|
20
|
+
"@parcel/feature-flags": "2.12.1-canary.3337+21bc8d4b5",
|
21
21
|
"@parcel/source-map": "^2.1.1",
|
22
22
|
"utility-types": "^3.10.0"
|
23
23
|
},
|
24
|
-
"gitHead": "
|
24
|
+
"gitHead": "21bc8d4b585c0a898e1b7644f27e3fea128ee9c9"
|
25
25
|
}
|
package/src/index.js
CHANGED
@@ -100,7 +100,11 @@ export type GlobMap<T> = {[Glob]: T, ...};
|
|
100
100
|
|
101
101
|
export type RawParcelConfigPipeline = Array<PackageName>;
|
102
102
|
|
103
|
-
export type HMROptions = {
|
103
|
+
export type HMROptions = {
|
104
|
+
port?: number,
|
105
|
+
host?: string,
|
106
|
+
...
|
107
|
+
};
|
104
108
|
|
105
109
|
/** The format of .parcelrc */
|
106
110
|
export type RawParcelConfig = {|
|