Merge pull request #6495 from babel/scoped-packages

Rename everything: use scoped packages
This commit is contained in:
Henry Zhu 2017-10-17 08:29:18 -04:00 committed by GitHub
commit 830c527bb7
598 changed files with 2155 additions and 2228 deletions

View File

@ -22,3 +22,4 @@ lib/third-party-libs.js.flow
suppress_comment= \\(.\\|\n\\)*\\$FlowFixMe
suppress_comment= \\(.\\|\n\\)*\\$FlowIssue
esproposal.export_star_as=enable
module.name_mapper='^@babel\/\([a-zA-Z0-9_\-]+\)$' -> '<PROJECT_ROOT>/packages/babel-\1/src/index'

View File

@ -1,4 +1,4 @@
# babel-plugin-codemod-optional-catch-binding
# @babel/plugin-codemod-optional-catch-binding
> If the argument bound to the catch block is not referenced in the catch block, that argument and the catch binding is removed.
@ -26,7 +26,7 @@ try {
## Installation
```sh
npm install --save-dev babel-plugin-codemod-optional-catch-binding
npm install --save-dev @babel/plugin-codemod-optional-catch-binding
```
## Usage
@ -50,7 +50,7 @@ babel --plugins codemod-optional-catch-binding script.js
### Via Node API
```javascript
require("babel-core").transform("code", {
require("@babel/core").transform("code", {
plugins: ["codemod-optional-catch-binding"]
});
```

View File

@ -1,17 +1,17 @@
{
"name": "babel-plugin-codemod-optional-catch-binding",
"name": "@babel/plugin-codemod-optional-catch-binding",
"version": "7.0.0-beta.3",
"description": "Remove unused catch bindings",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-remove-unused-catch-binding",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"babel-plugin"
"@babel/plugin"
],
"dependencies": {
"babel-plugin-syntax-optional-catch-binding": "7.0.0-beta.3"
"@babel/plugin-syntax-optional-catch-binding": "7.0.0-beta.3"
},
"devDependencies": {
"babel-helper-plugin-test-runner": "7.0.0-beta.3"
"@babel/helper-plugin-test-runner": "7.0.0-beta.3"
}
}

View File

@ -1,4 +1,4 @@
import syntaxOptionalCatchBinding from "babel-plugin-syntax-optional-catch-binding";
import syntaxOptionalCatchBinding from "@babel/plugin-syntax-optional-catch-binding";
export default function(babel) {
const { types: t } = babel;

View File

@ -1,3 +1,3 @@
import runner from "babel-helper-plugin-test-runner";
import runner from "@babel/helper-plugin-test-runner";
runner(__dirname);

View File

@ -1,4 +1,4 @@
# babel-preset-env [![npm](https://img.shields.io/npm/v/babel-preset-env.svg)](https://www.npmjs.com/package/babel-preset-env) [![travis](https://img.shields.io/travis/babel/babel-preset-env/master.svg)](https://travis-ci.org/babel/babel-preset-env) [![npm-downloads](https://img.shields.io/npm/dm/babel-preset-env.svg)](https://www.npmjs.com/package/babel-preset-env) [![codecov](https://img.shields.io/codecov/c/github/babel/babel-preset-env/master.svg?maxAge=43200)](https://codecov.io/github/babel/babel-preset-env)
# @babel/preset-env [![npm](https://img.shields.io/npm/v/babel-preset-env.svg)](https://www.npmjs.com/package/babel-preset-env) [![travis](https://img.shields.io/travis/babel/babel-preset-env/master.svg)](https://travis-ci.org/babel/babel-preset-env) [![npm-downloads](https://img.shields.io/npm/dm/babel-preset-env.svg)](https://www.npmjs.com/package/babel-preset-env) [![codecov](https://img.shields.io/codecov/c/github/babel/babel-preset-env/master.svg?maxAge=43200)](https://codecov.io/github/babel/babel-preset-env)
> A Babel preset that compiles [ES2015+](https://github.com/tc39/proposals/blob/master/finished-proposals.md) down to ES5 by automatically determining the Babel plugins and polyfills you need based on your targeted browser or runtime environments.
@ -286,12 +286,12 @@ var b = new Map();
**Out (if environment doesn't support it)**
```js
import "babel-polyfill/core-js/modules/es6.promise";
import "@babel/polyfill/core-js/modules/es6.promise";
var a = new Promise();
```
```js
import "babel-polyfill/core-js/modules/es6.map";
import "@babel/polyfill/core-js/modules/es6.map";
var b = new Map();
```
@ -307,28 +307,28 @@ var b = new Map();
#### `useBuiltIns: 'entry'`
> NOTE: Only use `require("babel-polyfill");` once in your whole app.
> NOTE: Only use `require("@babel/polyfill");` once in your whole app.
> Multiple imports or requires of `babel-polyfill` will throw an error since it can cause global collisions and other issues that are hard to trace.
> We recommend creating a single entry file that only contains the `require` statement.
This option enables a new plugin that replaces the statement `import "babel-polyfill"` or `require("babel-polyfill")` with individual requires for `babel-polyfill` based on environment.
This option enables a new plugin that replaces the statement `import "@babel/polyfill"` or `require("@babel/polyfill")` with individual requires for `babel-polyfill` based on environment.
**In**
```js
import "babel-polyfill";
import "@babel/polyfill";
```
**Out (different based on environment)**
```js
import "babel-polyfill/core-js/modules/es7.string.pad-start";
import "babel-polyfill/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/core-js/modules/es7.string.pad-end";
```
#### `useBuiltIns: false`
Don't add polyfills automatically per file, or transform `import "babel-polyfill"` to individual polyfills.
Don't add polyfills automatically per file, or transform `import "@babel/polyfill"` to individual polyfills.
### `forceAllTransforms`

View File

@ -1,5 +1,5 @@
{
"name": "babel-preset-env",
"name": "@babel/preset-env",
"version": "7.0.0-beta.3",
"description": "A Babel preset for each environment.",
"author": "Henry Zhu <hi@henryzoo.com>",
@ -11,49 +11,49 @@
"build-data": "node ./scripts/build-data.js"
},
"dependencies": {
"babel-plugin-check-es2015-constants": "7.0.0-beta.3",
"babel-plugin-syntax-async-generators": "7.0.0-beta.3",
"babel-plugin-syntax-object-rest-spread": "7.0.0-beta.3",
"babel-plugin-syntax-optional-catch-binding": "7.0.0-beta.3",
"@babel/plugin-check-es2015-constants": "7.0.0-beta.3",
"@babel/plugin-syntax-async-generators": "7.0.0-beta.3",
"@babel/plugin-syntax-object-rest-spread": "7.0.0-beta.3",
"@babel/plugin-syntax-optional-catch-binding": "7.0.0-beta.3",
"babel-plugin-syntax-trailing-function-commas": "7.0.0-beta.0",
"babel-plugin-transform-async-generator-functions": "7.0.0-beta.3",
"babel-plugin-transform-async-to-generator": "7.0.0-beta.3",
"babel-plugin-transform-es2015-arrow-functions": "7.0.0-beta.3",
"babel-plugin-transform-es2015-block-scoped-functions": "7.0.0-beta.3",
"babel-plugin-transform-es2015-block-scoping": "7.0.0-beta.3",
"babel-plugin-transform-es2015-classes": "7.0.0-beta.3",
"babel-plugin-transform-es2015-computed-properties": "7.0.0-beta.3",
"babel-plugin-transform-es2015-destructuring": "7.0.0-beta.3",
"babel-plugin-transform-es2015-duplicate-keys": "7.0.0-beta.3",
"babel-plugin-transform-es2015-for-of": "7.0.0-beta.3",
"babel-plugin-transform-es2015-function-name": "7.0.0-beta.3",
"babel-plugin-transform-es2015-literals": "7.0.0-beta.3",
"babel-plugin-transform-es2015-modules-amd": "7.0.0-beta.3",
"babel-plugin-transform-es2015-modules-commonjs": "7.0.0-beta.3",
"babel-plugin-transform-es2015-modules-systemjs": "7.0.0-beta.3",
"babel-plugin-transform-es2015-modules-umd": "7.0.0-beta.3",
"babel-plugin-transform-es2015-object-super": "7.0.0-beta.3",
"babel-plugin-transform-es2015-parameters": "7.0.0-beta.3",
"babel-plugin-transform-es2015-shorthand-properties": "7.0.0-beta.3",
"babel-plugin-transform-es2015-spread": "7.0.0-beta.3",
"babel-plugin-transform-es2015-sticky-regex": "7.0.0-beta.3",
"babel-plugin-transform-es2015-template-literals": "7.0.0-beta.3",
"babel-plugin-transform-es2015-typeof-symbol": "7.0.0-beta.3",
"babel-plugin-transform-es2015-unicode-regex": "7.0.0-beta.3",
"babel-plugin-transform-exponentiation-operator": "7.0.0-beta.3",
"babel-plugin-transform-new-target": "7.0.0-beta.3",
"babel-plugin-transform-object-rest-spread": "7.0.0-beta.3",
"babel-plugin-transform-optional-catch-binding": "7.0.0-beta.3",
"babel-plugin-transform-regenerator": "7.0.0-beta.3",
"@babel/plugin-transform-async-generator-functions": "7.0.0-beta.3",
"@babel/plugin-transform-async-to-generator": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-arrow-functions": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-block-scoped-functions": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-block-scoping": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-classes": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-computed-properties": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-destructuring": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-duplicate-keys": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-for-of": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-function-name": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-literals": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-modules-amd": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-modules-commonjs": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-modules-systemjs": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-modules-umd": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-object-super": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-parameters": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-shorthand-properties": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-spread": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-sticky-regex": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-template-literals": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-typeof-symbol": "7.0.0-beta.3",
"@babel/plugin-transform-es2015-unicode-regex": "7.0.0-beta.3",
"@babel/plugin-transform-exponentiation-operator": "7.0.0-beta.3",
"@babel/plugin-transform-new-target": "7.0.0-beta.3",
"@babel/plugin-transform-object-rest-spread": "7.0.0-beta.3",
"@babel/plugin-transform-optional-catch-binding": "7.0.0-beta.3",
"@babel/plugin-transform-regenerator": "7.0.0-beta.3",
"babel-plugin-transform-unicode-property-regex": "^2.0.5",
"browserslist": "^2.4.0",
"invariant": "^2.2.2",
"semver": "^5.3.0"
},
"devDependencies": {
"babel-cli": "7.0.0-beta.3",
"babel-helper-fixtures": "7.0.0-beta.3",
"babel-helper-plugin-test-runner": "7.0.0-beta.3",
"@babel/cli": "7.0.0-beta.3",
"@babel/helper-fixtures": "7.0.0-beta.3",
"@babel/helper-plugin-test-runner": "7.0.0-beta.3",
"compat-table": "kangax/compat-table#957f1ff15972e8fb2892a172f985e9af27bf1c75"
}
}

View File

@ -91,7 +91,7 @@ const foo = new Promise((resolve) => {
fs.writeFileSync(
path.join(tempFolderPath, "index.js"),
`
import "babel-polyfill";
import "@babel/polyfill";
1 ** 2;
`
);

View File

@ -1,37 +1,37 @@
export default {
"check-es2015-constants": require("babel-plugin-check-es2015-constants"),
"syntax-async-generators": require("babel-plugin-syntax-async-generators"),
"syntax-object-rest-spread": require("babel-plugin-syntax-object-rest-spread"),
"syntax-optional-catch-binding": require("babel-plugin-syntax-optional-catch-binding"),
"check-es2015-constants": require("@babel/plugin-check-es2015-constants"),
"syntax-async-generators": require("@babel/plugin-syntax-async-generators"),
"syntax-object-rest-spread": require("@babel/plugin-syntax-object-rest-spread"),
"syntax-optional-catch-binding": require("@babel/plugin-syntax-optional-catch-binding"),
"syntax-trailing-function-commas": require("babel-plugin-syntax-trailing-function-commas"),
"transform-async-to-generator": require("babel-plugin-transform-async-to-generator"),
"transform-async-generator-functions": require("babel-plugin-transform-async-generator-functions"),
"transform-es2015-arrow-functions": require("babel-plugin-transform-es2015-arrow-functions"),
"transform-es2015-block-scoped-functions": require("babel-plugin-transform-es2015-block-scoped-functions"),
"transform-es2015-block-scoping": require("babel-plugin-transform-es2015-block-scoping"),
"transform-es2015-classes": require("babel-plugin-transform-es2015-classes"),
"transform-es2015-computed-properties": require("babel-plugin-transform-es2015-computed-properties"),
"transform-es2015-destructuring": require("babel-plugin-transform-es2015-destructuring"),
"transform-es2015-duplicate-keys": require("babel-plugin-transform-es2015-duplicate-keys"),
"transform-es2015-for-of": require("babel-plugin-transform-es2015-for-of"),
"transform-es2015-function-name": require("babel-plugin-transform-es2015-function-name"),
"transform-es2015-literals": require("babel-plugin-transform-es2015-literals"),
"transform-es2015-modules-amd": require("babel-plugin-transform-es2015-modules-amd"),
"transform-es2015-modules-commonjs": require("babel-plugin-transform-es2015-modules-commonjs"),
"transform-es2015-modules-systemjs": require("babel-plugin-transform-es2015-modules-systemjs"),
"transform-es2015-modules-umd": require("babel-plugin-transform-es2015-modules-umd"),
"transform-es2015-object-super": require("babel-plugin-transform-es2015-object-super"),
"transform-es2015-parameters": require("babel-plugin-transform-es2015-parameters"),
"transform-es2015-shorthand-properties": require("babel-plugin-transform-es2015-shorthand-properties"),
"transform-es2015-spread": require("babel-plugin-transform-es2015-spread"),
"transform-es2015-sticky-regex": require("babel-plugin-transform-es2015-sticky-regex"),
"transform-es2015-template-literals": require("babel-plugin-transform-es2015-template-literals"),
"transform-es2015-typeof-symbol": require("babel-plugin-transform-es2015-typeof-symbol"),
"transform-es2015-unicode-regex": require("babel-plugin-transform-es2015-unicode-regex"),
"transform-exponentiation-operator": require("babel-plugin-transform-exponentiation-operator"),
"transform-new-target": require("babel-plugin-transform-new-target"),
"transform-object-rest-spread": require("babel-plugin-transform-object-rest-spread"),
"transform-optional-catch-binding": require("babel-plugin-transform-optional-catch-binding"),
"transform-regenerator": require("babel-plugin-transform-regenerator"),
"transform-async-to-generator": require("@babel/plugin-transform-async-to-generator"),
"transform-async-generator-functions": require("@babel/plugin-transform-async-generator-functions"),
"transform-es2015-arrow-functions": require("@babel/plugin-transform-es2015-arrow-functions"),
"transform-es2015-block-scoped-functions": require("@babel/plugin-transform-es2015-block-scoped-functions"),
"transform-es2015-block-scoping": require("@babel/plugin-transform-es2015-block-scoping"),
"transform-es2015-classes": require("@babel/plugin-transform-es2015-classes"),
"transform-es2015-computed-properties": require("@babel/plugin-transform-es2015-computed-properties"),
"transform-es2015-destructuring": require("@babel/plugin-transform-es2015-destructuring"),
"transform-es2015-duplicate-keys": require("@babel/plugin-transform-es2015-duplicate-keys"),
"transform-es2015-for-of": require("@babel/plugin-transform-es2015-for-of"),
"transform-es2015-function-name": require("@babel/plugin-transform-es2015-function-name"),
"transform-es2015-literals": require("@babel/plugin-transform-es2015-literals"),
"transform-es2015-modules-amd": require("@babel/plugin-transform-es2015-modules-amd"),
"transform-es2015-modules-commonjs": require("@babel/plugin-transform-es2015-modules-commonjs"),
"transform-es2015-modules-systemjs": require("@babel/plugin-transform-es2015-modules-systemjs"),
"transform-es2015-modules-umd": require("@babel/plugin-transform-es2015-modules-umd"),
"transform-es2015-object-super": require("@babel/plugin-transform-es2015-object-super"),
"transform-es2015-parameters": require("@babel/plugin-transform-es2015-parameters"),
"transform-es2015-shorthand-properties": require("@babel/plugin-transform-es2015-shorthand-properties"),
"transform-es2015-spread": require("@babel/plugin-transform-es2015-spread"),
"transform-es2015-sticky-regex": require("@babel/plugin-transform-es2015-sticky-regex"),
"transform-es2015-template-literals": require("@babel/plugin-transform-es2015-template-literals"),
"transform-es2015-typeof-symbol": require("@babel/plugin-transform-es2015-typeof-symbol"),
"transform-es2015-unicode-regex": require("@babel/plugin-transform-es2015-unicode-regex"),
"transform-exponentiation-operator": require("@babel/plugin-transform-exponentiation-operator"),
"transform-new-target": require("@babel/plugin-transform-new-target"),
"transform-object-rest-spread": require("@babel/plugin-transform-object-rest-spread"),
"transform-optional-catch-binding": require("@babel/plugin-transform-optional-catch-binding"),
"transform-regenerator": require("@babel/plugin-transform-regenerator"),
"transform-unicode-property-regex": require("babel-plugin-transform-unicode-property-regex"),
};

View File

@ -38,7 +38,7 @@ export const logEntryPolyfills = (
if (!importPolyfillIncluded) {
console.log(
`
[${filename}] \`import 'babel-polyfill'\` was not found.`,
[${filename}] \`import '@babel/polyfill'\` was not found.`,
);
return;
}
@ -52,7 +52,7 @@ export const logEntryPolyfills = (
console.log(
`
[${filename}] Replaced \`babel-polyfill\` with the following polyfill${wordEnds(
[${filename}] Replaced \`@babel/polyfill\` with the following polyfill${wordEnds(
polyfills.size,
)}:`,
);

View File

@ -211,7 +211,7 @@ export default function buildPreset(
const pluginUseBuiltIns = useBuiltIns !== false;
// NOTE: not giving spec here yet to avoid compatibility issues when
// babel-plugin-transform-es2015-modules-commonjs gets its spec mode
// transform-es2015-modules-commonjs gets its spec mode
if (modules !== false && moduleTransformations[modules]) {
plugins.push([getPlugin(moduleTransformations[modules]), { loose }]);
}
@ -227,7 +227,7 @@ export default function buildPreset(
if (debug && !hasBeenLogged) {
hasBeenLogged = true;
console.log("babel-preset-env: `DEBUG` option");
console.log("@babel/preset-env: `DEBUG` option");
console.log("\nUsing targets:");
console.log(JSON.stringify(prettifyTargets(targets), null, 2));
console.log(`\nUsing modules transform: ${modules.toString()}`);

View File

@ -11,7 +11,7 @@ type Plugin = {
type RequireType = "require" | "import";
function isPolyfillSource(value: string): boolean {
return value === "babel-polyfill";
return value === "@babel/polyfill";
}
export default function({ types: t }: { types: Object }): Plugin {
@ -45,7 +45,7 @@ export default function({ types: t }: { types: Object }): Plugin {
core: ?boolean,
): Object {
if (core) {
polyfill = `babel-polyfill/lib/core-js/modules/${polyfill}`;
polyfill = `@babel/polyfill/lib/core-js/modules/${polyfill}`;
}
if (requireType === "import") {
@ -67,7 +67,7 @@ export default function({ types: t }: { types: Object }): Plugin {
if (regenerator) {
imports.push(
createImport(
"babel-polyfill/lib/regenerator-runtime/runtime",
"@babel/polyfill/lib/regenerator-runtime/runtime",
requireType,
),
);

View File

@ -10,7 +10,7 @@ type Plugin = {
};
function isPolyfillSource(value: string): boolean {
return value === "babel-polyfill";
return value === "@babel/polyfill";
}
// function warnOnInstanceMethod() {
@ -34,12 +34,12 @@ function has(obj: Object, key: string): boolean {
// }
const modulePathMap = {
"regenerator-runtime": "babel-polyfill/lib/regenerator-runtime/runtime",
"regenerator-runtime": "@babel/polyfill/lib/regenerator-runtime/runtime",
};
const getModulePath = module => {
return (
modulePathMap[module] || `babel-polyfill/lib/core-js/modules/${module}`
modulePathMap[module] || `@babel/polyfill/lib/core-js/modules/${module}`
);
};
@ -103,7 +103,7 @@ export default function({ types: t }: { types: Object }): Plugin {
console.warn(
`
When setting \`useBuiltIns: 'usage'\`, polyfills are automatically imported when needed.
Please remove the \`import 'babel-polyfill'\` call or use \`useBuiltIns: 'entry'\` instead.`,
Please remove the \`import '@babel/polyfill'\` call or use \`useBuiltIns: 'entry'\` instead.`,
);
path.remove();
}
@ -115,7 +115,7 @@ export default function({ types: t }: { types: Object }): Plugin {
console.warn(
`
When setting \`useBuiltIns: 'usage'\`, polyfills are automatically imported when needed.
Please remove the \`require('babel-polyfill')\` call or use \`useBuiltIns: 'entry'\` instead.`,
Please remove the \`require('@babel/polyfill')\` call or use \`useBuiltIns: 'entry'\` instead.`,
);
bodyPath.remove();
}
@ -188,7 +188,7 @@ export default function({ types: t }: { types: Object }): Plugin {
// if (obj.name === "Array" && prop.name === "from") {
// addImport(
// path,
// "babel-polyfill/lib/core-js/modules/web.dom.iterable",
// "@babel/polyfill/lib/core-js/modules/web.dom.iterable",
// this.builtIns,
// );
// }

View File

@ -1,7 +1,7 @@
const chai = require("chai");
const child = require("child_process");
const fs = require("fs-extra");
const helper = require("babel-helper-fixtures");
const helper = require("@babel/helper-fixtures");
const path = require("path");
const fixtureLoc = path.join(__dirname, "debug-fixtures");
@ -44,7 +44,7 @@ const assertTest = (stdout, stderr, opts) => {
};
const buildTest = opts => {
const binLoc = require.resolve("babel-cli/bin/babel");
const binLoc = require.resolve("@babel/cli/bin/babel");
return callback => {
clear();

View File

@ -1 +1 @@
import 'babel-polyfill';
import '@babel/polyfill';

View File

@ -1,4 +1,4 @@
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -35,7 +35,7 @@ Using plugins:
Using polyfills with `entry` option:
[src/in.js] Replaced `babel-polyfill` with the following polyfills:
[src/in.js] Replaced `@babel/polyfill` with the following polyfills:
es6.typed.array-buffer { "android":"4" }
es6.typed.int8-array { "android":"4" }
es6.typed.uint8-array { "android":"4" }
@ -133,4 +133,4 @@ Using polyfills with `entry` option:
web.timers { "android":"4" }
web.immediate { "android":"4" }
web.dom.iterable { "android":"4" }
src/in.js -> lib/in.js
src/in.js -> lib/in.js

View File

@ -1,4 +1,4 @@
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -17,5 +17,5 @@ Using plugins:
Using polyfills with `entry` option:
[src/in.js] `import 'babel-polyfill'` was not found.
[src/in.js] `import '@babel/polyfill'` was not found.
src/in.js -> lib/in.js

View File

@ -1 +1 @@
import 'babel-polyfill';
import '@babel/polyfill';

View File

@ -1,7 +1,7 @@
The uglify target has been deprecated. Set the top level
option `forceAllTransforms: true` instead.
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -38,10 +38,10 @@ Using plugins:
Using polyfills with `entry` option:
[src/in.js] Replaced `babel-polyfill` with the following polyfills:
[src/in.js] Replaced `@babel/polyfill` with the following polyfills:
es7.string.pad-start { "chrome":"55" }
es7.string.pad-end { "chrome":"55" }
web.timers { "chrome":"55" }
web.immediate { "chrome":"55" }
web.dom.iterable { "chrome":"55" }
src/in.js -> lib/in.js
src/in.js -> lib/in.js

View File

@ -1 +1 @@
import 'babel-polyfill';
import '@babel/polyfill';

View File

@ -1,4 +1,4 @@
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -37,7 +37,7 @@ Using plugins:
Using polyfills with `entry` option:
[src/in.js] Replaced `babel-polyfill` with the following polyfills:
[src/in.js] Replaced `@babel/polyfill` with the following polyfills:
es6.typed.array-buffer { "ie":"10", "node":"6" }
es6.typed.int8-array { "ie":"10", "node":"6" }
es6.typed.uint8-array { "ie":"10", "node":"6" }
@ -135,4 +135,4 @@ Using polyfills with `entry` option:
web.timers { "chrome":"54", "ie":"10", "node":"6" }
web.immediate { "chrome":"54", "ie":"10", "node":"6" }
web.dom.iterable { "chrome":"54", "ie":"10", "node":"6" }
src/in.js -> lib/in.js
src/in.js -> lib/in.js

View File

@ -1 +1 @@
import 'babel-polyfill';
import '@babel/polyfill';

View File

@ -5,7 +5,7 @@ Warning, the following targets are using a decimal version:
We recommend using a string for minor/patch versions to avoid numbers like 6.10
getting parsed as 6.1, which can lead to unexpected behavior.
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -30,7 +30,7 @@ Using plugins:
Using polyfills with `entry` option:
[src/in.js] Replaced `babel-polyfill` with the following polyfills:
[src/in.js] Replaced `@babel/polyfill` with the following polyfills:
es6.typed.array-buffer { "electron":"0.36" }
es6.typed.data-view { "electron":"0.36" }
es6.typed.int8-array { "electron":"0.36" }

View File

@ -1 +1 @@
import 'babel-polyfill';
import '@babel/polyfill';

View File

@ -1,4 +1,4 @@
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -35,10 +35,10 @@ Using plugins:
Using polyfills with `entry` option:
[src/in.js] Replaced `babel-polyfill` with the following polyfills:
[src/in.js] Replaced `@babel/polyfill` with the following polyfills:
es7.string.pad-start { "chrome":"55" }
es7.string.pad-end { "chrome":"55" }
web.timers { "chrome":"55" }
web.immediate { "chrome":"55" }
web.dom.iterable { "chrome":"55" }
src/in.js -> lib/in.js
src/in.js -> lib/in.js

View File

@ -5,7 +5,7 @@ Warning, the following targets are using a decimal version:
We recommend using a string for minor/patch versions to avoid numbers like 6.10
getting parsed as 6.1, which can lead to unexpected behavior.
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{

View File

@ -1 +1 @@
import 'babel-polyfill';
import '@babel/polyfill';

View File

@ -1,4 +1,4 @@
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -15,9 +15,9 @@ Using plugins:
Using polyfills with `entry` option:
[src/in.js] Replaced `babel-polyfill` with the following polyfills:
[src/in.js] Replaced `@babel/polyfill` with the following polyfills:
es7.promise.finally { "chrome":"60" }
web.timers { "chrome":"60" }
web.immediate { "chrome":"60" }
web.dom.iterable { "chrome":"60" }
src/in.js -> lib/in.js
src/in.js -> lib/in.js

View File

@ -1 +1 @@
import 'babel-polyfill';
import '@babel/polyfill';

View File

@ -1,4 +1,4 @@
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{}
@ -37,7 +37,7 @@ Using plugins:
Using polyfills with `entry` option:
[src/in.js] Replaced `babel-polyfill` with the following polyfills:
[src/in.js] Replaced `@babel/polyfill` with the following polyfills:
es6.typed.array-buffer {}
es6.typed.data-view {}
es6.typed.int8-array {}
@ -137,4 +137,4 @@ Using polyfills with `entry` option:
web.timers {}
web.immediate {}
web.dom.iterable {}
src/in.js -> lib/in.js
src/in.js -> lib/in.js

View File

@ -1 +1 @@
import 'babel-polyfill';
import '@babel/polyfill';

View File

@ -1,4 +1,4 @@
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -40,7 +40,7 @@ Using plugins:
Using polyfills with `entry` option:
[src/in.js] Replaced `babel-polyfill` with the following polyfills:
[src/in.js] Replaced `@babel/polyfill` with the following polyfills:
es6.typed.array-buffer { "ie":"10", "ios":"9", "safari":"7" }
es6.typed.int8-array { "ie":"10", "ios":"9", "safari":"7" }
es6.typed.uint8-array { "ie":"10", "ios":"9", "safari":"7" }
@ -138,4 +138,4 @@ Using polyfills with `entry` option:
web.timers { "chrome":"54", "edge":"13", "firefox":"49", "ie":"10", "ios":"9", "safari":"7" }
web.immediate { "chrome":"54", "edge":"13", "firefox":"49", "ie":"10", "ios":"9", "safari":"7" }
web.dom.iterable { "chrome":"54", "edge":"13", "firefox":"49", "ie":"10", "ios":"9", "safari":"7" }
src/in.js -> lib/in.js
src/in.js -> lib/in.js

View File

@ -1,4 +1,4 @@
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -40,4 +40,4 @@ Using polyfills with `usage` option:
src/in.js -> lib/in.js
[src/in2.js] Based on your code and targets, none were added.
src/in2.js -> lib/in2.js
src/in2.js -> lib/in2.js

View File

@ -1 +1 @@
import 'babel-polyfill';
import '@babel/polyfill';

View File

@ -1,2 +1,2 @@
When setting `useBuiltIns: 'usage'`, polyfills are automatically imported when needed.
Please remove the `import 'babel-polyfill'` call or use `useBuiltIns: 'entry'` instead.
Please remove the `import '@babel/polyfill'` call or use `useBuiltIns: 'entry'` instead.

View File

@ -1,4 +1,4 @@
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -13,4 +13,4 @@ Using plugins:
Using polyfills with `usage` option:
[src/in.js] Based on your code and targets, none were added.
src/in.js -> lib/in.js
src/in.js -> lib/in.js

View File

@ -1,4 +1,4 @@
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -44,4 +44,4 @@ src/in.js -> lib/in.js
[src/in2.js] Added following polyfills:
regenerator-runtime { "chrome":"52", "firefox":"50", "ie":"11" }
web.dom.iterable { "chrome":"52", "firefox":"50", "ie":"11" }
src/in2.js -> lib/in2.js
src/in2.js -> lib/in2.js

View File

@ -1 +1 @@
import 'babel-polyfill';
import '@babel/polyfill';

View File

@ -6,7 +6,7 @@ Warning, the following targets are using a decimal version:
We recommend using a string for minor/patch versions to avoid numbers like 6.10
getting parsed as 6.1, which can lead to unexpected behavior.
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -46,7 +46,7 @@ Using plugins:
Using polyfills with `entry` option:
[src/in.js] Replaced `babel-polyfill` with the following polyfills:
[src/in.js] Replaced `@babel/polyfill` with the following polyfills:
es6.typed.array-buffer { "electron":"0.36", "ie":"10", "node":"6.1" }
es6.typed.data-view { "electron":"0.36" }
es6.typed.int8-array { "electron":"0.36", "ie":"10", "node":"6.1" }
@ -145,4 +145,4 @@ Using polyfills with `entry` option:
web.timers { "chrome":"54", "electron":"0.36", "ie":"10", "node":"6.1" }
web.immediate { "chrome":"54", "electron":"0.36", "ie":"10", "node":"6.1" }
web.dom.iterable { "chrome":"54", "electron":"0.36", "ie":"10", "node":"6.1" }
src/in.js -> lib/in.js
src/in.js -> lib/in.js

View File

@ -1 +1 @@
import 'babel-polyfill';
import '@babel/polyfill';

View File

@ -1,4 +1,4 @@
babel-preset-env: `DEBUG` option
@babel/preset-env: `DEBUG` option
Using targets:
{
@ -37,7 +37,7 @@ Using plugins:
Using polyfills with `entry` option:
[src/in.js] Replaced `babel-polyfill` with the following polyfills:
[src/in.js] Replaced `@babel/polyfill` with the following polyfills:
es6.typed.array-buffer { "ie":"10" }
es6.typed.int8-array { "ie":"10" }
es6.typed.uint8-array { "ie":"10" }
@ -135,4 +135,4 @@ Using polyfills with `entry` option:
web.timers { "chrome":"54", "ie":"10", "node":"6.10" }
web.immediate { "chrome":"54", "ie":"10", "node":"6.10" }
web.dom.iterable { "chrome":"54", "ie":"10", "node":"6.10" }
src/in.js -> lib/in.js
src/in.js -> lib/in.js

View File

@ -1,3 +1,3 @@
import runner from "babel-helper-plugin-test-runner";
import runner from "@babel/helper-plugin-test-runner";
runner(__dirname);

View File

@ -1,3 +1,3 @@
import "babel-polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
Symbol.iterator in arr;
import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
Symbol.iterator in arr;

View File

@ -1,3 +1,3 @@
import "babel-polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
arr[Symbol.iterator]();
import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
arr[Symbol.iterator]();

View File

@ -1,5 +1,5 @@
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
function* a() {
yield* 1;
}
}

View File

@ -1 +1 @@
import "babel-polyfill";
import "@babel/polyfill";

View File

@ -1,2 +1,2 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.data-view";
import "babel-polyfill/lib/core-js/modules/es6.reflect.apply";
import "@babel/polyfill/lib/core-js/modules/es6.typed.data-view";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.apply";

View File

@ -1 +1 @@
import "babel-polyfill";
import "@babel/polyfill";

View File

@ -1 +1 @@
import "babel-polyfill";
import "@babel/polyfill";

View File

@ -1 +1 @@
import "babel-polyfill/lib/regenerator-runtime/runtime";
import "@babel/polyfill/lib/regenerator-runtime/runtime";

View File

@ -1,19 +1,19 @@
import "babel-polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.copy-within";
import "babel-polyfill/lib/core-js/modules/es6.string.ends-with";
import "babel-polyfill/lib/core-js/modules/es6.string.code-point-at";
import "babel-polyfill/lib/core-js/modules/es6.string.starts-with";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es6.array.fill";
import "babel-polyfill/lib/core-js/modules/es6.array.find-index";
import "babel-polyfill/lib/core-js/modules/es6.array.find";
import "babel-polyfill/lib/core-js/modules/es7.array.includes";
import "babel-polyfill/lib/core-js/modules/es6.string.includes";
import "babel-polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.array.from";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "@babel/polyfill/lib/core-js/modules/es6.array.copy-within";
import "@babel/polyfill/lib/core-js/modules/es6.string.ends-with";
import "@babel/polyfill/lib/core-js/modules/es6.string.code-point-at";
import "@babel/polyfill/lib/core-js/modules/es6.string.starts-with";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es6.array.fill";
import "@babel/polyfill/lib/core-js/modules/es6.array.find-index";
import "@babel/polyfill/lib/core-js/modules/es6.array.find";
import "@babel/polyfill/lib/core-js/modules/es7.array.includes";
import "@babel/polyfill/lib/core-js/modules/es6.string.includes";
import "@babel/polyfill/lib/core-js/modules/es6.map";
import "@babel/polyfill/lib/core-js/modules/es6.array.from";
Array.from; // static function
Map; // top level built-in
@ -47,4 +47,4 @@ j["search"]; // computed with template
k[asdf3]; // computed with concat strings
var _k2 = k,
_a = _k2[asdf2]; // computed
_a = _k2[asdf2]; // computed

View File

@ -1,9 +1,9 @@
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.array.from";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "@babel/polyfill/lib/core-js/modules/es6.map";
import "@babel/polyfill/lib/core-js/modules/es6.array.from";
Array.from; // static method
Map; // built-in
@ -31,4 +31,4 @@ G.assign; // static method
function H(WeakMap) {
var blah = new WeakMap();
} // shadowed
} // shadowed

View File

@ -1,5 +1,5 @@
import "babel-polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/regenerator-runtime/runtime";
import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "@babel/polyfill/lib/regenerator-runtime/runtime";
var a = function () {
var _ref = _asyncToGenerator(

View File

@ -1,4 +1,4 @@
import "babel-polyfill/lib/regenerator-runtime/runtime";
import "@babel/polyfill/lib/regenerator-runtime/runtime";
var _marked =
/*#__PURE__*/

View File

@ -1,4 +1,4 @@
import "babel-polyfill";
import "babel-polyfill";
require("babel-polyfill");
require("babel-polyfill");
import "@babel/polyfill";
import "@babel/polyfill";
require("@babel/polyfill");
require("@babel/polyfill");

View File

@ -1,5 +1,5 @@
"use strict";
require("babel-polyfill/lib/core-js/modules/es6.promise");
require("@babel/polyfill/lib/core-js/modules/es6.promise");
Promise;
Promise;

View File

@ -1,3 +1,3 @@
if (parseInt(process.version.slice(1)) > 5) {
require('babel-polyfill');
require('@babel/polyfill');
}

View File

@ -1,3 +1,3 @@
import "babel-polyfill";
import "@babel/polyfill";
a ** b;

View File

@ -1,9 +1,9 @@
import "babel-polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
a ** b;
import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
a ** b;

View File

@ -1 +1 @@
import "babel-polyfill";
import "@babel/polyfill";

View File

@ -1,7 +1,7 @@
import "babel-polyfill";
import "@babel/polyfill";
async function a() {
await 1;
}
(() => {})
(() => {})

View File

@ -1,11 +1,11 @@
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/core-js/modules/es6.map";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "@babel/polyfill/lib/core-js/modules/es6.map";
async function a() {
await 1;
}
(function () {});
(function () {});

View File

@ -1 +1 @@
import "babel-polyfill";
import "@babel/polyfill";

View File

@ -1,98 +1,98 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "babel-polyfill/lib/core-js/modules/es6.typed.data-view";
import "babel-polyfill/lib/core-js/modules/es6.typed.int8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float64-array";
import "babel-polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set";
import "babel-polyfill/lib/core-js/modules/es6.weak-map";
import "babel-polyfill/lib/core-js/modules/es6.weak-set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.apply";
import "babel-polyfill/lib/core-js/modules/es6.reflect.construct";
import "babel-polyfill/lib/core-js/modules/es6.reflect.define-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.reflect.has";
import "babel-polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "babel-polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.object.freeze";
import "babel-polyfill/lib/core-js/modules/es6.object.seal";
import "babel-polyfill/lib/core-js/modules/es6.object.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.object.is-frozen";
import "babel-polyfill/lib/core-js/modules/es6.object.is-sealed";
import "babel-polyfill/lib/core-js/modules/es6.object.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.object.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.object.keys";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-names";
import "babel-polyfill/lib/core-js/modules/es6.object.assign";
import "babel-polyfill/lib/core-js/modules/es6.object.is";
import "babel-polyfill/lib/core-js/modules/es6.object.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.function.name";
import "babel-polyfill/lib/core-js/modules/es6.string.raw";
import "babel-polyfill/lib/core-js/modules/es6.string.from-code-point";
import "babel-polyfill/lib/core-js/modules/es6.string.code-point-at";
import "babel-polyfill/lib/core-js/modules/es6.string.repeat";
import "babel-polyfill/lib/core-js/modules/es6.string.starts-with";
import "babel-polyfill/lib/core-js/modules/es6.string.ends-with";
import "babel-polyfill/lib/core-js/modules/es6.string.includes";
import "babel-polyfill/lib/core-js/modules/es6.regexp.flags";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.from";
import "babel-polyfill/lib/core-js/modules/es6.array.of";
import "babel-polyfill/lib/core-js/modules/es6.array.copy-within";
import "babel-polyfill/lib/core-js/modules/es6.array.find";
import "babel-polyfill/lib/core-js/modules/es6.array.find-index";
import "babel-polyfill/lib/core-js/modules/es6.array.fill";
import "babel-polyfill/lib/core-js/modules/es6.array.iterator";
import "babel-polyfill/lib/core-js/modules/es6.number.is-finite";
import "babel-polyfill/lib/core-js/modules/es6.number.is-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-nan";
import "babel-polyfill/lib/core-js/modules/es6.number.epsilon";
import "babel-polyfill/lib/core-js/modules/es6.number.min-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.max-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-float";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-int";
import "babel-polyfill/lib/core-js/modules/es6.math.acosh";
import "babel-polyfill/lib/core-js/modules/es6.math.asinh";
import "babel-polyfill/lib/core-js/modules/es6.math.atanh";
import "babel-polyfill/lib/core-js/modules/es6.math.cbrt";
import "babel-polyfill/lib/core-js/modules/es6.math.clz32";
import "babel-polyfill/lib/core-js/modules/es6.math.cosh";
import "babel-polyfill/lib/core-js/modules/es6.math.expm1";
import "babel-polyfill/lib/core-js/modules/es6.math.fround";
import "babel-polyfill/lib/core-js/modules/es6.math.hypot";
import "babel-polyfill/lib/core-js/modules/es6.math.imul";
import "babel-polyfill/lib/core-js/modules/es6.math.log1p";
import "babel-polyfill/lib/core-js/modules/es6.math.log10";
import "babel-polyfill/lib/core-js/modules/es6.math.log2";
import "babel-polyfill/lib/core-js/modules/es6.math.sign";
import "babel-polyfill/lib/core-js/modules/es6.math.sinh";
import "babel-polyfill/lib/core-js/modules/es6.math.tanh";
import "babel-polyfill/lib/core-js/modules/es6.math.trunc";
import "babel-polyfill/lib/core-js/modules/es7.array.includes";
import "babel-polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
import "@babel/polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "@babel/polyfill/lib/core-js/modules/es6.typed.data-view";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int8-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int16-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.float32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.float64-array";
import "@babel/polyfill/lib/core-js/modules/es6.map";
import "@babel/polyfill/lib/core-js/modules/es6.set";
import "@babel/polyfill/lib/core-js/modules/es6.weak-map";
import "@babel/polyfill/lib/core-js/modules/es6.weak-set";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.apply";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.construct";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.define-property";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.has";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.set";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "@babel/polyfill/lib/core-js/modules/es6.object.freeze";
import "@babel/polyfill/lib/core-js/modules/es6.object.seal";
import "@babel/polyfill/lib/core-js/modules/es6.object.prevent-extensions";
import "@babel/polyfill/lib/core-js/modules/es6.object.is-frozen";
import "@babel/polyfill/lib/core-js/modules/es6.object.is-sealed";
import "@babel/polyfill/lib/core-js/modules/es6.object.is-extensible";
import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor";
import "@babel/polyfill/lib/core-js/modules/es6.object.get-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.object.keys";
import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-names";
import "@babel/polyfill/lib/core-js/modules/es6.object.assign";
import "@babel/polyfill/lib/core-js/modules/es6.object.is";
import "@babel/polyfill/lib/core-js/modules/es6.object.set-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.function.name";
import "@babel/polyfill/lib/core-js/modules/es6.string.raw";
import "@babel/polyfill/lib/core-js/modules/es6.string.from-code-point";
import "@babel/polyfill/lib/core-js/modules/es6.string.code-point-at";
import "@babel/polyfill/lib/core-js/modules/es6.string.repeat";
import "@babel/polyfill/lib/core-js/modules/es6.string.starts-with";
import "@babel/polyfill/lib/core-js/modules/es6.string.ends-with";
import "@babel/polyfill/lib/core-js/modules/es6.string.includes";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.flags";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "@babel/polyfill/lib/core-js/modules/es6.array.from";
import "@babel/polyfill/lib/core-js/modules/es6.array.of";
import "@babel/polyfill/lib/core-js/modules/es6.array.copy-within";
import "@babel/polyfill/lib/core-js/modules/es6.array.find";
import "@babel/polyfill/lib/core-js/modules/es6.array.find-index";
import "@babel/polyfill/lib/core-js/modules/es6.array.fill";
import "@babel/polyfill/lib/core-js/modules/es6.array.iterator";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-finite";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-safe-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-nan";
import "@babel/polyfill/lib/core-js/modules/es6.number.epsilon";
import "@babel/polyfill/lib/core-js/modules/es6.number.min-safe-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.max-safe-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.parse-float";
import "@babel/polyfill/lib/core-js/modules/es6.number.parse-int";
import "@babel/polyfill/lib/core-js/modules/es6.math.acosh";
import "@babel/polyfill/lib/core-js/modules/es6.math.asinh";
import "@babel/polyfill/lib/core-js/modules/es6.math.atanh";
import "@babel/polyfill/lib/core-js/modules/es6.math.cbrt";
import "@babel/polyfill/lib/core-js/modules/es6.math.clz32";
import "@babel/polyfill/lib/core-js/modules/es6.math.cosh";
import "@babel/polyfill/lib/core-js/modules/es6.math.expm1";
import "@babel/polyfill/lib/core-js/modules/es6.math.fround";
import "@babel/polyfill/lib/core-js/modules/es6.math.hypot";
import "@babel/polyfill/lib/core-js/modules/es6.math.imul";
import "@babel/polyfill/lib/core-js/modules/es6.math.log1p";
import "@babel/polyfill/lib/core-js/modules/es6.math.log10";
import "@babel/polyfill/lib/core-js/modules/es6.math.log2";
import "@babel/polyfill/lib/core-js/modules/es6.math.sign";
import "@babel/polyfill/lib/core-js/modules/es6.math.sinh";
import "@babel/polyfill/lib/core-js/modules/es6.math.tanh";
import "@babel/polyfill/lib/core-js/modules/es6.math.trunc";
import "@babel/polyfill/lib/core-js/modules/es7.array.includes";
import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";

View File

@ -1 +1 @@
import "babel-polyfill";
import "@babel/polyfill";

View File

@ -1,97 +1,97 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "babel-polyfill/lib/core-js/modules/es6.typed.int8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float64-array";
import "babel-polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set";
import "babel-polyfill/lib/core-js/modules/es6.weak-map";
import "babel-polyfill/lib/core-js/modules/es6.weak-set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.apply";
import "babel-polyfill/lib/core-js/modules/es6.reflect.construct";
import "babel-polyfill/lib/core-js/modules/es6.reflect.define-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.reflect.has";
import "babel-polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "babel-polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.object.freeze";
import "babel-polyfill/lib/core-js/modules/es6.object.seal";
import "babel-polyfill/lib/core-js/modules/es6.object.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.object.is-frozen";
import "babel-polyfill/lib/core-js/modules/es6.object.is-sealed";
import "babel-polyfill/lib/core-js/modules/es6.object.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.object.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.object.keys";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-names";
import "babel-polyfill/lib/core-js/modules/es6.object.assign";
import "babel-polyfill/lib/core-js/modules/es6.object.is";
import "babel-polyfill/lib/core-js/modules/es6.function.name";
import "babel-polyfill/lib/core-js/modules/es6.string.raw";
import "babel-polyfill/lib/core-js/modules/es6.string.from-code-point";
import "babel-polyfill/lib/core-js/modules/es6.string.code-point-at";
import "babel-polyfill/lib/core-js/modules/es6.string.repeat";
import "babel-polyfill/lib/core-js/modules/es6.string.starts-with";
import "babel-polyfill/lib/core-js/modules/es6.string.ends-with";
import "babel-polyfill/lib/core-js/modules/es6.string.includes";
import "babel-polyfill/lib/core-js/modules/es6.regexp.flags";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.from";
import "babel-polyfill/lib/core-js/modules/es6.array.of";
import "babel-polyfill/lib/core-js/modules/es6.array.copy-within";
import "babel-polyfill/lib/core-js/modules/es6.array.find";
import "babel-polyfill/lib/core-js/modules/es6.array.find-index";
import "babel-polyfill/lib/core-js/modules/es6.array.fill";
import "babel-polyfill/lib/core-js/modules/es6.array.iterator";
import "babel-polyfill/lib/core-js/modules/es6.number.is-finite";
import "babel-polyfill/lib/core-js/modules/es6.number.is-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-nan";
import "babel-polyfill/lib/core-js/modules/es6.number.epsilon";
import "babel-polyfill/lib/core-js/modules/es6.number.min-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.max-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-float";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-int";
import "babel-polyfill/lib/core-js/modules/es6.math.acosh";
import "babel-polyfill/lib/core-js/modules/es6.math.asinh";
import "babel-polyfill/lib/core-js/modules/es6.math.atanh";
import "babel-polyfill/lib/core-js/modules/es6.math.cbrt";
import "babel-polyfill/lib/core-js/modules/es6.math.clz32";
import "babel-polyfill/lib/core-js/modules/es6.math.cosh";
import "babel-polyfill/lib/core-js/modules/es6.math.expm1";
import "babel-polyfill/lib/core-js/modules/es6.math.fround";
import "babel-polyfill/lib/core-js/modules/es6.math.hypot";
import "babel-polyfill/lib/core-js/modules/es6.math.imul";
import "babel-polyfill/lib/core-js/modules/es6.math.log1p";
import "babel-polyfill/lib/core-js/modules/es6.math.log10";
import "babel-polyfill/lib/core-js/modules/es6.math.log2";
import "babel-polyfill/lib/core-js/modules/es6.math.sign";
import "babel-polyfill/lib/core-js/modules/es6.math.sinh";
import "babel-polyfill/lib/core-js/modules/es6.math.tanh";
import "babel-polyfill/lib/core-js/modules/es6.math.trunc";
import "babel-polyfill/lib/core-js/modules/es7.array.includes";
import "babel-polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime";
import "@babel/polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int8-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int16-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.float32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.float64-array";
import "@babel/polyfill/lib/core-js/modules/es6.map";
import "@babel/polyfill/lib/core-js/modules/es6.set";
import "@babel/polyfill/lib/core-js/modules/es6.weak-map";
import "@babel/polyfill/lib/core-js/modules/es6.weak-set";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.apply";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.construct";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.define-property";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.has";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.set";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "@babel/polyfill/lib/core-js/modules/es6.object.freeze";
import "@babel/polyfill/lib/core-js/modules/es6.object.seal";
import "@babel/polyfill/lib/core-js/modules/es6.object.prevent-extensions";
import "@babel/polyfill/lib/core-js/modules/es6.object.is-frozen";
import "@babel/polyfill/lib/core-js/modules/es6.object.is-sealed";
import "@babel/polyfill/lib/core-js/modules/es6.object.is-extensible";
import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor";
import "@babel/polyfill/lib/core-js/modules/es6.object.get-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.object.keys";
import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-names";
import "@babel/polyfill/lib/core-js/modules/es6.object.assign";
import "@babel/polyfill/lib/core-js/modules/es6.object.is";
import "@babel/polyfill/lib/core-js/modules/es6.function.name";
import "@babel/polyfill/lib/core-js/modules/es6.string.raw";
import "@babel/polyfill/lib/core-js/modules/es6.string.from-code-point";
import "@babel/polyfill/lib/core-js/modules/es6.string.code-point-at";
import "@babel/polyfill/lib/core-js/modules/es6.string.repeat";
import "@babel/polyfill/lib/core-js/modules/es6.string.starts-with";
import "@babel/polyfill/lib/core-js/modules/es6.string.ends-with";
import "@babel/polyfill/lib/core-js/modules/es6.string.includes";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.flags";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "@babel/polyfill/lib/core-js/modules/es6.array.from";
import "@babel/polyfill/lib/core-js/modules/es6.array.of";
import "@babel/polyfill/lib/core-js/modules/es6.array.copy-within";
import "@babel/polyfill/lib/core-js/modules/es6.array.find";
import "@babel/polyfill/lib/core-js/modules/es6.array.find-index";
import "@babel/polyfill/lib/core-js/modules/es6.array.fill";
import "@babel/polyfill/lib/core-js/modules/es6.array.iterator";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-finite";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-safe-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-nan";
import "@babel/polyfill/lib/core-js/modules/es6.number.epsilon";
import "@babel/polyfill/lib/core-js/modules/es6.number.min-safe-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.max-safe-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.parse-float";
import "@babel/polyfill/lib/core-js/modules/es6.number.parse-int";
import "@babel/polyfill/lib/core-js/modules/es6.math.acosh";
import "@babel/polyfill/lib/core-js/modules/es6.math.asinh";
import "@babel/polyfill/lib/core-js/modules/es6.math.atanh";
import "@babel/polyfill/lib/core-js/modules/es6.math.cbrt";
import "@babel/polyfill/lib/core-js/modules/es6.math.clz32";
import "@babel/polyfill/lib/core-js/modules/es6.math.cosh";
import "@babel/polyfill/lib/core-js/modules/es6.math.expm1";
import "@babel/polyfill/lib/core-js/modules/es6.math.fround";
import "@babel/polyfill/lib/core-js/modules/es6.math.hypot";
import "@babel/polyfill/lib/core-js/modules/es6.math.imul";
import "@babel/polyfill/lib/core-js/modules/es6.math.log1p";
import "@babel/polyfill/lib/core-js/modules/es6.math.log10";
import "@babel/polyfill/lib/core-js/modules/es6.math.log2";
import "@babel/polyfill/lib/core-js/modules/es6.math.sign";
import "@babel/polyfill/lib/core-js/modules/es6.math.sinh";
import "@babel/polyfill/lib/core-js/modules/es6.math.tanh";
import "@babel/polyfill/lib/core-js/modules/es6.math.trunc";
import "@babel/polyfill/lib/core-js/modules/es7.array.includes";
import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "@babel/polyfill/lib/regenerator-runtime/runtime";

View File

@ -1 +1 @@
import "babel-polyfill";
import "@babel/polyfill";

View File

@ -1,7 +1,7 @@
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "@babel/polyfill/lib/core-js/modules/es6.map";
import "@babel/polyfill/lib/core-js/modules/es6.set";

View File

@ -1,12 +1,12 @@
"use strict";
require("babel-polyfill/lib/core-js/modules/es6.symbol");
require("@babel/polyfill/lib/core-js/modules/es6.symbol");
require("babel-polyfill/lib/core-js/modules/es6.promise");
require("@babel/polyfill/lib/core-js/modules/es6.promise");
require("babel-polyfill/lib/regenerator-runtime/runtime");
require("@babel/polyfill/lib/regenerator-runtime/runtime");
require("babel-polyfill/lib/core-js/modules/es6.object.assign");
require("@babel/polyfill/lib/core-js/modules/es6.object.assign");
var agf = function () {
var _ref = _asyncGenerator.wrap(

View File

@ -1,3 +1,3 @@
import "babel-polyfill";
import "@babel/polyfill";
const a = 1;

View File

@ -1,7 +1,7 @@
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime";
var a = 1;
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "@babel/polyfill/lib/regenerator-runtime/runtime";
var a = 1;

View File

@ -1 +1 @@
import "babel-polyfill";
import "@babel/polyfill";

View File

@ -1,99 +1,99 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "babel-polyfill/lib/core-js/modules/es6.typed.data-view";
import "babel-polyfill/lib/core-js/modules/es6.typed.int8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float64-array";
import "babel-polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set";
import "babel-polyfill/lib/core-js/modules/es6.weak-map";
import "babel-polyfill/lib/core-js/modules/es6.weak-set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.apply";
import "babel-polyfill/lib/core-js/modules/es6.reflect.construct";
import "babel-polyfill/lib/core-js/modules/es6.reflect.define-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.reflect.has";
import "babel-polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "babel-polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.object.freeze";
import "babel-polyfill/lib/core-js/modules/es6.object.seal";
import "babel-polyfill/lib/core-js/modules/es6.object.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.object.is-frozen";
import "babel-polyfill/lib/core-js/modules/es6.object.is-sealed";
import "babel-polyfill/lib/core-js/modules/es6.object.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.object.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.object.keys";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-names";
import "babel-polyfill/lib/core-js/modules/es6.object.assign";
import "babel-polyfill/lib/core-js/modules/es6.object.is";
import "babel-polyfill/lib/core-js/modules/es6.object.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.function.name";
import "babel-polyfill/lib/core-js/modules/es6.string.raw";
import "babel-polyfill/lib/core-js/modules/es6.string.from-code-point";
import "babel-polyfill/lib/core-js/modules/es6.string.code-point-at";
import "babel-polyfill/lib/core-js/modules/es6.string.repeat";
import "babel-polyfill/lib/core-js/modules/es6.string.starts-with";
import "babel-polyfill/lib/core-js/modules/es6.string.ends-with";
import "babel-polyfill/lib/core-js/modules/es6.string.includes";
import "babel-polyfill/lib/core-js/modules/es6.regexp.flags";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.from";
import "babel-polyfill/lib/core-js/modules/es6.array.of";
import "babel-polyfill/lib/core-js/modules/es6.array.copy-within";
import "babel-polyfill/lib/core-js/modules/es6.array.find";
import "babel-polyfill/lib/core-js/modules/es6.array.find-index";
import "babel-polyfill/lib/core-js/modules/es6.array.fill";
import "babel-polyfill/lib/core-js/modules/es6.array.iterator";
import "babel-polyfill/lib/core-js/modules/es6.number.is-finite";
import "babel-polyfill/lib/core-js/modules/es6.number.is-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-nan";
import "babel-polyfill/lib/core-js/modules/es6.number.epsilon";
import "babel-polyfill/lib/core-js/modules/es6.number.min-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.max-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-float";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-int";
import "babel-polyfill/lib/core-js/modules/es6.math.acosh";
import "babel-polyfill/lib/core-js/modules/es6.math.asinh";
import "babel-polyfill/lib/core-js/modules/es6.math.atanh";
import "babel-polyfill/lib/core-js/modules/es6.math.cbrt";
import "babel-polyfill/lib/core-js/modules/es6.math.clz32";
import "babel-polyfill/lib/core-js/modules/es6.math.cosh";
import "babel-polyfill/lib/core-js/modules/es6.math.expm1";
import "babel-polyfill/lib/core-js/modules/es6.math.fround";
import "babel-polyfill/lib/core-js/modules/es6.math.hypot";
import "babel-polyfill/lib/core-js/modules/es6.math.imul";
import "babel-polyfill/lib/core-js/modules/es6.math.log1p";
import "babel-polyfill/lib/core-js/modules/es6.math.log10";
import "babel-polyfill/lib/core-js/modules/es6.math.log2";
import "babel-polyfill/lib/core-js/modules/es6.math.sign";
import "babel-polyfill/lib/core-js/modules/es6.math.sinh";
import "babel-polyfill/lib/core-js/modules/es6.math.tanh";
import "babel-polyfill/lib/core-js/modules/es6.math.trunc";
import "babel-polyfill/lib/core-js/modules/es7.array.includes";
import "babel-polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime";
import "@babel/polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "@babel/polyfill/lib/core-js/modules/es6.typed.data-view";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int8-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int16-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.float32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.float64-array";
import "@babel/polyfill/lib/core-js/modules/es6.map";
import "@babel/polyfill/lib/core-js/modules/es6.set";
import "@babel/polyfill/lib/core-js/modules/es6.weak-map";
import "@babel/polyfill/lib/core-js/modules/es6.weak-set";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.apply";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.construct";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.define-property";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.has";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.set";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "@babel/polyfill/lib/core-js/modules/es6.object.freeze";
import "@babel/polyfill/lib/core-js/modules/es6.object.seal";
import "@babel/polyfill/lib/core-js/modules/es6.object.prevent-extensions";
import "@babel/polyfill/lib/core-js/modules/es6.object.is-frozen";
import "@babel/polyfill/lib/core-js/modules/es6.object.is-sealed";
import "@babel/polyfill/lib/core-js/modules/es6.object.is-extensible";
import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor";
import "@babel/polyfill/lib/core-js/modules/es6.object.get-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.object.keys";
import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-names";
import "@babel/polyfill/lib/core-js/modules/es6.object.assign";
import "@babel/polyfill/lib/core-js/modules/es6.object.is";
import "@babel/polyfill/lib/core-js/modules/es6.object.set-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.function.name";
import "@babel/polyfill/lib/core-js/modules/es6.string.raw";
import "@babel/polyfill/lib/core-js/modules/es6.string.from-code-point";
import "@babel/polyfill/lib/core-js/modules/es6.string.code-point-at";
import "@babel/polyfill/lib/core-js/modules/es6.string.repeat";
import "@babel/polyfill/lib/core-js/modules/es6.string.starts-with";
import "@babel/polyfill/lib/core-js/modules/es6.string.ends-with";
import "@babel/polyfill/lib/core-js/modules/es6.string.includes";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.flags";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "@babel/polyfill/lib/core-js/modules/es6.array.from";
import "@babel/polyfill/lib/core-js/modules/es6.array.of";
import "@babel/polyfill/lib/core-js/modules/es6.array.copy-within";
import "@babel/polyfill/lib/core-js/modules/es6.array.find";
import "@babel/polyfill/lib/core-js/modules/es6.array.find-index";
import "@babel/polyfill/lib/core-js/modules/es6.array.fill";
import "@babel/polyfill/lib/core-js/modules/es6.array.iterator";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-finite";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-safe-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-nan";
import "@babel/polyfill/lib/core-js/modules/es6.number.epsilon";
import "@babel/polyfill/lib/core-js/modules/es6.number.min-safe-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.max-safe-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.parse-float";
import "@babel/polyfill/lib/core-js/modules/es6.number.parse-int";
import "@babel/polyfill/lib/core-js/modules/es6.math.acosh";
import "@babel/polyfill/lib/core-js/modules/es6.math.asinh";
import "@babel/polyfill/lib/core-js/modules/es6.math.atanh";
import "@babel/polyfill/lib/core-js/modules/es6.math.cbrt";
import "@babel/polyfill/lib/core-js/modules/es6.math.clz32";
import "@babel/polyfill/lib/core-js/modules/es6.math.cosh";
import "@babel/polyfill/lib/core-js/modules/es6.math.expm1";
import "@babel/polyfill/lib/core-js/modules/es6.math.fround";
import "@babel/polyfill/lib/core-js/modules/es6.math.hypot";
import "@babel/polyfill/lib/core-js/modules/es6.math.imul";
import "@babel/polyfill/lib/core-js/modules/es6.math.log1p";
import "@babel/polyfill/lib/core-js/modules/es6.math.log10";
import "@babel/polyfill/lib/core-js/modules/es6.math.log2";
import "@babel/polyfill/lib/core-js/modules/es6.math.sign";
import "@babel/polyfill/lib/core-js/modules/es6.math.sinh";
import "@babel/polyfill/lib/core-js/modules/es6.math.tanh";
import "@babel/polyfill/lib/core-js/modules/es6.math.trunc";
import "@babel/polyfill/lib/core-js/modules/es7.array.includes";
import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "@babel/polyfill/lib/regenerator-runtime/runtime";

View File

@ -1,2 +1,2 @@
import "babel-polyfill";
import "@babel/polyfill";
1 ** 2;

View File

@ -1,46 +1,46 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "babel-polyfill/lib/core-js/modules/es6.typed.int8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float64-array";
import "babel-polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set";
import "babel-polyfill/lib/core-js/modules/es6.weak-map";
import "babel-polyfill/lib/core-js/modules/es6.weak-set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.apply";
import "babel-polyfill/lib/core-js/modules/es6.reflect.construct";
import "babel-polyfill/lib/core-js/modules/es6.reflect.define-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.reflect.has";
import "babel-polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "babel-polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.function.name";
import "babel-polyfill/lib/core-js/modules/es6.regexp.flags";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.from";
import "babel-polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime";
Math.pow(1, 2);
import "@babel/polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int8-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int16-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.float32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.float64-array";
import "@babel/polyfill/lib/core-js/modules/es6.map";
import "@babel/polyfill/lib/core-js/modules/es6.set";
import "@babel/polyfill/lib/core-js/modules/es6.weak-map";
import "@babel/polyfill/lib/core-js/modules/es6.weak-set";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.apply";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.construct";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.define-property";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.has";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.set";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "@babel/polyfill/lib/core-js/modules/es6.function.name";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.flags";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "@babel/polyfill/lib/core-js/modules/es6.array.from";
import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "@babel/polyfill/lib/regenerator-runtime/runtime";
Math.pow(1, 2);

View File

@ -1,2 +1,2 @@
import "babel-polyfill";
import "@babel/polyfill";
1 ** 2;

View File

@ -1,32 +1,32 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "babel-polyfill/lib/core-js/modules/es6.typed.int8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float64-array";
import "babel-polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set";
import "babel-polyfill/lib/core-js/modules/es6.weak-map";
import "babel-polyfill/lib/core-js/modules/es6.weak-set";
import "babel-polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.function.name";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.from";
import "babel-polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime";
Math.pow(1, 2);
import "@babel/polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int8-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int16-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.float32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.float64-array";
import "@babel/polyfill/lib/core-js/modules/es6.map";
import "@babel/polyfill/lib/core-js/modules/es6.set";
import "@babel/polyfill/lib/core-js/modules/es6.weak-map";
import "@babel/polyfill/lib/core-js/modules/es6.weak-set";
import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "@babel/polyfill/lib/core-js/modules/es6.function.name";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "@babel/polyfill/lib/core-js/modules/es6.array.from";
import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "@babel/polyfill/lib/regenerator-runtime/runtime";
Math.pow(1, 2);

View File

@ -1,2 +1,2 @@
import "babel-polyfill";
import "@babel/polyfill";
1 ** 2;

View File

@ -1,4 +1,4 @@
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
1 ** 2;
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
1 ** 2;

View File

@ -1 +1 @@
import "babel-polyfill";
import "@babel/polyfill";

View File

@ -1,99 +1,99 @@
import "babel-polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "babel-polyfill/lib/core-js/modules/es6.typed.data-view";
import "babel-polyfill/lib/core-js/modules/es6.typed.int8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.int32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float32-array";
import "babel-polyfill/lib/core-js/modules/es6.typed.float64-array";
import "babel-polyfill/lib/core-js/modules/es6.map";
import "babel-polyfill/lib/core-js/modules/es6.set";
import "babel-polyfill/lib/core-js/modules/es6.weak-map";
import "babel-polyfill/lib/core-js/modules/es6.weak-set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.apply";
import "babel-polyfill/lib/core-js/modules/es6.reflect.construct";
import "babel-polyfill/lib/core-js/modules/es6.reflect.define-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.reflect.has";
import "babel-polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "babel-polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set";
import "babel-polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.promise";
import "babel-polyfill/lib/core-js/modules/es6.symbol";
import "babel-polyfill/lib/core-js/modules/es6.object.freeze";
import "babel-polyfill/lib/core-js/modules/es6.object.seal";
import "babel-polyfill/lib/core-js/modules/es6.object.prevent-extensions";
import "babel-polyfill/lib/core-js/modules/es6.object.is-frozen";
import "babel-polyfill/lib/core-js/modules/es6.object.is-sealed";
import "babel-polyfill/lib/core-js/modules/es6.object.is-extensible";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor";
import "babel-polyfill/lib/core-js/modules/es6.object.get-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.object.keys";
import "babel-polyfill/lib/core-js/modules/es6.object.get-own-property-names";
import "babel-polyfill/lib/core-js/modules/es6.object.assign";
import "babel-polyfill/lib/core-js/modules/es6.object.is";
import "babel-polyfill/lib/core-js/modules/es6.object.set-prototype-of";
import "babel-polyfill/lib/core-js/modules/es6.function.name";
import "babel-polyfill/lib/core-js/modules/es6.string.raw";
import "babel-polyfill/lib/core-js/modules/es6.string.from-code-point";
import "babel-polyfill/lib/core-js/modules/es6.string.code-point-at";
import "babel-polyfill/lib/core-js/modules/es6.string.repeat";
import "babel-polyfill/lib/core-js/modules/es6.string.starts-with";
import "babel-polyfill/lib/core-js/modules/es6.string.ends-with";
import "babel-polyfill/lib/core-js/modules/es6.string.includes";
import "babel-polyfill/lib/core-js/modules/es6.regexp.flags";
import "babel-polyfill/lib/core-js/modules/es6.regexp.match";
import "babel-polyfill/lib/core-js/modules/es6.regexp.replace";
import "babel-polyfill/lib/core-js/modules/es6.regexp.split";
import "babel-polyfill/lib/core-js/modules/es6.regexp.search";
import "babel-polyfill/lib/core-js/modules/es6.array.from";
import "babel-polyfill/lib/core-js/modules/es6.array.of";
import "babel-polyfill/lib/core-js/modules/es6.array.copy-within";
import "babel-polyfill/lib/core-js/modules/es6.array.find";
import "babel-polyfill/lib/core-js/modules/es6.array.find-index";
import "babel-polyfill/lib/core-js/modules/es6.array.fill";
import "babel-polyfill/lib/core-js/modules/es6.array.iterator";
import "babel-polyfill/lib/core-js/modules/es6.number.is-finite";
import "babel-polyfill/lib/core-js/modules/es6.number.is-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.is-nan";
import "babel-polyfill/lib/core-js/modules/es6.number.epsilon";
import "babel-polyfill/lib/core-js/modules/es6.number.min-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.max-safe-integer";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-float";
import "babel-polyfill/lib/core-js/modules/es6.number.parse-int";
import "babel-polyfill/lib/core-js/modules/es6.math.acosh";
import "babel-polyfill/lib/core-js/modules/es6.math.asinh";
import "babel-polyfill/lib/core-js/modules/es6.math.atanh";
import "babel-polyfill/lib/core-js/modules/es6.math.cbrt";
import "babel-polyfill/lib/core-js/modules/es6.math.clz32";
import "babel-polyfill/lib/core-js/modules/es6.math.cosh";
import "babel-polyfill/lib/core-js/modules/es6.math.expm1";
import "babel-polyfill/lib/core-js/modules/es6.math.fround";
import "babel-polyfill/lib/core-js/modules/es6.math.hypot";
import "babel-polyfill/lib/core-js/modules/es6.math.imul";
import "babel-polyfill/lib/core-js/modules/es6.math.log1p";
import "babel-polyfill/lib/core-js/modules/es6.math.log10";
import "babel-polyfill/lib/core-js/modules/es6.math.log2";
import "babel-polyfill/lib/core-js/modules/es6.math.sign";
import "babel-polyfill/lib/core-js/modules/es6.math.sinh";
import "babel-polyfill/lib/core-js/modules/es6.math.tanh";
import "babel-polyfill/lib/core-js/modules/es6.math.trunc";
import "babel-polyfill/lib/core-js/modules/es7.array.includes";
import "babel-polyfill/lib/core-js/modules/es7.object.values";
import "babel-polyfill/lib/core-js/modules/es7.object.entries";
import "babel-polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime";
import "@babel/polyfill/lib/core-js/modules/es6.typed.array-buffer";
import "@babel/polyfill/lib/core-js/modules/es6.typed.data-view";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int8-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint8-clamped-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int16-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint16-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.int32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.uint32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.float32-array";
import "@babel/polyfill/lib/core-js/modules/es6.typed.float64-array";
import "@babel/polyfill/lib/core-js/modules/es6.map";
import "@babel/polyfill/lib/core-js/modules/es6.set";
import "@babel/polyfill/lib/core-js/modules/es6.weak-map";
import "@babel/polyfill/lib/core-js/modules/es6.weak-set";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.apply";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.construct";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.define-property";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.delete-property";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-own-property-descriptor";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.get-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.has";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.is-extensible";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.own-keys";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.prevent-extensions";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.set";
import "@babel/polyfill/lib/core-js/modules/es6.reflect.set-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.promise";
import "@babel/polyfill/lib/core-js/modules/es6.symbol";
import "@babel/polyfill/lib/core-js/modules/es6.object.freeze";
import "@babel/polyfill/lib/core-js/modules/es6.object.seal";
import "@babel/polyfill/lib/core-js/modules/es6.object.prevent-extensions";
import "@babel/polyfill/lib/core-js/modules/es6.object.is-frozen";
import "@babel/polyfill/lib/core-js/modules/es6.object.is-sealed";
import "@babel/polyfill/lib/core-js/modules/es6.object.is-extensible";
import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-descriptor";
import "@babel/polyfill/lib/core-js/modules/es6.object.get-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.object.keys";
import "@babel/polyfill/lib/core-js/modules/es6.object.get-own-property-names";
import "@babel/polyfill/lib/core-js/modules/es6.object.assign";
import "@babel/polyfill/lib/core-js/modules/es6.object.is";
import "@babel/polyfill/lib/core-js/modules/es6.object.set-prototype-of";
import "@babel/polyfill/lib/core-js/modules/es6.function.name";
import "@babel/polyfill/lib/core-js/modules/es6.string.raw";
import "@babel/polyfill/lib/core-js/modules/es6.string.from-code-point";
import "@babel/polyfill/lib/core-js/modules/es6.string.code-point-at";
import "@babel/polyfill/lib/core-js/modules/es6.string.repeat";
import "@babel/polyfill/lib/core-js/modules/es6.string.starts-with";
import "@babel/polyfill/lib/core-js/modules/es6.string.ends-with";
import "@babel/polyfill/lib/core-js/modules/es6.string.includes";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.flags";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.match";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.replace";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.split";
import "@babel/polyfill/lib/core-js/modules/es6.regexp.search";
import "@babel/polyfill/lib/core-js/modules/es6.array.from";
import "@babel/polyfill/lib/core-js/modules/es6.array.of";
import "@babel/polyfill/lib/core-js/modules/es6.array.copy-within";
import "@babel/polyfill/lib/core-js/modules/es6.array.find";
import "@babel/polyfill/lib/core-js/modules/es6.array.find-index";
import "@babel/polyfill/lib/core-js/modules/es6.array.fill";
import "@babel/polyfill/lib/core-js/modules/es6.array.iterator";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-finite";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-safe-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.is-nan";
import "@babel/polyfill/lib/core-js/modules/es6.number.epsilon";
import "@babel/polyfill/lib/core-js/modules/es6.number.min-safe-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.max-safe-integer";
import "@babel/polyfill/lib/core-js/modules/es6.number.parse-float";
import "@babel/polyfill/lib/core-js/modules/es6.number.parse-int";
import "@babel/polyfill/lib/core-js/modules/es6.math.acosh";
import "@babel/polyfill/lib/core-js/modules/es6.math.asinh";
import "@babel/polyfill/lib/core-js/modules/es6.math.atanh";
import "@babel/polyfill/lib/core-js/modules/es6.math.cbrt";
import "@babel/polyfill/lib/core-js/modules/es6.math.clz32";
import "@babel/polyfill/lib/core-js/modules/es6.math.cosh";
import "@babel/polyfill/lib/core-js/modules/es6.math.expm1";
import "@babel/polyfill/lib/core-js/modules/es6.math.fround";
import "@babel/polyfill/lib/core-js/modules/es6.math.hypot";
import "@babel/polyfill/lib/core-js/modules/es6.math.imul";
import "@babel/polyfill/lib/core-js/modules/es6.math.log1p";
import "@babel/polyfill/lib/core-js/modules/es6.math.log10";
import "@babel/polyfill/lib/core-js/modules/es6.math.log2";
import "@babel/polyfill/lib/core-js/modules/es6.math.sign";
import "@babel/polyfill/lib/core-js/modules/es6.math.sinh";
import "@babel/polyfill/lib/core-js/modules/es6.math.tanh";
import "@babel/polyfill/lib/core-js/modules/es6.math.trunc";
import "@babel/polyfill/lib/core-js/modules/es7.array.includes";
import "@babel/polyfill/lib/core-js/modules/es7.object.values";
import "@babel/polyfill/lib/core-js/modules/es7.object.entries";
import "@babel/polyfill/lib/core-js/modules/es7.object.get-own-property-descriptors";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "@babel/polyfill/lib/regenerator-runtime/runtime";

View File

@ -1,2 +1,2 @@
import "babel-polyfill";
import "@babel/polyfill";
1 ** 2;

View File

@ -1,6 +1,6 @@
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
1 ** 2;
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
1 ** 2;

View File

@ -1 +1 @@
import "babel-polyfill";
import "@babel/polyfill";

View File

@ -1,6 +1,6 @@
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/core-js/modules/web.timers";
import "babel-polyfill/lib/core-js/modules/web.immediate";
import "babel-polyfill/lib/core-js/modules/web.dom.iterable";
import "babel-polyfill/lib/regenerator-runtime/runtime";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/core-js/modules/web.timers";
import "@babel/polyfill/lib/core-js/modules/web.immediate";
import "@babel/polyfill/lib/core-js/modules/web.dom.iterable";
import "@babel/polyfill/lib/regenerator-runtime/runtime";

View File

@ -1 +1 @@
import "babel-polyfill";
import "@babel/polyfill";

View File

@ -1,3 +1,3 @@
import "babel-polyfill/lib/core-js/modules/es7.string.pad-start";
import "babel-polyfill/lib/core-js/modules/es7.string.pad-end";
import "babel-polyfill/lib/regenerator-runtime/runtime";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-start";
import "@babel/polyfill/lib/core-js/modules/es7.string.pad-end";
import "@babel/polyfill/lib/regenerator-runtime/runtime";

View File

@ -1,3 +1,3 @@
require("babel-polyfill");
require("@babel/polyfill");
1 ** 2;

View File

@ -1,11 +1,11 @@
require("babel-polyfill/lib/core-js/modules/es7.string.pad-start");
require("@babel/polyfill/lib/core-js/modules/es7.string.pad-start");
require("babel-polyfill/lib/core-js/modules/es7.string.pad-end");
require("@babel/polyfill/lib/core-js/modules/es7.string.pad-end");
require("babel-polyfill/lib/core-js/modules/web.timers");
require("@babel/polyfill/lib/core-js/modules/web.timers");
require("babel-polyfill/lib/core-js/modules/web.immediate");
require("@babel/polyfill/lib/core-js/modules/web.immediate");
require("babel-polyfill/lib/core-js/modules/web.dom.iterable");
require("@babel/polyfill/lib/core-js/modules/web.dom.iterable");
1 ** 2;
1 ** 2;

View File

@ -3,32 +3,32 @@
A monorepo, muhahahahahaha. See the [monorepo design doc](/doc/design/monorepo.md) for reasoning.
- [Core Packages](#core-packages)
- [Other](#other)
- [Other](#other)
- [Presets](#presets)
- [Plugins](#plugins)
- [Transform Plugins](#transform-plugins)
- [Syntax Plugins](#syntax-plugins)
### Core Packages
| Package | Version | Dependencies |
|--------|-------|------------|
| [`babel-core`](/packages/babel-core) | [![npm](https://img.shields.io/npm/v/babel-core.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-core) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-core)](https://david-dm.org/babel/babel?path=packages/babel-core) |
| [`@babel/core`](/packages/babel-core) | [![npm](https://img.shields.io/npm/v/babel-core.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-core) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-core)](https://david-dm.org/babel/babel?path=packages/babel-core) |
| [`babylon`](https://github.com/babel/babylon) | [![npm](https://img.shields.io/npm/v/babylon.svg?maxAge=2592000)](https://www.npmjs.com/package/babylon) | [![Dependency Status](https://david-dm.org/babel/babylon.svg)](https://david-dm.org/babel/babylon) |
| [`babel-traverse`](/packages/babel-traverse) | [![npm](https://img.shields.io/npm/v/babel-traverse.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-traverse) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-traverse)](https://david-dm.org/babel/babel?path=packages/babel-traverse) |
| [`babel-generator`](/packages/babel-generator) | [![npm](https://img.shields.io/npm/v/babel-generator.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-generator) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-generator)](https://david-dm.org/babel/babel?path=packages/babel-generator) |
| [`@babel/traverse`](/packages/babel-traverse) | [![npm](https://img.shields.io/npm/v/babel-traverse.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-traverse) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-traverse)](https://david-dm.org/babel/babel?path=packages/babel-traverse) |
| [`@babel/generator`](/packages/babel-generator) | [![npm](https://img.shields.io/npm/v/babel-generator.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-generator) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-generator)](https://david-dm.org/babel/babel?path=packages/babel-generator) |
[`babel-core`](/packages/babel-core) is the Babel compiler itself; it exposes the `babel.transform` method, where `transformedCode = transform(src).code`.
[`@babel/core`](/packages/babel-core) is the Babel compiler itself; it exposes the `babel.transform` method, where `transformedCode = transform(src).code`.
The compiler can be broken down into 3 parts:
- The parser: [`babylon`](https://github.com/babel/babylon) (moved to a separate repo and versioned independently)
- The transformer[s]: All the plugins/presets
- These all use [`babel-traverse`](/packages/babel-traverse) to traverse through the AST
- The generator: [`babel-generator`](/packages/babel-generator)
- These all use [`@babel/traverse`](/packages/babel-traverse) to traverse through the AST
- The generator: [`@babel/generator`](/packages/babel-generator)
The flow goes like this:
input string -> `babylon` parser -> `AST` -> transformer[s] -> `AST` -> `babel-generator` -> output string
input string -> `babylon` parser -> `AST` -> transformer[s] -> `AST` -> `@babel/generator` -> output string
Check out the [`babel-handbook`](https://github.com/thejameskyle/babel-handbook/blob/master/translations/en/plugin-handbook.md#introduction) for more information on this.
@ -36,23 +36,23 @@ Check out the [`babel-handbook`](https://github.com/thejameskyle/babel-handbook/
| Package | Version | Dependencies |
|--------|-------|------------|
| [`babel-cli`](/packages/babel-cli) | [![npm](https://img.shields.io/npm/v/babel-cli.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-cli) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-cli)](https://david-dm.org/babel/babel?path=packages/babel-cli) |
| [`babel-types`](/packages/babel-types) | [![npm](https://img.shields.io/npm/v/babel-types.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-types) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-types)](https://david-dm.org/babel/babel?path=packages/babel-types) |
| [`babel-polyfill`](/packages/babel-polyfill) | [![npm](https://img.shields.io/npm/v/babel-polyfill.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-polyfill) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-polyfill)](https://david-dm.org/babel/babel?path=packages/babel-polyfill) |
| [`babel-runtime`](/packages/babel-runtime) | [![npm](https://img.shields.io/npm/v/babel-runtime.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-runtime) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-runtime)](https://david-dm.org/babel/babel?path=packages/babel-runtime) |
| [`babel-register`](/packages/babel-register) | [![npm](https://img.shields.io/npm/v/babel-register.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-register) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-register)](https://david-dm.org/babel/babel?path=packages/babel-register) |
| [`babel-template`](/packages/babel-template) | [![npm](https://img.shields.io/npm/v/babel-template.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-template) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-template)](https://david-dm.org/babel/babel?path=packages/babel-template) |
| [`babel-helpers`](/packages/babel-helpers) | [![npm](https://img.shields.io/npm/v/babel-helpers.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-helpers) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-helpers)](https://david-dm.org/babel/babel?path=packages/babel-helpers) |
| [`babel-code-frame`](/packages/babel-code-frame) | [![npm](https://img.shields.io/npm/v/babel-code-frame.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-code-frame) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-code-frame)](https://david-dm.org/babel/babel?path=packages/babel-code-frame) |
| [`@babel/cli`](/packages/babel-cli) | [![npm](https://img.shields.io/npm/v/babel-cli.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-cli) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-cli)](https://david-dm.org/babel/babel?path=packages/babel-cli) |
| [`@babel/types`](/packages/babel-types) | [![npm](https://img.shields.io/npm/v/babel-types.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-types) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-types)](https://david-dm.org/babel/babel?path=packages/babel-types) |
| [`@babel/polyfill`](/packages/babel-polyfill) | [![npm](https://img.shields.io/npm/v/babel-polyfill.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-polyfill) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-polyfill)](https://david-dm.org/babel/babel?path=packages/babel-polyfill) |
| [`@babel/runtime`](/packages/babel-runtime) | [![npm](https://img.shields.io/npm/v/babel-runtime.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-runtime) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-runtime)](https://david-dm.org/babel/babel?path=packages/babel-runtime) |
| [`@babel/register`](/packages/babel-register) | [![npm](https://img.shields.io/npm/v/babel-register.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-register) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-register)](https://david-dm.org/babel/babel?path=packages/babel-register) |
| [`@babel/template`](/packages/babel-template) | [![npm](https://img.shields.io/npm/v/babel-template.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-template) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-template)](https://david-dm.org/babel/babel?path=packages/babel-template) |
| [`@babel/helpers`](/packages/babel-helpers) | [![npm](https://img.shields.io/npm/v/babel-helpers.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-helpers) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-helpers)](https://david-dm.org/babel/babel?path=packages/babel-helpers) |
| [`@babel/code-frame`](/packages/babel-code-frame) | [![npm](https://img.shields.io/npm/v/babel-code-frame.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-code-frame) | [![Dependency Status](https://david-dm.org/babel/babel.svg?path=packages/babel-code-frame)](https://david-dm.org/babel/babel?path=packages/babel-code-frame) |
- [`babel-cli`](/packages/babel-cli) is the CLI tool that runs `babel-core` and helps with outputting to a directory, a file, stdout and more (also includes `babel-node`). Check out the [docs](https://babeljs.io/docs/usage/cli/).
- [`babel-types`](/packages/babel-types) is used to validate, build and change AST nodes.
- [`babel-polyfill`](/packages/babel-polyfill) is [literally a wrapper](https://github.com/babel/babel/blob/master/packages/babel-polyfill/src/index.js) around [`core-js`](https://github.com/zloirock/core-js) and [regenerator-runtime](https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime). Check out the [docs](https://babeljs.io/docs/usage/polyfill/).
- [`babel-runtime`](/packages/babel-runtime) is similar to the polyfill except that it doesn't modify the global scope and is to be used with [`babel-plugin-transform-runtime`](/packages/babel-plugin-transform-runtime) (usually in library/plugin code). Check out the [docs](https://babeljs.io/docs/plugins/transform-runtime/).
- [`babel-register`](/packages/babel-register) is a way to automatically compile files with Babel on the fly by binding to Node.js `require`. Check out the [docs](http://babeljs.io/docs/usage/require/).
- [`babel-template`](/packages/babel-template) is a helper function that allows constructing AST nodes from a string presentation of the code; this eliminates the tedium of using `babel-types` for building AST nodes.
- [`babel-helpers`](/packages/babel-helpers) is a set of pre-made `babel-template` functions that are used in some Babel plugins.
- [`babel-code-frame`](/packages/babel-code-frame) is a standalone package used to generate errors that print the source code and point to error locations.
- [`@babel/cli`](/packages/babel-cli) is the CLI tool that runs `@babel/core` and helps with outputting to a directory, a file, stdout and more (also includes `babel-node`). Check out the [docs](https://babeljs.io/docs/usage/cli/).
- [`@babel/types`](/packages/babel-types) is used to validate, build and change AST nodes.
- [`@babel/polyfill`](/packages/babel-polyfill) is [literally a wrapper](https://github.com/babel/babel/blob/master/packages/babel-polyfill/src/index.js) around [`core-js`](https://github.com/zloirock/core-js) and [regenerator-runtime](https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime). Check out the [docs](https://babeljs.io/docs/usage/polyfill/).
- [`@babel/runtime`](/packages/babel-runtime) is similar to the polyfill except that it doesn't modify the global scope and is to be used with [`@babel/plugin-transform-runtime`](/packages/babel-plugin-transform-runtime) (usually in library/plugin code). Check out the [docs](https://babeljs.io/docs/plugins/transform-runtime/).
- [`@babel/register`](/packages/babel-register) is a way to automatically compile files with Babel on the fly by binding to Node.js `require`. Check out the [docs](http://babeljs.io/docs/usage/require/).
- [`@babel/template`](/packages/babel-template) is a helper function that allows constructing AST nodes from a string presentation of the code; this eliminates the tedium of using `@babel/types` for building AST nodes.
- [`@babel/helpers`](/packages/babel-helpers) is a set of pre-made `@babel/template` functions that are used in some Babel plugins.
- [`@babel/code-frame`](/packages/babel-code-frame) is a standalone package used to generate errors that print the source code and point to error locations.
### [Presets](http://babeljs.io/docs/plugins/#presets)
@ -62,7 +62,7 @@ The transformer[s] used in Babel are the independent pieces of code that transfo
| Package | Version | Dependencies | Description |
|--------|-------|------------|---|
| [`babel-preset-env`](https://github.com/babel/babel-preset-env) | [![npm](https://img.shields.io/npm/v/babel-preset-env.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-preset-env) | [![Dependency Status](https://david-dm.org/babel/babel-preset-env.svg)](https://david-dm.org/babel/babel-preset-env) | automatically determines plugins and polyfills you need based on your supported environments |
| [`@babel/preset-env`](https://github.com/babel/babel-preset-env) | [![npm](https://img.shields.io/npm/v/babel-preset-env.svg?maxAge=2592000)](https://www.npmjs.com/package/babel-preset-env) | [![Dependency Status](https://david-dm.org/babel/babel-preset-env.svg)](https://david-dm.org/babel/babel-preset-env) | automatically determines plugins and polyfills you need based on your supported environments |
> You can find community maintained presets on [npm](https://www.npmjs.com/search?q=babel-preset)
@ -78,8 +78,8 @@ There are many kinds of plugins: ones that convert ES6/ES2015 to ES5, transform
#### Syntax Plugins
These just enable the transform plugins to be able to parse certain features (the transform plugins already include the syntax plugins so you don't need both): `babel-plugin-syntax-x`. Check out our [website for more](http://babeljs.io/docs/plugins/#syntax-plugins).
These just enable the transform plugins to be able to parse certain features (the transform plugins already include the syntax plugins so you don't need both): `@babel/plugin-syntax-x`. Check out our [website for more](http://babeljs.io/docs/plugins/#syntax-plugins).
### Helpers
These are mostly for internal use in various plugins: `babel-helper-x`.
These are mostly for internal use in various plugins: `@babel/helper-x`.

View File

@ -1,18 +1,18 @@
# babel-cli
# @babel/cli
> Babel command line.
In addition, various entry point scripts live in the top-level package at `babel-cli/bin`.
In addition, various entry point scripts live in the top-level package at `@babel/cli/bin`.
There are some shell-executable utility scripts, `babel-external-helpers.js` and `babel-node.js`, and the main Babel cli script, `babel.js`.
## Install
```sh
npm install --save-dev babel-cli
npm install --save-dev @babel/cli
```
## Usage
## Usage
```sh
babel script.js

View File

@ -1,3 +0,0 @@
#!/usr/bin/env node
throw new Error("babel-doctor has been removed.");

View File

@ -1 +1 @@
throw new Error("Use the `babel-core` package instead of `babel-cli`.");
throw new Error("Use the `@babel/core` package instead of `@babel/cli`.");

View File

@ -1,5 +1,5 @@
{
"name": "babel-cli",
"name": "@babel/cli",
"version": "7.0.0-beta.3",
"description": "Babel command line.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
@ -16,7 +16,7 @@
"compiler"
],
"dependencies": {
"babel-core": "7.0.0-beta.3",
"@babel/core": "7.0.0-beta.3",
"commander": "^2.8.1",
"convert-source-map": "^1.1.0",
"fs-readdir-recursive": "^1.0.0",
@ -30,10 +30,9 @@
"chokidar": "^1.6.1"
},
"devDependencies": {
"babel-helper-fixtures": "7.0.0-beta.3"
"@babel/helper-fixtures": "7.0.0-beta.3"
},
"bin": {
"babel-doctor": "./bin/babel-doctor.js",
"babel": "./bin/babel.js",
"babel-external-helpers": "./bin/babel-external-helpers.js"
}

View File

@ -1,5 +1,5 @@
import commander from "commander";
import { buildExternalHelpers } from "babel-core";
import { buildExternalHelpers } from "@babel/core";
function collect(value, previousValue): Array<string> {
// If the user passed the option with no value, like "babel-external-helpers --whitelist", do nothing.

View File

@ -2,7 +2,7 @@
import fs from "fs";
import commander from "commander";
import { version } from "babel-core";
import { version } from "@babel/core";
import uniq from "lodash/uniq";
import glob from "glob";
@ -123,7 +123,7 @@ commander.option(
"specify a custom name for module ids",
);
// "babel" command specific arguments that are not passed to babel-core.
// "babel" command specific arguments that are not passed to @babel/core.
commander.option(
"-x, --extensions [extensions]",
"List of extensions to compile when a directory has been input [.es6,.js,.es,.jsx,.mjs]",
@ -165,7 +165,7 @@ commander.option(
);
/* eslint-enable max-len */
commander.version(pkg.version + " (babel-core " + version + ")");
commander.version(pkg.version + " (@babel/core " + version + ")");
commander.usage("[options] <files ...>");
commander.parse(process.argv);
@ -229,7 +229,7 @@ if (opts.configFile) {
opts.extends = opts.configFile;
}
// Delete options that are specific to babel-cli and shouldn't be passed to babel-core.
// Delete options that are specific to @babel/cli and shouldn't be passed to @babel/core.
delete opts.version;
delete opts.extensions;
delete opts.watch;
@ -244,7 +244,7 @@ delete opts.deleteDirOnStart;
delete opts.keepFileExtension;
// Commander will default the "--no-" arguments to true, but we want to leave them undefined so that
// babel-core can handle the default-assignment logic on its own.
// @babel/core can handle the default-assignment logic on its own.
if (opts.babelrc === true) opts.babelrc = undefined;
if (opts.comments === true) opts.comments = undefined;
if (opts.highlightCode === true) opts.highlightCode = undefined;

View File

@ -1,6 +1,6 @@
import commander from "commander";
import readdirRecursive from "fs-readdir-recursive";
import * as babel from "babel-core";
import * as babel from "@babel/core";
import includes from "lodash/includes";
import path from "path";
import fs from "fs";

View File

@ -1,6 +1,6 @@
const includes = require("lodash/includes");
const readdir = require("fs-readdir-recursive");
const helper = require("babel-helper-fixtures");
const helper = require("@babel/helper-fixtures");
const assert = require("assert");
const rimraf = require("rimraf");
const outputFileSync = require("output-file-sync");

View File

@ -1,17 +1,17 @@
# babel-code-frame
# @babel/code-frame
> Generate errors that contain a code frame that point to source locations.
## Install
```sh
npm install --save-dev babel-code-frame
npm install --save-dev @babel/code-frame
```
## Usage
```js
import { codeFrameColumns } from 'babel-code-frame';
import { codeFrameColumns } from '@babel/code-frame';
const rawLines = `class Foo {
constructor()
@ -35,7 +35,7 @@ If the column number is not known, you may omit it.
You can also pass an `end` hash in `location`.
```js
import { codeFrameColumns } from 'babel-code-frame';
import { codeFrameColumns } from '@babel/code-frame';
const rawLines = `class Foo {
constructor() {
@ -95,7 +95,7 @@ The new API takes a `location` object, similar to what is available in an AST.
This is an example of the deprecated (but still available) API:
```js
import codeFrame from 'babel-code-frame';
import codeFrame from '@babel/code-frame';
const rawLines = `class Foo {
constructor()
@ -111,7 +111,7 @@ console.log(result);
To get the same highlighting using the new API:
```js
import { codeFrameColumns } from 'babel-code-frame';
import { codeFrameColumns } from '@babel/code-frame';
const rawLines = `class Foo {
constructor() {

View File

@ -1,5 +1,5 @@
{
"name": "babel-code-frame",
"name": "@babel/code-frame",
"version": "7.0.0-beta.3",
"description": "Generate errors that contain a code frame that point to source locations.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",

Some files were not shown because too many files have changed in this diff Show More