@parcel/types-internal 2.13.4-canary.3395 → 2.13.4-canary.3398

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.ts CHANGED
@@ -164,7 +164,7 @@ export type EnvironmentOptions = {
164
164
  * </code></pre>
165
165
  */
166
166
  export type VersionMap = Record<string, string>;
167
- export type EnvironmentFeature = "esmodules" | "dynamic-import" | "worker-module" | "service-worker-module" | "import-meta-url" | "arrow-functions" | "global-this";
167
+ export type EnvironmentFeature = "esmodules" | "dynamic-import" | "worker-module" | "service-worker-module" | "import-meta-url" | "import-meta-resolve" | "arrow-functions" | "global-this";
168
168
 
169
169
  /**
170
170
  * Defines the environment in for the output bundle
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parcel/types-internal",
3
- "version": "2.13.4-canary.3395+f86f5f27c",
3
+ "version": "2.13.4-canary.3398+735a635f7",
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.1772+f86f5f27c",
20
- "@parcel/feature-flags": "2.13.4-canary.3395+f86f5f27c",
19
+ "@parcel/diagnostic": "2.0.0-canary.1775+735a635f7",
20
+ "@parcel/feature-flags": "2.13.4-canary.3398+735a635f7",
21
21
  "@parcel/source-map": "^2.1.1",
22
22
  "utility-types": "^3.10.0"
23
23
  },
24
- "gitHead": "f86f5f27c3a6553e70bd35652f19e6ab8d8e4e4a"
24
+ "gitHead": "735a635f7eed538c449f37517b26247e0b19c1a4"
25
25
  }
package/src/index.js CHANGED
@@ -251,6 +251,7 @@ export type EnvironmentFeature =
251
251
  | 'worker-module'
252
252
  | 'service-worker-module'
253
253
  | 'import-meta-url'
254
+ | 'import-meta-resolve'
254
255
  | 'arrow-functions'
255
256
  | 'global-this';
256
257