@babel/preset-env
Advanced tools
+6
-8
@@ -37,3 +37,3 @@ import * as _babel_core from '@babel/core'; | ||
| type PluginListItem = string | RegExp; | ||
| type PluginListOption = Array<PluginListItem>; | ||
| type PluginListOption = PluginListItem[]; | ||
@@ -52,3 +52,2 @@ type Options = { | ||
| targets: { | ||
| uglify?: boolean; | ||
| esmodules?: boolean; | ||
@@ -58,12 +57,11 @@ } & InputTargets; | ||
| browserslistEnv: string; | ||
| // TODO(Babel 8): Remove these options | ||
| loose: boolean; | ||
| spec: boolean; | ||
| }; | ||
| declare function isPluginRequired(targets: Targets, support: Targets): boolean; | ||
| declare const transformIncludesAndExcludes: (opts: Array<string>) => any; | ||
| /** | ||
| * @deprecated Use `isRequired` from `@babel/helper-compilation-targets` instead. | ||
| */ | ||
| declare function isPluginRequired(targets: Targets, support: Targets): void; | ||
| declare const transformIncludesAndExcludes: (opts: string[]) => any; | ||
| declare const _default: (api: PresetAPI, options: Options, dirname: string) => _babel_core.PresetObject; | ||
| export { type Options, _default as default, isPluginRequired, transformIncludesAndExcludes }; |
+66
-66
| { | ||
| "name": "@babel/preset-env", | ||
| "version": "8.0.0-beta.3", | ||
| "version": "8.0.0-beta.4", | ||
| "description": "A Babel preset for each environment.", | ||
@@ -19,75 +19,75 @@ "author": "The Babel Team (https://babel.dev/team)", | ||
| "dependencies": { | ||
| "@babel/compat-data": "^8.0.0-beta.3", | ||
| "@babel/helper-compilation-targets": "^8.0.0-beta.3", | ||
| "@babel/helper-plugin-utils": "^8.0.0-beta.3", | ||
| "@babel/helper-validator-option": "^8.0.0-beta.3", | ||
| "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^8.0.0-beta.3", | ||
| "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^8.0.0-beta.3", | ||
| "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^8.0.0-beta.3", | ||
| "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^8.0.0-beta.3", | ||
| "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-arrow-functions": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-async-generator-functions": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-async-to-generator": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-block-scoped-functions": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-block-scoping": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-class-properties": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-class-static-block": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-classes": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-computed-properties": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-destructuring": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-dotall-regex": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-duplicate-keys": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-dynamic-import": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-explicit-resource-management": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-exponentiation-operator": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-export-namespace-from": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-for-of": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-function-name": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-json-strings": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-literals": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-logical-assignment-operators": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-member-expression-literals": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-modules-amd": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-modules-commonjs": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-modules-systemjs": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-modules-umd": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-named-capturing-groups-regex": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-new-target": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-nullish-coalescing-operator": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-numeric-separator": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-object-rest-spread": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-object-super": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-optional-catch-binding": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-optional-chaining": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-parameters": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-private-methods": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-private-property-in-object": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-property-literals": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-regenerator": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-regexp-modifiers": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-reserved-words": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-shorthand-properties": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-spread": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-sticky-regex": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-template-literals": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-typeof-symbol": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-unicode-escapes": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-unicode-property-regex": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-unicode-regex": "^8.0.0-beta.3", | ||
| "@babel/plugin-transform-unicode-sets-regex": "^8.0.0-beta.3", | ||
| "@babel/compat-data": "^8.0.0-beta.4", | ||
| "@babel/helper-compilation-targets": "^8.0.0-beta.4", | ||
| "@babel/helper-plugin-utils": "^8.0.0-beta.4", | ||
| "@babel/helper-validator-option": "^8.0.0-beta.4", | ||
| "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^8.0.0-beta.4", | ||
| "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^8.0.0-beta.4", | ||
| "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^8.0.0-beta.4", | ||
| "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^8.0.0-beta.4", | ||
| "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-arrow-functions": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-async-generator-functions": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-async-to-generator": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-block-scoped-functions": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-block-scoping": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-class-properties": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-class-static-block": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-classes": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-computed-properties": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-destructuring": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-dotall-regex": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-duplicate-keys": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-dynamic-import": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-explicit-resource-management": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-exponentiation-operator": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-export-namespace-from": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-for-of": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-function-name": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-json-strings": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-literals": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-logical-assignment-operators": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-member-expression-literals": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-modules-amd": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-modules-commonjs": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-modules-systemjs": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-modules-umd": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-named-capturing-groups-regex": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-new-target": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-nullish-coalescing-operator": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-numeric-separator": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-object-rest-spread": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-object-super": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-optional-catch-binding": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-optional-chaining": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-parameters": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-private-methods": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-private-property-in-object": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-property-literals": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-regenerator": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-regexp-modifiers": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-reserved-words": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-shorthand-properties": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-spread": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-sticky-regex": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-template-literals": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-typeof-symbol": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-unicode-escapes": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-unicode-property-regex": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-unicode-regex": "^8.0.0-beta.4", | ||
| "@babel/plugin-transform-unicode-sets-regex": "^8.0.0-beta.4", | ||
| "@babel/preset-modules": "0.1.6-no-external-plugins", | ||
| "babel-plugin-polyfill-corejs3": "^0.13.0", | ||
| "core-js-compat": "^3.43.0", | ||
| "semver": "^7.3.4" | ||
| "semver": "^7.7.3" | ||
| }, | ||
| "peerDependencies": { | ||
| "@babel/core": "^8.0.0-beta.3" | ||
| "@babel/core": "^7.0.0-0" | ||
| }, | ||
| "devDependencies": { | ||
| "@babel/core": "^8.0.0-beta.3", | ||
| "@babel/core": "^8.0.0-beta.4", | ||
| "@babel/core-7.12": "npm:@babel/core@7.12.9", | ||
| "@babel/helper-plugin-test-runner": "^8.0.0-beta.3", | ||
| "@babel/traverse": "^8.0.0-beta.3" | ||
| "@babel/helper-plugin-test-runner": "^8.0.0-beta.4", | ||
| "@babel/traverse": "^8.0.0-beta.4" | ||
| }, | ||
@@ -94,0 +94,0 @@ "engines": { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
9123
2.23%253180
-4.53%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated
Updated