diff --git a/package.json b/package.json index 0fb4101e4d..c717e80c56 100644 --- a/package.json +++ b/package.json @@ -12,10 +12,12 @@ "devDependencies": { "@babel/cli": "7.0.0-beta.52", "@babel/core": "7.0.0-beta.52", + "@babel/plugin-proposal-class-properties": "7.0.0-beta.52", + "@babel/plugin-proposal-export-namespace-from": "7.0.0-beta.52", + "@babel/plugin-proposal-numeric-separator": "7.0.0-beta.52", "@babel/plugin-transform-modules-commonjs": "7.0.0-beta.52", "@babel/preset-env": "7.0.0-beta.52", "@babel/preset-flow": "7.0.0-beta.52", - "@babel/preset-stage-0": "7.0.0-beta.52", "@babel/register": "7.0.0-beta.52", "babel-core": "^7.0.0-0", "babel-eslint": "^8.2.6", diff --git a/packages/babel-core/test/fixtures/parse/.babelrc b/packages/babel-core/test/fixtures/parse/.babelrc index 9471261ff6..a4834e8381 100644 --- a/packages/babel-core/test/fixtures/parse/.babelrc +++ b/packages/babel-core/test/fixtures/parse/.babelrc @@ -1,5 +1,5 @@ { - "plugins": [ - ["@babel/syntax-decorators", { "legacy": true }] - ] + "parserOpts": { + "plugins": ["decorators-legacy"] + } } diff --git a/packages/babel-preset-stage-0/README.md b/packages/babel-preset-stage-0/README.md index 7bb6f3ba2d..18884ec96d 100644 --- a/packages/babel-preset-stage-0/README.md +++ b/packages/babel-preset-stage-0/README.md @@ -1,17 +1,11 @@ # @babel/preset-stage-0 -> As of v7.0.0-beta.54, we've decided to remove -the official Babel Stage presets. You can find more information -at issue [#7770](https://github.com/babel/babel/issues/7770), but -the TL;DR is that it's causing more harm than convenience in that -the preset is always out of date, each change is usually going to -require a major version bump and thus people will be behind, -and it encouraged too many people to opt-in to too many proposals -that they didn't intend to. This is intended to be the last publish -of "@babel/preset-stage-0" +As of v7.0.0-beta.55, we've removed Babel's Stage presets. Please consider reading our [blog post](https://babeljs.io/blog/2018/07/27/removing-babels-stage-presets) on this decision for more details. TL;DR is that it's more beneficial in the long run to explicitly add which proposals to use. --- +For a more automatic migration, we have updated [babel-upgrade](https://github.com/babel/babel-upgrade) to do this for you (you can run `npx babel-upgrade`). + If you want the same configuration as before: ```json diff --git a/packages/babel-preset-stage-0/src/index.js b/packages/babel-preset-stage-0/src/index.js index 10186ec092..da2a61a9f4 100644 --- a/packages/babel-preset-stage-0/src/index.js +++ b/packages/babel-preset-stage-0/src/index.js @@ -1,14 +1,14 @@ export default function() { throw new Error(` -As of v7.0.0-beta.54, we've decided to remove -the official Babel Stage presets. You can find more information -at issue #7770: https://github.com/babel/babel/issues/7770, but -the TL;DR is that it's causing more harm than convenience in that -the preset is always out of date, each change is usually going to -require a major version bump and thus people will be behind, -and it encouraged too many people to opt-in to too many proposals -that they didn't intend to. This is intended to be the last publish -of "@babel/preset-stage-0" +As of v7.0.0-beta.55, we've removed Babel's Stage presets. +Please consider reading our blog post on this decision at +https://babeljs.io/blog/2018/07/27/removing-babels-stage-presets +for more details. TL;DR is that it's more beneficial in the + long run to explicitly add which proposals to use. + +For a more automatic migration, we have updated babel-upgrade, +https://github.com/babel/babel-upgrade to do this for you with +"npx babel-upgrade". If you want the same configuration as before: diff --git a/packages/babel-preset-stage-1/README.md b/packages/babel-preset-stage-1/README.md index 1f1b567baf..3c4c61d508 100644 --- a/packages/babel-preset-stage-1/README.md +++ b/packages/babel-preset-stage-1/README.md @@ -1,17 +1,11 @@ # @babel/preset-stage-1 -> As of v7.0.0-beta.54, we've decided to remove -the official Babel Stage presets. You can find more information -at issue [#7770](https://github.com/babel/babel/issues/7770), but -the TL;DR is that it's causing more harm than convenience in that -the preset is always out of date, each change is usually going to -require a major version bump and thus people will be behind, -and it encouraged too many people to opt-in to too many proposals -that they didn't intend to. This is intended to be the last publish -of "@babel/preset-stage-1" +As of v7.0.0-beta.55, we've removed Babel's Stage presets. Please consider reading our [blog post](https://babeljs.io/blog/2018/07/27/removing-babels-stage-presets) on this decision for more details. TL;DR is that it's more beneficial in the long run to explicitly add which proposals to use. --- +For a more automatic migration, we have updated [babel-upgrade](https://github.com/babel/babel-upgrade) to do this for you (you can run `npx babel-upgrade`). + If you want the same configuration as before: ```json diff --git a/packages/babel-preset-stage-1/src/index.js b/packages/babel-preset-stage-1/src/index.js index 0544c93948..7b70552855 100644 --- a/packages/babel-preset-stage-1/src/index.js +++ b/packages/babel-preset-stage-1/src/index.js @@ -1,14 +1,14 @@ export default function() { throw new Error(` -As of v7.0.0-beta.54, we've decided to remove -the official Babel Stage presets. You can find more information -at issue #7770: https://github.com/babel/babel/issues/7770, but -the TL;DR is that it's causing more harm than convenience in that -the preset is always out of date, each change is usually going to -require a major version bump and thus people will be behind, -and it encouraged too many people to opt-in to too many proposals -that they didn't intend to. This is intended to be the last publish -of "@babel/preset-stage-1" +As of v7.0.0-beta.55, we've removed Babel's Stage presets. +Please consider reading our blog post on this decision at +https://babeljs.io/blog/2018/07/27/removing-babels-stage-presets +for more details. TL;DR is that it's more beneficial in the + long run to explicitly add which proposals to use. + +For a more automatic migration, we have updated babel-upgrade, +https://github.com/babel/babel-upgrade to do this for you with +"npx babel-upgrade". If you want the same configuration as before: diff --git a/packages/babel-preset-stage-2/README.md b/packages/babel-preset-stage-2/README.md index 61ca252147..ecbde7ab55 100644 --- a/packages/babel-preset-stage-2/README.md +++ b/packages/babel-preset-stage-2/README.md @@ -1,17 +1,11 @@ # @babel/preset-stage-2 -> As of v7.0.0-beta.54, we've decided to remove -the official Babel Stage presets. You can find more information -at issue [#7770](https://github.com/babel/babel/issues/7770), but -the TL;DR is that it's causing more harm than convenience in that -the preset is always out of date, each change is usually going to -require a major version bump and thus people will be behind, -and it encouraged too many people to opt-in to too many proposals -that they didn't intend to. This is intended to be the last publish -of "@babel/preset-stage-2" +As of v7.0.0-beta.55, we've removed Babel's Stage presets. Please consider reading our [blog post](https://babeljs.io/blog/2018/07/27/removing-babels-stage-presets) on this decision for more details. TL;DR is that it's more beneficial in the long run to explicitly add which proposals to use. --- +For a more automatic migration, we have updated [babel-upgrade](https://github.com/babel/babel-upgrade) to do this for you (you can run `npx babel-upgrade`). + If you want the same configuration as before: ```json diff --git a/packages/babel-preset-stage-2/src/index.js b/packages/babel-preset-stage-2/src/index.js index f1d206dcb6..4d3a38d425 100644 --- a/packages/babel-preset-stage-2/src/index.js +++ b/packages/babel-preset-stage-2/src/index.js @@ -1,14 +1,14 @@ export default function() { throw new Error(` -As of v7.0.0-beta.54, we've decided to remove -the official Babel Stage presets. You can find more information -at issue #7770: https://github.com/babel/babel/issues/7770, but -the TL;DR is that it's causing more harm than convenience in that -the preset is always out of date, each change is usually going to -require a major version bump and thus people will be behind, -and it encouraged too many people to opt-in to too many proposals -that they didn't intend to. This is intended to be the last publish -of "@babel/preset-stage-2" +As of v7.0.0-beta.55, we've removed Babel's Stage presets. +Please consider reading our blog post on this decision at +https://babeljs.io/blog/2018/07/27/removing-babels-stage-presets +for more details. TL;DR is that it's more beneficial in the + long run to explicitly add which proposals to use. + +For a more automatic migration, we have updated babel-upgrade, +https://github.com/babel/babel-upgrade to do this for you with +"npx babel-upgrade". If you want the same configuration as before: diff --git a/packages/babel-preset-stage-3/README.md b/packages/babel-preset-stage-3/README.md index 1685676b70..cf6e28c258 100644 --- a/packages/babel-preset-stage-3/README.md +++ b/packages/babel-preset-stage-3/README.md @@ -1,17 +1,11 @@ # @babel/preset-stage-3 -> As of v7.0.0-beta.54, we've decided to remove -the official Babel Stage presets. You can find more information -at issue [#7770](https://github.com/babel/babel/issues/7770), but -the TL;DR is that it's causing more harm than convenience in that -the preset is always out of date, each change is usually going to -require a major version bump and thus people will be behind, -and it encouraged too many people to opt-in to too many proposals -that they didn't intend to. This is intended to be the last publish -of "@babel/preset-stage-3" +As of v7.0.0-beta.55, we've removed Babel's Stage presets. Please consider reading our [blog post](https://babeljs.io/blog/2018/07/27/removing-babels-stage-presets) on this decision for more details. TL;DR is that it's more beneficial in the long run to explicitly add which proposals to use. --- +For a more automatic migration, we have updated [babel-upgrade](https://github.com/babel/babel-upgrade) to do this for you (you can run `npx babel-upgrade`). + If you want the same configuration as before: ```json diff --git a/packages/babel-preset-stage-3/src/index.js b/packages/babel-preset-stage-3/src/index.js index 1ab5ae5996..5e7c9b8410 100644 --- a/packages/babel-preset-stage-3/src/index.js +++ b/packages/babel-preset-stage-3/src/index.js @@ -1,14 +1,14 @@ export default function() { throw new Error(` -As of v7.0.0-beta.54, we've decided to remove -the official Babel Stage presets. You can find more information -at issue #7770: https://github.com/babel/babel/issues/7770, but -the TL;DR is that it's causing more harm than convenience in that -the preset is always out of date, each change is usually going to -require a major version bump and thus people will be behind, -and it encouraged too many people to opt-in to too many proposals -that they didn't intend to. This is intended to be the last publish -of "@babel/preset-stage-3" +As of v7.0.0-beta.55, we've removed Babel's Stage presets. +Please consider reading our blog post on this decision at +https://babeljs.io/blog/2018/07/27/removing-babels-stage-presets +for more details. TL;DR is that it's more beneficial in the + long run to explicitly add which proposals to use. + +For a more automatic migration, we have updated babel-upgrade, +https://github.com/babel/babel-upgrade to do this for you with +"npx babel-upgrade". If you want the same configuration as before: diff --git a/packages/babel-standalone/package.json b/packages/babel-standalone/package.json index 74eb97cb87..8e1fa90fe3 100644 --- a/packages/babel-standalone/package.json +++ b/packages/babel-standalone/package.json @@ -19,9 +19,15 @@ "@babel/plugin-proposal-export-default-from": "7.0.0-beta.54", "@babel/plugin-proposal-export-namespace-from": "7.0.0-beta.54", "@babel/plugin-proposal-function-bind": "7.0.0-beta.54", + "@babel/plugin-proposal-function-sent": "7.0.0-beta.54", + "@babel/plugin-proposal-json-strings": "7.0.0-beta.54", + "@babel/plugin-proposal-logical-assignment-operators": "7.0.0-beta.54", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.0.0-beta.54", "@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.54", "@babel/plugin-proposal-optional-catch-binding": "7.0.0-beta.54", + "@babel/plugin-proposal-optional-chaining": "7.0.0-beta.54", "@babel/plugin-proposal-pipeline-operator": "7.0.0-beta.54", + "@babel/plugin-proposal-throw-expressions": "7.0.0-beta.54", "@babel/plugin-proposal-unicode-property-regex": "7.0.0-beta.54", "@babel/plugin-syntax-async-generators": "7.0.0-beta.54", "@babel/plugin-syntax-class-properties": "7.0.0-beta.54", diff --git a/yarn.lock b/yarn.lock index 55e1077725..2866cc42e3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -320,27 +320,6 @@ "@babel/helper-replace-supers" "7.0.0-beta.52" "@babel/plugin-syntax-class-properties" "7.0.0-beta.52" -"@babel/plugin-proposal-decorators@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.0.0-beta.52.tgz#7188142ecb3ab678d26ee610d12ae33488911225" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-syntax-decorators" "7.0.0-beta.52" - -"@babel/plugin-proposal-do-expressions@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-do-expressions/-/plugin-proposal-do-expressions-7.0.0-beta.52.tgz#3be3d062ea2943ebbbefd435eaec2c3a527bd203" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-syntax-do-expressions" "7.0.0-beta.52" - -"@babel/plugin-proposal-export-default-from@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.0.0-beta.52.tgz#180428d9c340db2b06467c934b045e1f9334f96e" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-syntax-export-default-from" "7.0.0-beta.52" - "@babel/plugin-proposal-export-namespace-from@7.0.0-beta.52": version "7.0.0-beta.52" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.0.0-beta.52.tgz#776abbbf3907d7de8f55ea712ca72ec4b952c0fe" @@ -348,42 +327,6 @@ "@babel/helper-plugin-utils" "7.0.0-beta.52" "@babel/plugin-syntax-export-namespace-from" "7.0.0-beta.52" -"@babel/plugin-proposal-function-bind@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-function-bind/-/plugin-proposal-function-bind-7.0.0-beta.52.tgz#86d1ddcd0bae60473fa0088c7b575e62dec4b5d9" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-syntax-function-bind" "7.0.0-beta.52" - -"@babel/plugin-proposal-function-sent@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-function-sent/-/plugin-proposal-function-sent-7.0.0-beta.52.tgz#dc4a36c8276d92712cc9fbf60fa4ae0a5fdb6a86" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/helper-wrap-function" "7.0.0-beta.52" - "@babel/plugin-syntax-function-sent" "7.0.0-beta.52" - -"@babel/plugin-proposal-json-strings@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.0.0-beta.52.tgz#64e6a2d45925f3447747028b7e103420964245d5" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-syntax-json-strings" "7.0.0-beta.52" - -"@babel/plugin-proposal-logical-assignment-operators@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.0.0-beta.52.tgz#0980d7a96c9facc2918e956a82c57d7cd07d0856" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-syntax-logical-assignment-operators" "7.0.0-beta.52" - -"@babel/plugin-proposal-nullish-coalescing-operator@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.0.0-beta.52.tgz#4436ea10499855a849e671d650c14939e6678d21" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-syntax-nullish-coalescing-operator" "7.0.0-beta.52" - "@babel/plugin-proposal-numeric-separator@7.0.0-beta.52": version "7.0.0-beta.52" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.0.0-beta.52.tgz#4a4c9c628d00dd3d64c38efdee5439d111b8cf3b" @@ -405,27 +348,6 @@ "@babel/helper-plugin-utils" "7.0.0-beta.52" "@babel/plugin-syntax-optional-catch-binding" "7.0.0-beta.52" -"@babel/plugin-proposal-optional-chaining@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.0.0-beta.52.tgz#075e501e236bc026e9123f91137c971a79526f57" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-syntax-optional-chaining" "7.0.0-beta.52" - -"@babel/plugin-proposal-pipeline-operator@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-pipeline-operator/-/plugin-proposal-pipeline-operator-7.0.0-beta.52.tgz#a154d50ee1a5acb1ce8f84840e3673159059f823" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-syntax-pipeline-operator" "7.0.0-beta.52" - -"@babel/plugin-proposal-throw-expressions@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-throw-expressions/-/plugin-proposal-throw-expressions-7.0.0-beta.52.tgz#fd6b5e99b8957a1515cb67cb67ea3cfa65208746" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-syntax-throw-expressions" "7.0.0-beta.52" - "@babel/plugin-proposal-unicode-property-regex@7.0.0-beta.52": version "7.0.0-beta.52" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.0.0-beta.52.tgz#3791a9a7c2a4a54fb39aa4fb70ed78d8b8210ca3" @@ -446,30 +368,6 @@ dependencies: "@babel/helper-plugin-utils" "7.0.0-beta.52" -"@babel/plugin-syntax-decorators@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.0.0-beta.52.tgz#22731b89c84395b971f2d572e7a4d5d10ff5c867" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - -"@babel/plugin-syntax-do-expressions@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-do-expressions/-/plugin-syntax-do-expressions-7.0.0-beta.52.tgz#d94aa7781a163e4307538e26500b6d2184254427" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - -"@babel/plugin-syntax-dynamic-import@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.0.0-beta.52.tgz#a2d9c7de13df9f8c259b5ecbd1582aae01ce2077" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - -"@babel/plugin-syntax-export-default-from@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.0.0-beta.52.tgz#9e48190447e48f7720811f9903c93f305cbc4a13" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-syntax-export-namespace-from@7.0.0-beta.52": version "7.0.0-beta.52" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.0.0-beta.52.tgz#e14c7f138f265f9e26e533cacfae0ef46170cfa9" @@ -482,42 +380,6 @@ dependencies: "@babel/helper-plugin-utils" "7.0.0-beta.52" -"@babel/plugin-syntax-function-bind@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-function-bind/-/plugin-syntax-function-bind-7.0.0-beta.52.tgz#4636f8414c2cf09eb27c01b76696d4136e36c9b2" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - -"@babel/plugin-syntax-function-sent@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-function-sent/-/plugin-syntax-function-sent-7.0.0-beta.52.tgz#3209635a8902876b2d5c801b3786997215d60207" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - -"@babel/plugin-syntax-import-meta@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.0.0-beta.52.tgz#b7f9e8929b7b112333f60428c6fb958f6487ff47" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - -"@babel/plugin-syntax-json-strings@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.0.0-beta.52.tgz#b2215255a919c628cdb9f0ed4eae8d8e69c759f4" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - -"@babel/plugin-syntax-logical-assignment-operators@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.0.0-beta.52.tgz#dbd5e24999fdcd9c071a960cc71b8ac2451ab5c8" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - -"@babel/plugin-syntax-nullish-coalescing-operator@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.0.0-beta.52.tgz#06c4d6f3054e04b26685e3a7775050b3bed20e04" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-syntax-numeric-separator@7.0.0-beta.52": version "7.0.0-beta.52" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.0.0-beta.52.tgz#4514264019b8fead3af36d5e873bc1ac004e9aa9" @@ -536,24 +398,6 @@ dependencies: "@babel/helper-plugin-utils" "7.0.0-beta.52" -"@babel/plugin-syntax-optional-chaining@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.0.0-beta.52.tgz#75a69988519ac6c6b2f699e7dd9fa5c3619e46c6" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - -"@babel/plugin-syntax-pipeline-operator@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-pipeline-operator/-/plugin-syntax-pipeline-operator-7.0.0-beta.52.tgz#ee7891771d0763c75d0ecd1864f23d862445b88a" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - -"@babel/plugin-syntax-throw-expressions@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-throw-expressions/-/plugin-syntax-throw-expressions-7.0.0-beta.52.tgz#6fdfba95cefad5bad0fd045a4a6223aafa5fcfe2" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-transform-arrow-functions@7.0.0-beta.52": version "7.0.0-beta.52" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.0.0-beta.52.tgz#85e7e84ccf065e7292ec60019ecb616b360cbf18" @@ -801,53 +645,6 @@ "@babel/helper-plugin-utils" "7.0.0-beta.52" "@babel/plugin-transform-flow-strip-types" "7.0.0-beta.52" -"@babel/preset-stage-0@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/preset-stage-0/-/preset-stage-0-7.0.0-beta.52.tgz#93d467b64c264b9f48cb1bbc0d22e68fc4c0ffe0" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-proposal-function-bind" "7.0.0-beta.52" - "@babel/preset-stage-1" "7.0.0-beta.52" - -"@babel/preset-stage-1@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/preset-stage-1/-/preset-stage-1-7.0.0-beta.52.tgz#1c759ad44471ef27cfcec559f6d4a656cbca9712" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-proposal-do-expressions" "7.0.0-beta.52" - "@babel/plugin-proposal-export-default-from" "7.0.0-beta.52" - "@babel/plugin-proposal-logical-assignment-operators" "7.0.0-beta.52" - "@babel/plugin-proposal-nullish-coalescing-operator" "7.0.0-beta.52" - "@babel/plugin-proposal-optional-chaining" "7.0.0-beta.52" - "@babel/plugin-proposal-pipeline-operator" "7.0.0-beta.52" - "@babel/preset-stage-2" "7.0.0-beta.52" - -"@babel/preset-stage-2@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/preset-stage-2/-/preset-stage-2-7.0.0-beta.52.tgz#1d62bceaa419516bf1aeafd112bcb0714cf83755" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-proposal-decorators" "7.0.0-beta.52" - "@babel/plugin-proposal-export-namespace-from" "7.0.0-beta.52" - "@babel/plugin-proposal-function-sent" "7.0.0-beta.52" - "@babel/plugin-proposal-numeric-separator" "7.0.0-beta.52" - "@babel/plugin-proposal-throw-expressions" "7.0.0-beta.52" - "@babel/preset-stage-3" "7.0.0-beta.52" - -"@babel/preset-stage-3@7.0.0-beta.52": - version "7.0.0-beta.52" - resolved "https://registry.yarnpkg.com/@babel/preset-stage-3/-/preset-stage-3-7.0.0-beta.52.tgz#d477a5be2c08f09577e0864a13897e33923a8143" - dependencies: - "@babel/helper-plugin-utils" "7.0.0-beta.52" - "@babel/plugin-proposal-async-generator-functions" "7.0.0-beta.52" - "@babel/plugin-proposal-class-properties" "7.0.0-beta.52" - "@babel/plugin-proposal-json-strings" "7.0.0-beta.52" - "@babel/plugin-proposal-object-rest-spread" "7.0.0-beta.52" - "@babel/plugin-proposal-optional-catch-binding" "7.0.0-beta.52" - "@babel/plugin-proposal-unicode-property-regex" "7.0.0-beta.52" - "@babel/plugin-syntax-dynamic-import" "7.0.0-beta.52" - "@babel/plugin-syntax-import-meta" "7.0.0-beta.52" - "@babel/register@7.0.0-beta.52": version "7.0.0-beta.52" resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.0.0-beta.52.tgz#011f925e087919ac3a75a3e8b8606d1d224046e5"