From 272209ace5ef127adbad5800e84d5d36bca4ab4b Mon Sep 17 00:00:00 2001 From: Henry Zhu Date: Thu, 1 Jun 2017 15:13:17 -0400 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20=20Alpha=2012=20(#5808)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix usage of codeframe --- package.json | 12 +- .../src/transformation/file/index.js | 8 +- .../babel-traverse/src/path/replacement.js | 8 +- yarn.lock | 981 ++++++++---------- 4 files changed, 465 insertions(+), 544 deletions(-) diff --git a/package.json b/package.json index 278982c063..56751cfe9d 100644 --- a/package.json +++ b/package.json @@ -10,14 +10,14 @@ }, "devDependencies": { "async": "^1.5.0", - "babel-cli": "7.0.0-alpha.9", - "babel-core": "7.0.0-alpha.9", + "babel-cli": "7.0.0-alpha.12", + "babel-core": "7.0.0-alpha.12", "babel-eslint": "^7.0.0", "babel-plugin-istanbul": "^2.0.1", - "babel-preset-env": "2.0.0-alpha.7", - "babel-preset-flow": "7.0.0-alpha.9", - "babel-preset-stage-0": "7.0.0-alpha.9", - "babel-register": "7.0.0-alpha.9", + "babel-preset-env": "2.0.0-alpha.12", + "babel-preset-flow": "7.0.0-alpha.12", + "babel-preset-stage-0": "7.0.0-alpha.12", + "babel-register": "7.0.0-alpha.12", "browserify": "^13.1.1", "bundle-collapser": "^1.2.1", "chai": "^3.5.0", diff --git a/packages/babel-core/src/transformation/file/index.js b/packages/babel-core/src/transformation/file/index.js index 52b8a35d81..4304b8b83f 100644 --- a/packages/babel-core/src/transformation/file/index.js +++ b/packages/babel-core/src/transformation/file/index.js @@ -432,7 +432,13 @@ export default class File extends Store { const loc = err.loc; if (loc) { - err.codeFrame = codeFrame(code, loc.line, loc.column + 1, this.opts); + const location = { + start: { + line: loc.line, + column: loc.column + 1, + }, + }; + err.codeFrame = codeFrame(code, location, this.opts); message += "\n" + err.codeFrame; } diff --git a/packages/babel-traverse/src/path/replacement.js b/packages/babel-traverse/src/path/replacement.js index b021f6c895..93baff7319 100644 --- a/packages/babel-traverse/src/path/replacement.js +++ b/packages/babel-traverse/src/path/replacement.js @@ -74,8 +74,14 @@ export function replaceWithSourceString(replacement) { } catch (err) { const loc = err.loc; if (loc) { + const location = { + start: { + line: loc.line, + column: loc.column + 1, + }, + }; err.message += " - make sure this is an expression."; - err.message += "\n" + codeFrame(replacement, loc.line, loc.column + 1); + err.message += "\n" + codeFrame(replacement, location); } throw err; } diff --git a/yarn.lock b/yarn.lock index 997a08ce36..a5a1aa418a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -228,13 +228,13 @@ aws4@^1.2.1: version "1.5.0" resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" -babel-cli@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-7.0.0-alpha.9.tgz#4d32556e5b97b71b5dd273ee672f2e5d9f862ef5" +babel-cli@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-7.0.0-alpha.12.tgz#4200da463739c9b3d2872f0c492dde4a9f59090b" dependencies: - babel-core "7.0.0-alpha.9" - babel-polyfill "7.0.0-alpha.9" - babel-register "7.0.0-alpha.9" + babel-core "7.0.0-alpha.12" + babel-polyfill "7.0.0-alpha.12" + babel-register "7.0.0-alpha.12" commander "^2.8.1" convert-source-map "^1.1.0" fs-readdir-recursive "^1.0.0" @@ -247,17 +247,17 @@ babel-cli@7.0.0-alpha.9: optionalDependencies: chokidar "^1.6.1" -babel-code-frame@7.0.0-alpha.3: - version "7.0.0-alpha.3" - resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-7.0.0-alpha.3.tgz#9ff265eaaac94b58dfc7ca4a4eecf389d5f4d344" +babel-code-frame@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-7.0.0-alpha.12.tgz#26fbb2eab1c20763271fecb6b04a108756fae61f" dependencies: chalk "^1.1.0" esutils "^2.0.2" js-tokens "^3.0.0" -babel-code-frame@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-7.0.0-alpha.9.tgz#b861deec3e9f744a30405137d4ad0216ccef0cba" +babel-code-frame@7.0.0-alpha.3: + version "7.0.0-alpha.3" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-7.0.0-alpha.3.tgz#9ff265eaaac94b58dfc7ca4a4eecf389d5f4d344" dependencies: chalk "^1.1.0" esutils "^2.0.2" @@ -271,18 +271,18 @@ babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: esutils "^2.0.2" js-tokens "^3.0.0" -babel-core@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-alpha.9.tgz#1868005f160dbcd2325e6b3472f3f9ea010a9313" +babel-core@7.0.0-alpha.12, babel-core@^7.0.0-alpha.6: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-alpha.12.tgz#fcc785e16a93f9d50933e8cdf025287f03a297a1" dependencies: - babel-code-frame "7.0.0-alpha.9" - babel-generator "7.0.0-alpha.9" - babel-helpers "7.0.0-alpha.9" - babel-messages "7.0.0-alpha.9" - babel-template "7.0.0-alpha.9" - babel-traverse "7.0.0-alpha.9" - babel-types "7.0.0-alpha.9" - babylon "7.0.0-beta.8" + babel-code-frame "7.0.0-alpha.12" + babel-generator "7.0.0-alpha.12" + babel-helpers "7.0.0-alpha.12" + babel-messages "7.0.0-alpha.12" + babel-template "7.0.0-alpha.12" + babel-traverse "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" + babylon "7.0.0-beta.12" convert-source-map "^1.1.0" debug "^2.1.1" json5 "^0.5.0" @@ -293,30 +293,6 @@ babel-core@7.0.0-alpha.9: slash "^1.0.0" source-map "^0.5.0" -babel-core@^6.0.2, babel-core@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.1.tgz#8c428564dce1e1f41fb337ec34f4c3b022b5ad83" - dependencies: - babel-code-frame "^6.22.0" - babel-generator "^6.24.1" - babel-helpers "^6.24.1" - babel-messages "^6.23.0" - babel-register "^6.24.1" - babel-runtime "^6.22.0" - babel-template "^6.24.1" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - babylon "^6.11.0" - convert-source-map "^1.1.0" - debug "^2.1.1" - json5 "^0.5.0" - lodash "^4.2.0" - minimatch "^3.0.2" - path-is-absolute "^1.0.0" - private "^0.1.6" - slash "^1.0.0" - source-map "^0.5.0" - babel-eslint@^7.0.0: version "7.1.1" resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2" @@ -327,12 +303,12 @@ babel-eslint@^7.0.0: babylon "^6.13.0" lodash.pickby "^4.6.0" -babel-generator@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-7.0.0-alpha.9.tgz#4b4f41963e70beda87d94a3d358a6caf86172692" +babel-generator@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-7.0.0-alpha.12.tgz#dfe00027589d7fe27f03129c5a82a67907f1ed4d" dependencies: - babel-messages "7.0.0-alpha.9" - babel-types "7.0.0-alpha.9" + babel-messages "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" detect-indent "^4.0.0" jsesc "^1.3.0" lodash "^4.2.0" @@ -351,66 +327,59 @@ babel-generator@^6.18.0: lodash "^4.2.0" source-map "^0.5.0" -babel-generator@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.1.tgz#e715f486c58ded25649d888944d52aa07c5d9497" +babel-helper-builder-binary-assignment-operator-visitor@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-7.0.0-alpha.12.tgz#60b19d499ef29cc9e52e6a5cedc5809a443278a8" dependencies: - babel-messages "^6.23.0" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - detect-indent "^4.0.0" - jsesc "^1.3.0" - lodash "^4.2.0" - source-map "^0.5.0" - trim-right "^1.0.1" + babel-helper-explode-assignable-expression "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" -babel-helper-builder-binary-assignment-operator-visitor@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-7.0.0-alpha.8.tgz#38daf02a4854f62ca3cc3accc731faa24dc018dd" +babel-helper-call-delegate@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-7.0.0-alpha.12.tgz#289db14fe362deff5a4019a8adeb3e0e353e4b64" dependencies: - babel-helper-explode-assignable-expression "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" + babel-helper-hoist-variables "7.0.0-alpha.12" + babel-traverse "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" -babel-helper-call-delegate@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-7.0.0-alpha.8.tgz#1fd7ec16f331d0d49af227a4f6f91381d4b6ab23" +babel-helper-define-map@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-7.0.0-alpha.12.tgz#c9081153fe579c387b10e1d67e9965011e6ba837" dependencies: - babel-helper-hoist-variables "7.0.0-alpha.7" - babel-traverse "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" - -babel-helper-define-map@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-7.0.0-alpha.8.tgz#a2d1e7a08a6a0b803441d70256e193d0a6b466a2" - dependencies: - babel-helper-function-name "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" + babel-helper-function-name "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" lodash "^4.2.0" -babel-helper-explode-assignable-expression@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-7.0.0-alpha.8.tgz#ee2e88e0c44fd68961a8df197ccedc39f6e0df3a" +babel-helper-explode-assignable-expression@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-7.0.0-alpha.12.tgz#c745b10b516e64c6aeed999d92f0e6ce8fa661e4" dependencies: - babel-traverse "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" + babel-traverse "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" -babel-helper-function-name@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-7.0.0-alpha.8.tgz#b28e20f4c356713b7cf5ef5bc7b28ee2588c8fb1" +babel-helper-function-name@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-7.0.0-alpha.12.tgz#69ad0d8df236cefa8824989148742ba757ea459b" + dependencies: + babel-helper-get-function-arity "7.0.0-alpha.12" + babel-template "7.0.0-alpha.12" + babel-traverse "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" + +babel-helper-function-name@7.0.0-alpha.7: + version "7.0.0-alpha.7" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-7.0.0-alpha.7.tgz#19aecddc5402f941c5726802993077b41ea9832d" dependencies: babel-helper-get-function-arity "7.0.0-alpha.7" - babel-template "7.0.0-alpha.8" - babel-traverse "7.0.0-alpha.8" + babel-template "7.0.0-alpha.7" + babel-traverse "7.0.0-alpha.7" babel-types "7.0.0-alpha.7" -babel-helper-function-name@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-7.0.0-alpha.9.tgz#03d62dd9e68385085668367fce861a8a5b30a886" +babel-helper-get-function-arity@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-7.0.0-alpha.12.tgz#91f44a26eda18b0ab336cf0aa4e3127813798d3d" dependencies: - babel-helper-get-function-arity "7.0.0-alpha.9" - babel-template "7.0.0-alpha.9" - babel-traverse "7.0.0-alpha.9" - babel-types "7.0.0-alpha.9" + babel-types "7.0.0-alpha.12" babel-helper-get-function-arity@7.0.0-alpha.7: version "7.0.0-alpha.7" @@ -418,29 +387,23 @@ babel-helper-get-function-arity@7.0.0-alpha.7: dependencies: babel-types "7.0.0-alpha.7" -babel-helper-get-function-arity@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-7.0.0-alpha.9.tgz#6c55e28e30d111074ab5a5f5881a7569d6f1dcbc" +babel-helper-hoist-variables@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-7.0.0-alpha.12.tgz#1f602862faafce666efb7da1141eb1c40486e9c6" dependencies: - babel-types "7.0.0-alpha.9" + babel-types "7.0.0-alpha.12" -babel-helper-hoist-variables@7.0.0-alpha.7: - version "7.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-7.0.0-alpha.7.tgz#79251e91183322c656d210677a509b642165b8e8" +babel-helper-optimise-call-expression@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-7.0.0-alpha.12.tgz#93dd70fd7f6e08f31d16cae1cb9da5cdfa8f2d27" dependencies: - babel-types "7.0.0-alpha.7" + babel-types "7.0.0-alpha.12" -babel-helper-optimise-call-expression@7.0.0-alpha.7: - version "7.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-7.0.0-alpha.7.tgz#87af3403ee4a23e2b5d7800158b67a88ff55004a" +babel-helper-regex@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-7.0.0-alpha.12.tgz#1e2196c720661cc9499e55fa77663efa462304c6" dependencies: - babel-types "7.0.0-alpha.7" - -babel-helper-regex@7.0.0-alpha.7: - version "7.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-7.0.0-alpha.7.tgz#fbf219c2a79a08a360525e3048a44ba53d163575" - dependencies: - babel-types "7.0.0-alpha.7" + babel-types "7.0.0-alpha.12" lodash "^4.2.0" babel-helper-regex@^6.18.0: @@ -451,54 +414,38 @@ babel-helper-regex@^6.18.0: babel-types "^6.22.0" lodash "^4.2.0" -babel-helper-remap-async-to-generator@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-7.0.0-alpha.8.tgz#329424026a321be871c02e96b1baea85b906c399" +babel-helper-remap-async-to-generator@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-7.0.0-alpha.12.tgz#11fe927190bac445e43c39425d32ab8e29cd1251" dependencies: - babel-helper-function-name "7.0.0-alpha.8" - babel-template "7.0.0-alpha.8" - babel-traverse "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" + babel-helper-function-name "7.0.0-alpha.12" + babel-template "7.0.0-alpha.12" + babel-traverse "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" -babel-helper-remap-async-to-generator@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-7.0.0-alpha.9.tgz#22fce32bd1d66c206d766a74ca948149836d04ff" +babel-helper-replace-supers@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-7.0.0-alpha.12.tgz#7076b465db69dc2fd98163e87b93823c260db016" dependencies: - babel-helper-function-name "7.0.0-alpha.9" - babel-template "7.0.0-alpha.9" - babel-traverse "7.0.0-alpha.9" - babel-types "7.0.0-alpha.9" + babel-helper-optimise-call-expression "7.0.0-alpha.12" + babel-messages "7.0.0-alpha.12" + babel-template "7.0.0-alpha.12" + babel-traverse "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" -babel-helper-replace-supers@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-7.0.0-alpha.8.tgz#f7354ace21088676a2c378c68671095b04d53e78" +babel-helpers@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-7.0.0-alpha.12.tgz#08b8c26a349fe0c56f117c478ad1e7a4f33064e2" dependencies: - babel-helper-optimise-call-expression "7.0.0-alpha.7" - babel-messages "7.0.0-alpha.8" - babel-template "7.0.0-alpha.8" - babel-traverse "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" + babel-template "7.0.0-alpha.12" -babel-helpers@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-7.0.0-alpha.9.tgz#653f391654e0c18556e78d39fe58fd7f9e730f27" - dependencies: - babel-template "7.0.0-alpha.9" +babel-messages@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-7.0.0-alpha.12.tgz#5fda840cb8dfeda06a7894a1e8ab1af695f249c0" -babel-helpers@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" - dependencies: - babel-runtime "^6.22.0" - babel-template "^6.24.1" - -babel-messages@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-7.0.0-alpha.8.tgz#6fb3eee1e1209491636992a3ed4806e75bbdcdb4" - -babel-messages@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-7.0.0-alpha.9.tgz#472b5e7158c4b3fded5eec0fb76f0ad930cb4ea8" +babel-messages@7.0.0-alpha.3: + version "7.0.0-alpha.3" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-7.0.0-alpha.3.tgz#c8390a468478b8384da134612e12a6bc31a684e9" babel-messages@^6.22.0: version "6.22.0" @@ -506,15 +453,9 @@ babel-messages@^6.22.0: dependencies: babel-runtime "^6.22.0" -babel-messages@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-check-es2015-constants@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-7.0.0-alpha.8.tgz#318ad0481c76b5c8c8f85693e8e4f625234f326b" +babel-plugin-check-es2015-constants@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-7.0.0-alpha.12.tgz#1ff06be9cc9f1dd7d23f3817b3db844e98fe274a" babel-plugin-istanbul@^2.0.1: version "2.0.3" @@ -525,269 +466,279 @@ babel-plugin-istanbul@^2.0.1: object-assign "^4.1.0" test-exclude "^2.1.1" -babel-plugin-syntax-async-functions@7.0.0-alpha.3: - version "7.0.0-alpha.3" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-7.0.0-alpha.3.tgz#f07c8bb1b4c6d7fad16f2f4265feecf9a68ad6db" +babel-plugin-syntax-async-functions@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-7.0.0-alpha.12.tgz#d1a9bfdf5333919e0aae1333d9f9ca2cbd550a1e" -babel-plugin-syntax-async-generators@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-7.0.0-alpha.9.tgz#2e19abfde0da639e6bfae5872ef66e4e1a8a9375" +babel-plugin-syntax-async-generators@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-7.0.0-alpha.12.tgz#0db51b46a9f8636f173b7d1fd43a15dab86a2059" -babel-plugin-syntax-class-properties@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-7.0.0-alpha.9.tgz#a79f336c5aa729fac70b20790157ebc81bb41c13" +babel-plugin-syntax-class-properties@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-7.0.0-alpha.12.tgz#debe4c688eb6b4898149b841368f173d26a8eb32" -babel-plugin-syntax-decorators@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-7.0.0-alpha.9.tgz#5b2b6d7c549f5dd10c9c44cdb85a1b8ff62089e6" +babel-plugin-syntax-decorators@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-7.0.0-alpha.12.tgz#747dcf5d005fdf2179c09edc88b486e84bc26dad" -babel-plugin-syntax-do-expressions@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-7.0.0-alpha.9.tgz#82974b4e3052e826b883b69b89ab2ec06528d0e8" +babel-plugin-syntax-do-expressions@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-7.0.0-alpha.12.tgz#dcf8966f299a37b8c33c7c70c93bab42295762fa" -babel-plugin-syntax-dynamic-import@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-7.0.0-alpha.9.tgz#84cc7ad10524082a59fe6c5dd1714fb5d8fac226" +babel-plugin-syntax-dynamic-import@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-7.0.0-alpha.12.tgz#7f547c6989505becb4b3b730b7b4b324e4e309e5" -babel-plugin-syntax-exponentiation-operator@7.0.0-alpha.3: - version "7.0.0-alpha.3" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-7.0.0-alpha.3.tgz#2924e248b106d02880565707bf633b67370f5a85" +babel-plugin-syntax-exponentiation-operator@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-7.0.0-alpha.12.tgz#e6edf279bf0d703dd58e8adffa28b7a99b666286" -babel-plugin-syntax-export-extensions@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-7.0.0-alpha.9.tgz#563924d129942d6209989bba2ee57ee1f602d62e" +babel-plugin-syntax-export-extensions@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-7.0.0-alpha.12.tgz#42bd678efde9431d6965748e8753ca4c00d9b878" -babel-plugin-syntax-flow@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-7.0.0-alpha.9.tgz#63937567c4179bf23fa6b1c954ba6ab2090e8ba1" +babel-plugin-syntax-flow@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-7.0.0-alpha.12.tgz#8c1b26c26bd802ff2b67b886c32bd2891227d93c" -babel-plugin-syntax-function-bind@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-7.0.0-alpha.9.tgz#e5cd183b0950ccbac310a3d85286a09bc3840054" +babel-plugin-syntax-function-bind@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-7.0.0-alpha.12.tgz#655e899ec283384a694a25f0d84302815d31a8f2" -babel-plugin-syntax-object-rest-spread@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-7.0.0-alpha.9.tgz#4b9c6d325dede89e9f7374e1381833528d5d31d7" +babel-plugin-syntax-numeric-separator@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-numeric-separator/-/babel-plugin-syntax-numeric-separator-7.0.0-alpha.12.tgz#57a69533e67ed3f9fa215eecf7c0745ef78bdce1" -babel-plugin-syntax-trailing-function-commas@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-alpha.8.tgz#63559104587ae4f958550158baf565fee413b02a" +babel-plugin-syntax-object-rest-spread@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-7.0.0-alpha.12.tgz#b62b9027778a8ae79c3b2f82f18a52145c438cf4" -babel-plugin-transform-async-generator-functions@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-7.0.0-alpha.9.tgz#24bc94904b70adf4174ef3b85a0f222fcb11f937" +babel-plugin-syntax-trailing-function-commas@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-alpha.12.tgz#41c9c4d215eeaa56b9ff8c23d8bb72d24653cf48" + +babel-plugin-transform-async-generator-functions@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-7.0.0-alpha.12.tgz#ca2a5882a92edb346815067d5109c53c30b6e58b" dependencies: - babel-helper-remap-async-to-generator "7.0.0-alpha.9" - babel-plugin-syntax-async-generators "7.0.0-alpha.9" + babel-helper-remap-async-to-generator "7.0.0-alpha.12" + babel-plugin-syntax-async-generators "7.0.0-alpha.12" -babel-plugin-transform-async-to-generator@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-7.0.0-alpha.8.tgz#12b1dff4caaf6f830a1f95e88772084b498844a3" +babel-plugin-transform-async-to-generator@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-7.0.0-alpha.12.tgz#3ea07723a5600b90af447c2d858b2a5141d203fa" dependencies: - babel-helper-remap-async-to-generator "7.0.0-alpha.8" - babel-plugin-syntax-async-functions "7.0.0-alpha.3" + babel-helper-remap-async-to-generator "7.0.0-alpha.12" + babel-plugin-syntax-async-functions "7.0.0-alpha.12" -babel-plugin-transform-class-properties@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-7.0.0-alpha.9.tgz#2beb155476d7db0c26c4d548d3fe53ce8af1dcb5" +babel-plugin-transform-class-properties@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-7.0.0-alpha.12.tgz#f7092def18f154d1b299b8db4f3e8c74c41c97ee" dependencies: - babel-helper-function-name "7.0.0-alpha.9" - babel-plugin-syntax-class-properties "7.0.0-alpha.9" - babel-template "7.0.0-alpha.9" + babel-helper-function-name "7.0.0-alpha.12" + babel-plugin-syntax-class-properties "7.0.0-alpha.12" + babel-template "7.0.0-alpha.12" -babel-plugin-transform-decorators@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-7.0.0-alpha.9.tgz#848a3d6cc58360fbf3bb27fe6ce56438b4b7fb2b" +babel-plugin-transform-decorators@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-7.0.0-alpha.12.tgz#dac49553e91df8572d0454dfb666f6aed3d4f377" dependencies: - babel-plugin-syntax-decorators "7.0.0-alpha.9" - babel-template "7.0.0-alpha.9" + babel-plugin-syntax-decorators "7.0.0-alpha.12" + babel-template "7.0.0-alpha.12" -babel-plugin-transform-do-expressions@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-7.0.0-alpha.9.tgz#0127887eecfa32a617ea6b771f194f8d8eb37653" +babel-plugin-transform-do-expressions@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-7.0.0-alpha.12.tgz#bdd938248ee8de32f1cd9b90db153f8e9214a34b" dependencies: - babel-plugin-syntax-do-expressions "7.0.0-alpha.9" + babel-plugin-syntax-do-expressions "7.0.0-alpha.12" -babel-plugin-transform-es2015-arrow-functions@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-7.0.0-alpha.8.tgz#687c40022147a32fa18b4bd3ffe0b5209f121d41" +babel-plugin-transform-es2015-arrow-functions@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-7.0.0-alpha.12.tgz#e1a6060ef2bc785bea194bd59b9218a3e3998bb5" -babel-plugin-transform-es2015-block-scoped-functions@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-7.0.0-alpha.8.tgz#7e919e20c49b02e7859cd2b1230f00e13487500d" +babel-plugin-transform-es2015-block-scoped-functions@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-7.0.0-alpha.12.tgz#81a3c39a1fbdbea2ced92d2d8d89dc8114c6cc2a" -babel-plugin-transform-es2015-block-scoping@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-7.0.0-alpha.8.tgz#f40b12787629e5bb5fd131b8105c1d19a955d2ae" +babel-plugin-transform-es2015-block-scoping@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-7.0.0-alpha.12.tgz#70626c492a88a52d3238d74c5bc002f359cb90c5" dependencies: - babel-template "7.0.0-alpha.8" - babel-traverse "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" + babel-template "7.0.0-alpha.12" + babel-traverse "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" lodash "^4.2.0" -babel-plugin-transform-es2015-classes@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-7.0.0-alpha.8.tgz#7e111d6a2b15e674b5778d3ae9df672a62845c27" +babel-plugin-transform-es2015-classes@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-7.0.0-alpha.12.tgz#601c7d1bfe298a69a5a2a9f9f80146b9e0bced1d" dependencies: - babel-helper-define-map "7.0.0-alpha.8" - babel-helper-function-name "7.0.0-alpha.8" - babel-helper-optimise-call-expression "7.0.0-alpha.7" - babel-helper-replace-supers "7.0.0-alpha.8" - babel-messages "7.0.0-alpha.8" - babel-template "7.0.0-alpha.8" - babel-traverse "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" + babel-helper-define-map "7.0.0-alpha.12" + babel-helper-function-name "7.0.0-alpha.12" + babel-helper-optimise-call-expression "7.0.0-alpha.12" + babel-helper-replace-supers "7.0.0-alpha.12" + babel-messages "7.0.0-alpha.12" + babel-template "7.0.0-alpha.12" + babel-traverse "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" -babel-plugin-transform-es2015-computed-properties@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-7.0.0-alpha.8.tgz#03b023f20a9d7670676d8fe04ba9d5c3bdde23e3" +babel-plugin-transform-es2015-computed-properties@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-7.0.0-alpha.12.tgz#1b8beb7c252295abdd93141a563c2098422ba5b1" dependencies: - babel-template "7.0.0-alpha.8" + babel-template "7.0.0-alpha.12" -babel-plugin-transform-es2015-destructuring@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-7.0.0-alpha.8.tgz#6c7fbed6f8c4ec53adc80f271e04f3cf94b6b8b5" +babel-plugin-transform-es2015-destructuring@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-7.0.0-alpha.12.tgz#a0d8756c9e29d05487c9154cc16e19e038765e56" -babel-plugin-transform-es2015-duplicate-keys@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-7.0.0-alpha.8.tgz#6504225ef5cc8acbab1812cdc63af5422d2a02be" +babel-plugin-transform-es2015-duplicate-keys@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-7.0.0-alpha.12.tgz#9fcbc1a7620ce4a2fc5ce71c2dede7e5e9a32656" dependencies: - babel-types "7.0.0-alpha.7" + babel-types "7.0.0-alpha.12" -babel-plugin-transform-es2015-for-of@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-7.0.0-alpha.8.tgz#6b37fe234bbc52079daad332e85ed4d9cb1a3fc2" +babel-plugin-transform-es2015-for-of@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-7.0.0-alpha.12.tgz#e68fee124da6e5789c2f0e69845dc727a1ca078e" -babel-plugin-transform-es2015-function-name@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-7.0.0-alpha.8.tgz#e48d9585ed33d7653c9b1bff5910bd9f6b391a59" +babel-plugin-transform-es2015-function-name@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-7.0.0-alpha.12.tgz#0885430a1e2a9d40452ce8685a39bab4b77b4fce" dependencies: - babel-helper-function-name "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" + babel-helper-function-name "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" -babel-plugin-transform-es2015-literals@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-7.0.0-alpha.8.tgz#c3d78bc9ffe5193afaadf1b21929075b9991f150" +babel-plugin-transform-es2015-literals@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-7.0.0-alpha.12.tgz#1b7ad7b803ba0349c22b47a764ae68ebf69faed6" -babel-plugin-transform-es2015-modules-amd@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-7.0.0-alpha.8.tgz#77451a4c5a4744f55586e5f147756f29b3b4d851" +babel-plugin-transform-es2015-modules-amd@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-7.0.0-alpha.12.tgz#7ae180ff063d53632c6b2f7cf8fd1a7cadb4da67" dependencies: - babel-plugin-transform-es2015-modules-commonjs "7.0.0-alpha.8" - babel-template "7.0.0-alpha.8" + babel-plugin-transform-es2015-modules-commonjs "7.0.0-alpha.12" + babel-template "7.0.0-alpha.12" -babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.8.tgz#e86f997a8c36fb2d2f6641fd20903087929d5e91" +babel-plugin-transform-es2015-modules-commonjs@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-alpha.12.tgz#73441a8dfa0e48c17ce02afae95444d996dde2cb" dependencies: - babel-plugin-transform-strict-mode "7.0.0-alpha.8" - babel-template "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" + babel-plugin-transform-strict-mode "7.0.0-alpha.12" + babel-template "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" -babel-plugin-transform-es2015-modules-systemjs@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-7.0.0-alpha.8.tgz#212bf0e3c07231c012d9176bca5fdd68410dd599" +babel-plugin-transform-es2015-modules-systemjs@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-7.0.0-alpha.12.tgz#e43564a441df4b4b7771f3e4a3b1d2860480c990" dependencies: - babel-helper-hoist-variables "7.0.0-alpha.7" - babel-template "7.0.0-alpha.8" + babel-helper-hoist-variables "7.0.0-alpha.12" + babel-template "7.0.0-alpha.12" -babel-plugin-transform-es2015-modules-umd@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-7.0.0-alpha.8.tgz#65e866cda069514d2de19f2ab7360a765e2ed1b3" +babel-plugin-transform-es2015-modules-umd@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-7.0.0-alpha.12.tgz#a8bc11e2d93d928a2c94cc1b9d9822b1b023d3a5" dependencies: - babel-plugin-transform-es2015-modules-amd "7.0.0-alpha.8" - babel-template "7.0.0-alpha.8" + babel-plugin-transform-es2015-modules-amd "7.0.0-alpha.12" + babel-template "7.0.0-alpha.12" -babel-plugin-transform-es2015-object-super@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-7.0.0-alpha.8.tgz#cffdd0fb416d2fa558e1440b00efe2eabd4232d6" +babel-plugin-transform-es2015-object-super@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-7.0.0-alpha.12.tgz#a5344782259b89b4d5a11a0dbf4e91664b45f2b0" dependencies: - babel-helper-replace-supers "7.0.0-alpha.8" + babel-helper-replace-supers "7.0.0-alpha.12" -babel-plugin-transform-es2015-parameters@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-7.0.0-alpha.8.tgz#12cd45d0caa8a378bd6088bc6e8efd9f0e604631" +babel-plugin-transform-es2015-parameters@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-7.0.0-alpha.12.tgz#8be93b7e70680138e192efe0d7449a8e9303f9d4" dependencies: - babel-helper-call-delegate "7.0.0-alpha.8" - babel-helper-get-function-arity "7.0.0-alpha.7" - babel-template "7.0.0-alpha.8" - babel-traverse "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" + babel-helper-call-delegate "7.0.0-alpha.12" + babel-helper-get-function-arity "7.0.0-alpha.12" + babel-template "7.0.0-alpha.12" + babel-traverse "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" -babel-plugin-transform-es2015-shorthand-properties@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-7.0.0-alpha.8.tgz#8a5e62d129a92866cb7ced398ba50abe8020c82c" +babel-plugin-transform-es2015-shorthand-properties@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-7.0.0-alpha.12.tgz#c220d2b3074c02409b0a585554081e0025aa461d" dependencies: - babel-types "7.0.0-alpha.7" + babel-types "7.0.0-alpha.12" -babel-plugin-transform-es2015-spread@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-7.0.0-alpha.8.tgz#cf4b03d978ce3beb4c770865ef2a1f41ab4f9675" +babel-plugin-transform-es2015-spread@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-7.0.0-alpha.12.tgz#142b9924dc8fb3d264225125773388c90904acc5" -babel-plugin-transform-es2015-sticky-regex@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-7.0.0-alpha.8.tgz#529b7cca63f759ddd7b2af31e421a1160cc0da24" +babel-plugin-transform-es2015-sticky-regex@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-7.0.0-alpha.12.tgz#6a2e84dea9191b04af8b469419e0bf6214b06850" dependencies: - babel-helper-regex "7.0.0-alpha.7" - babel-types "7.0.0-alpha.7" + babel-helper-regex "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" -babel-plugin-transform-es2015-template-literals@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-7.0.0-alpha.8.tgz#076273c1e6e92a7a9151d7499d8ef7eeda4b0f7a" +babel-plugin-transform-es2015-template-literals@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-7.0.0-alpha.12.tgz#b40808dec9c40e145d96d321222635de071db9fe" -babel-plugin-transform-es2015-typeof-symbol@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-7.0.0-alpha.8.tgz#942a1e789cfe2305febdc8074b8f9c3650b844bb" +babel-plugin-transform-es2015-typeof-symbol@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-7.0.0-alpha.12.tgz#c89044a6e459a21511165cd510ff50ee9c117b14" -babel-plugin-transform-es2015-unicode-regex@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-7.0.0-alpha.8.tgz#9800d48662384fc9a0dbd2fa1fdd18163afecc7d" +babel-plugin-transform-es2015-unicode-regex@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-7.0.0-alpha.12.tgz#eeca9cfd781fd9e99d98bd2b41bde37029f152d3" dependencies: - babel-helper-regex "7.0.0-alpha.7" + babel-helper-regex "7.0.0-alpha.12" regexpu-core "^4.0.2" -babel-plugin-transform-exponentiation-operator@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-7.0.0-alpha.8.tgz#a4fd185a83284be4858b72fca675508ae87ea96c" +babel-plugin-transform-exponentiation-operator@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-7.0.0-alpha.12.tgz#1a5cc0c6f40d723ecfdaa2bf406a317a4803f4ec" dependencies: - babel-helper-builder-binary-assignment-operator-visitor "7.0.0-alpha.8" - babel-plugin-syntax-exponentiation-operator "7.0.0-alpha.3" + babel-helper-builder-binary-assignment-operator-visitor "7.0.0-alpha.12" + babel-plugin-syntax-exponentiation-operator "7.0.0-alpha.12" -babel-plugin-transform-export-extensions@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-7.0.0-alpha.9.tgz#aa18c659c446cfeb73f57a188fdd52b0b2b1c663" +babel-plugin-transform-export-extensions@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-7.0.0-alpha.12.tgz#de44650248bea6e309c445e13b41bb7f531c1d84" dependencies: - babel-plugin-syntax-export-extensions "7.0.0-alpha.9" + babel-plugin-syntax-export-extensions "7.0.0-alpha.12" -babel-plugin-transform-flow-strip-types@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-7.0.0-alpha.9.tgz#2902fbbaa9b17216eea35349b6e38557a100965b" +babel-plugin-transform-flow-strip-types@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-7.0.0-alpha.12.tgz#7f6747204af74612fe37258c185d0035266d5292" dependencies: - babel-plugin-syntax-flow "7.0.0-alpha.9" + babel-plugin-syntax-flow "7.0.0-alpha.12" -babel-plugin-transform-function-bind@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-7.0.0-alpha.9.tgz#e8c55c154d6c2992251ddff82ff2c03189e2d78a" +babel-plugin-transform-function-bind@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-7.0.0-alpha.12.tgz#74fa161205232e20b8a38e655d07e2775e8b14e4" dependencies: - babel-plugin-syntax-function-bind "7.0.0-alpha.9" + babel-plugin-syntax-function-bind "7.0.0-alpha.12" -babel-plugin-transform-object-rest-spread@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.9.tgz#3a87b7cd92e3e33e42135777ab6148ee2b035cd7" +babel-plugin-transform-numeric-separator@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-numeric-separator/-/babel-plugin-transform-numeric-separator-7.0.0-alpha.12.tgz#93da8d89b7dd1f995b7d347a8f2456295f51a863" dependencies: - babel-plugin-syntax-object-rest-spread "7.0.0-alpha.9" + babel-plugin-syntax-numeric-separator "7.0.0-alpha.12" -babel-plugin-transform-regenerator@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-7.0.0-alpha.8.tgz#747500fcf167475b3e920b38227e4ee62ba49eb6" +babel-plugin-transform-object-rest-spread@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-alpha.12.tgz#a90231e13377e623f1dc440cdbc800ea9da7a81d" + dependencies: + babel-plugin-syntax-object-rest-spread "7.0.0-alpha.12" + +babel-plugin-transform-regenerator@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-7.0.0-alpha.12.tgz#0d9cceead1c7bb76480f24fe3b550f28c0da2736" dependencies: regenerator-transform "0.9.11" -babel-plugin-transform-strict-mode@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-7.0.0-alpha.8.tgz#de4b3f408f1623d9ab0438d959200adca6ba66ad" +babel-plugin-transform-strict-mode@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-7.0.0-alpha.12.tgz#b6e64a2cb89705ceea244052e8d51e43207e13fc" dependencies: - babel-types "7.0.0-alpha.7" + babel-types "7.0.0-alpha.12" babel-plugin-transform-unicode-property-regex@^2.0.0: version "2.0.1" @@ -797,138 +748,129 @@ babel-plugin-transform-unicode-property-regex@^2.0.0: babel-runtime "^6.23.0" regexpu-core "^4.0.4" -babel-polyfill@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-7.0.0-alpha.9.tgz#d565d2695bfed7ab07c812093e1f3222107e8fb8" +babel-polyfill@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-7.0.0-alpha.12.tgz#8701d802b63bb53f4e5dee3bc363cd53ee201d00" dependencies: core-js "^2.4.0" regenerator-runtime "^0.10.0" -babel-preset-env@2.0.0-alpha.7: - version "2.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-2.0.0-alpha.7.tgz#aa78a3ffe17eeb94de5d576cdfb6466ca8031fb0" +babel-preset-env@2.0.0-alpha.12: + version "2.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-2.0.0-alpha.12.tgz#4dba4f917fcf0947c64985f71daa4287f37e1a8e" dependencies: - babel-plugin-check-es2015-constants "7.0.0-alpha.8" - babel-plugin-syntax-trailing-function-commas "7.0.0-alpha.8" - babel-plugin-transform-async-to-generator "7.0.0-alpha.8" - babel-plugin-transform-es2015-arrow-functions "7.0.0-alpha.8" - babel-plugin-transform-es2015-block-scoped-functions "7.0.0-alpha.8" - babel-plugin-transform-es2015-block-scoping "7.0.0-alpha.8" - babel-plugin-transform-es2015-classes "7.0.0-alpha.8" - babel-plugin-transform-es2015-computed-properties "7.0.0-alpha.8" - babel-plugin-transform-es2015-destructuring "7.0.0-alpha.8" - babel-plugin-transform-es2015-duplicate-keys "7.0.0-alpha.8" - babel-plugin-transform-es2015-for-of "7.0.0-alpha.8" - babel-plugin-transform-es2015-function-name "7.0.0-alpha.8" - babel-plugin-transform-es2015-literals "7.0.0-alpha.8" - babel-plugin-transform-es2015-modules-amd "7.0.0-alpha.8" - babel-plugin-transform-es2015-modules-commonjs "7.0.0-alpha.8" - babel-plugin-transform-es2015-modules-systemjs "7.0.0-alpha.8" - babel-plugin-transform-es2015-modules-umd "7.0.0-alpha.8" - babel-plugin-transform-es2015-object-super "7.0.0-alpha.8" - babel-plugin-transform-es2015-parameters "7.0.0-alpha.8" - babel-plugin-transform-es2015-shorthand-properties "7.0.0-alpha.8" - babel-plugin-transform-es2015-spread "7.0.0-alpha.8" - babel-plugin-transform-es2015-sticky-regex "7.0.0-alpha.8" - babel-plugin-transform-es2015-template-literals "7.0.0-alpha.8" - babel-plugin-transform-es2015-typeof-symbol "7.0.0-alpha.8" - babel-plugin-transform-es2015-unicode-regex "7.0.0-alpha.8" - babel-plugin-transform-exponentiation-operator "7.0.0-alpha.8" - babel-plugin-transform-regenerator "7.0.0-alpha.8" - browserslist "^1.4.0" + babel-plugin-check-es2015-constants "7.0.0-alpha.12" + babel-plugin-syntax-trailing-function-commas "7.0.0-alpha.12" + babel-plugin-transform-async-to-generator "7.0.0-alpha.12" + babel-plugin-transform-es2015-arrow-functions "7.0.0-alpha.12" + babel-plugin-transform-es2015-block-scoped-functions "7.0.0-alpha.12" + babel-plugin-transform-es2015-block-scoping "7.0.0-alpha.12" + babel-plugin-transform-es2015-classes "7.0.0-alpha.12" + babel-plugin-transform-es2015-computed-properties "7.0.0-alpha.12" + babel-plugin-transform-es2015-destructuring "7.0.0-alpha.12" + babel-plugin-transform-es2015-duplicate-keys "7.0.0-alpha.12" + babel-plugin-transform-es2015-for-of "7.0.0-alpha.12" + babel-plugin-transform-es2015-function-name "7.0.0-alpha.12" + babel-plugin-transform-es2015-literals "7.0.0-alpha.12" + babel-plugin-transform-es2015-modules-amd "7.0.0-alpha.12" + babel-plugin-transform-es2015-modules-commonjs "7.0.0-alpha.12" + babel-plugin-transform-es2015-modules-systemjs "7.0.0-alpha.12" + babel-plugin-transform-es2015-modules-umd "7.0.0-alpha.12" + babel-plugin-transform-es2015-object-super "7.0.0-alpha.12" + babel-plugin-transform-es2015-parameters "7.0.0-alpha.12" + babel-plugin-transform-es2015-shorthand-properties "7.0.0-alpha.12" + babel-plugin-transform-es2015-spread "7.0.0-alpha.12" + babel-plugin-transform-es2015-sticky-regex "7.0.0-alpha.12" + babel-plugin-transform-es2015-template-literals "7.0.0-alpha.12" + babel-plugin-transform-es2015-typeof-symbol "7.0.0-alpha.12" + babel-plugin-transform-es2015-unicode-regex "7.0.0-alpha.12" + babel-plugin-transform-exponentiation-operator "7.0.0-alpha.12" + babel-plugin-transform-regenerator "7.0.0-alpha.12" + browserslist "^2.1.2" invariant "^2.2.2" semver "^5.3.0" -babel-preset-flow@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-7.0.0-alpha.9.tgz#d2693287bf9b4c2391d7c527ef1a3d7352cd605a" +babel-preset-flow@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-7.0.0-alpha.12.tgz#ba9454e9ac6c92f7699c53681a7089065f29ef64" dependencies: - babel-plugin-transform-flow-strip-types "7.0.0-alpha.9" + babel-plugin-transform-flow-strip-types "7.0.0-alpha.12" -babel-preset-stage-0@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-7.0.0-alpha.9.tgz#c05bac07cc2c52f57dfbf60159e43839f23c5892" +babel-preset-stage-0@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-7.0.0-alpha.12.tgz#571006a878a341db6892cdb7c038e7caae28b46e" dependencies: - babel-plugin-transform-do-expressions "7.0.0-alpha.9" - babel-plugin-transform-function-bind "7.0.0-alpha.9" - babel-preset-stage-1 "7.0.0-alpha.9" + babel-plugin-transform-do-expressions "7.0.0-alpha.12" + babel-plugin-transform-function-bind "7.0.0-alpha.12" + babel-preset-stage-1 "7.0.0-alpha.12" -babel-preset-stage-1@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-7.0.0-alpha.9.tgz#594a008e3e4d24ca2a2160827864e1446c58fd9c" +babel-preset-stage-1@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-7.0.0-alpha.12.tgz#688f065b35ec4e5858ffa38fa2cffa53a43a6b00" dependencies: - babel-plugin-transform-decorators "7.0.0-alpha.9" - babel-plugin-transform-export-extensions "7.0.0-alpha.9" - babel-preset-stage-2 "7.0.0-alpha.9" + babel-plugin-transform-decorators "7.0.0-alpha.12" + babel-plugin-transform-export-extensions "7.0.0-alpha.12" + babel-plugin-transform-numeric-separator "7.0.0-alpha.12" + babel-preset-stage-2 "7.0.0-alpha.12" -babel-preset-stage-2@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-7.0.0-alpha.9.tgz#9e08dcae2163389ceab90019ab1f9f6839987b6b" +babel-preset-stage-2@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-7.0.0-alpha.12.tgz#e1f8203ef617bf4ea91d77e2df06c11cc0019d32" dependencies: - babel-plugin-transform-class-properties "7.0.0-alpha.9" + babel-plugin-transform-class-properties "7.0.0-alpha.12" babel-plugin-transform-unicode-property-regex "^2.0.0" - babel-preset-stage-3 "7.0.0-alpha.9" + babel-preset-stage-3 "7.0.0-alpha.12" -babel-preset-stage-3@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-7.0.0-alpha.9.tgz#9c4fe45075f8bdff0e7213c4224b5b9aa99ddd63" +babel-preset-stage-3@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-7.0.0-alpha.12.tgz#eea816d2447fc38f1a27f4621fa08dda0c37016e" dependencies: - babel-plugin-syntax-dynamic-import "7.0.0-alpha.9" - babel-plugin-transform-async-generator-functions "7.0.0-alpha.9" - babel-plugin-transform-object-rest-spread "7.0.0-alpha.9" + babel-plugin-syntax-dynamic-import "7.0.0-alpha.12" + babel-plugin-transform-async-generator-functions "7.0.0-alpha.12" + babel-plugin-transform-object-rest-spread "7.0.0-alpha.12" -babel-register@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-7.0.0-alpha.9.tgz#580216ae64b58f009273ac413c87eb9ffe97ead9" +babel-register@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-7.0.0-alpha.12.tgz#d7fbae2981567b360607bb31783906d692cd7f6f" dependencies: - babel-core "7.0.0-alpha.9" + babel-core "7.0.0-alpha.12" core-js "^2.4.0" + find-cache-dir "^0.1.1" home-or-tmp "^3.0.0" lodash "^4.2.0" mkdirp "^0.5.1" + pirates "^3.0.1" source-map-support "^0.4.2" -babel-register@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" - dependencies: - babel-core "^6.24.1" - babel-runtime "^6.22.0" - core-js "^2.4.0" - home-or-tmp "^2.0.0" - lodash "^4.2.0" - mkdirp "^0.5.1" - source-map-support "^0.4.2" - -babel-runtime@^6.18.0, babel-runtime@^6.22.0: - version "6.22.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611" - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.10.0" - -babel-runtime@^6.23.0: +babel-runtime@^6.18.0, babel-runtime@^6.23.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" dependencies: core-js "^2.4.0" regenerator-runtime "^0.10.0" -babel-template@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-7.0.0-alpha.8.tgz#d3784ccbca118fa61f91be56d0fb09a75b78e8e3" +babel-runtime@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611" dependencies: - babel-traverse "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" - babylon "7.0.0-beta.8" + core-js "^2.4.0" + regenerator-runtime "^0.10.0" + +babel-template@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-7.0.0-alpha.12.tgz#f41e395ab0bb9ea26d04e968cdcf703adbaec78a" + dependencies: + babel-traverse "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" + babylon "7.0.0-beta.12" lodash "^4.2.0" -babel-template@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-7.0.0-alpha.9.tgz#e32c51ea13f8ed391ed4a1c9adcfd3ed9ca928dc" +babel-template@7.0.0-alpha.7: + version "7.0.0-alpha.7" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-7.0.0-alpha.7.tgz#82e26500980d1b3f14d9ebe8ae8b9325dc158392" dependencies: - babel-traverse "7.0.0-alpha.9" - babel-types "7.0.0-alpha.9" + babel-traverse "7.0.0-alpha.7" + babel-types "7.0.0-alpha.7" babylon "7.0.0-beta.8" lodash "^4.2.0" @@ -942,36 +884,27 @@ babel-template@^6.16.0: babylon "^6.11.0" lodash "^4.2.0" -babel-template@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.24.1.tgz#04ae514f1f93b3a2537f2a0f60a5a45fb8308333" +babel-traverse@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-7.0.0-alpha.12.tgz#0c0855a60287e56e54cf61ea9f135cdf759d6ad0" dependencies: - babel-runtime "^6.22.0" - babel-traverse "^6.24.1" - babel-types "^6.24.1" - babylon "^6.11.0" - lodash "^4.2.0" - -babel-traverse@7.0.0-alpha.8: - version "7.0.0-alpha.8" - resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-7.0.0-alpha.8.tgz#c2a727265c9e0c36d1d64e28407bad4904e1dd3d" - dependencies: - babel-code-frame "7.0.0-alpha.3" - babel-messages "7.0.0-alpha.8" - babel-types "7.0.0-alpha.7" - babylon "7.0.0-beta.8" + babel-code-frame "7.0.0-alpha.12" + babel-helper-function-name "7.0.0-alpha.7" + babel-messages "7.0.0-alpha.12" + babel-types "7.0.0-alpha.12" + babylon "7.0.0-beta.12" debug "^2.2.0" globals "^9.0.0" invariant "^2.2.0" lodash "^4.2.0" -babel-traverse@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-7.0.0-alpha.9.tgz#749abf53c908ca80a8c96f5ca958d33732e0714f" +babel-traverse@7.0.0-alpha.7: + version "7.0.0-alpha.7" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-7.0.0-alpha.7.tgz#61cc89061b0ad0a5f9fc6df81117fac428bc4148" dependencies: - babel-code-frame "7.0.0-alpha.9" - babel-messages "7.0.0-alpha.9" - babel-types "7.0.0-alpha.9" + babel-code-frame "7.0.0-alpha.3" + babel-messages "7.0.0-alpha.3" + babel-types "7.0.0-alpha.7" babylon "7.0.0-beta.8" debug "^2.2.0" globals "^9.0.0" @@ -992,31 +925,17 @@ babel-traverse@^6.15.0, babel-traverse@^6.18.0, babel-traverse@^6.22.0: invariant "^2.2.0" lodash "^4.2.0" -babel-traverse@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.24.1.tgz#ab36673fd356f9a0948659e7b338d5feadb31695" - dependencies: - babel-code-frame "^6.22.0" - babel-messages "^6.23.0" - babel-runtime "^6.22.0" - babel-types "^6.24.1" - babylon "^6.15.0" - debug "^2.2.0" - globals "^9.0.0" - invariant "^2.2.0" - lodash "^4.2.0" - -babel-types@7.0.0-alpha.7: - version "7.0.0-alpha.7" - resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-7.0.0-alpha.7.tgz#4bdb77386d1f6e2001f42fa9ac21b6c3d6ad0d82" +babel-types@7.0.0-alpha.12: + version "7.0.0-alpha.12" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-7.0.0-alpha.12.tgz#d7b2c6d0c49c518fd36de5ac14f4f50bed6de7e5" dependencies: esutils "^2.0.2" lodash "^4.2.0" to-fast-properties "^1.0.1" -babel-types@7.0.0-alpha.9: - version "7.0.0-alpha.9" - resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-7.0.0-alpha.9.tgz#45e48b93cecdd9d306ab6953d7819622a7c1462b" +babel-types@7.0.0-alpha.7: + version "7.0.0-alpha.7" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-7.0.0-alpha.7.tgz#4bdb77386d1f6e2001f42fa9ac21b6c3d6ad0d82" dependencies: esutils "^2.0.2" lodash "^4.2.0" @@ -1031,14 +950,9 @@ babel-types@^6.15.0, babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.22 lodash "^4.2.0" to-fast-properties "^1.0.1" -babel-types@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.24.1.tgz#a136879dc15b3606bda0d90c1fc74304c2ff0975" - dependencies: - babel-runtime "^6.22.0" - esutils "^2.0.2" - lodash "^4.2.0" - to-fast-properties "^1.0.1" +babylon@7.0.0-beta.12: + version "7.0.0-beta.12" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.12.tgz#f7b9c8a89ff7d6afb57b906d947a4237f9bf53f9" babylon@7.0.0-beta.8: version "7.0.0-beta.8" @@ -1247,12 +1161,12 @@ browserify@^13.1.1: vm-browserify "~0.0.1" xtend "^4.0.0" -browserslist@^1.4.0: - version "1.7.7" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" +browserslist@^2.1.2: + version "2.1.4" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.1.4.tgz#cc526af4a1312b7d2e05653e56d0c8ab70c0e053" dependencies: - caniuse-db "^1.0.30000639" - electron-to-chromium "^1.2.7" + caniuse-lite "^1.0.30000670" + electron-to-chromium "^1.3.11" buffer-shims@^1.0.0: version "1.0.0" @@ -1334,9 +1248,9 @@ camelcase@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" -caniuse-db@^1.0.30000639: - version "1.0.30000640" - resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000640.tgz#7b7fd3cf13c0d9d41f8754b577b202113e2be7ca" +caniuse-lite@^1.0.30000670: + version "1.0.30000676" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000676.tgz#1e962123f48073f0c51c4ea0651dd64d25786498" caseless@~0.11.0: version "0.11.0" @@ -1982,9 +1896,9 @@ ecc-jsbn@~0.1.1: dependencies: jsbn "~0.1.0" -electron-to-chromium@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.2.8.tgz#22c2e6200d350da27d6050db7e3f6f85d18cf4ed" +electron-to-chromium@^1.3.11: + version "1.3.13" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.13.tgz#1b3a5eace6e087bb5e257a100b0cbfe81b2891fc" elliptic@^6.0.0: version "6.3.2" @@ -2850,13 +2764,6 @@ hoek@2.x.x: version "2.16.3" resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" -home-or-tmp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.1" - home-or-tmp@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-3.0.0.tgz#57a8fe24cf33cdd524860a15821ddc25c86671fb" @@ -3857,6 +3764,10 @@ natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" +node-modules-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" + node-pre-gyp@^0.6.29: version "0.6.32" resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5" @@ -4030,7 +3941,7 @@ os-locale@^1.4.0: dependencies: lcid "^1.0.0" -os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: +os-tmpdir@^1.0.0, os-tmpdir@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" @@ -4189,6 +4100,12 @@ pinkie@^2.0.0: version "2.0.4" resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" +pirates@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-3.0.1.tgz#8a87bf9ab7f58d6c3deee6a1a1c892ffe823811f" + dependencies: + node-modules-regexp "^1.0.0" + pkg-dir@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" @@ -4556,15 +4473,15 @@ right-align@^0.1.1: dependencies: align-text "^0.1.1" -rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2.5.4, rimraf@~2.5.1, rimraf@~2.5.4: - version "2.5.4" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" +rimraf@2, rimraf@^2.2.8, rimraf@^2.3.3, rimraf@^2.4.4, rimraf@^2.5.4, rimraf@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" dependencies: glob "^7.0.5" -rimraf@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" +rimraf@^2.4.3, rimraf@~2.5.1, rimraf@~2.5.4: + version "2.5.4" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" dependencies: glob "^7.0.5" @@ -5339,15 +5256,7 @@ wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" -write-file-atomic@^1.1.4: - version "1.3.1" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.1.tgz#7d45ba32316328dd1ec7d90f60ebc0d845bb759a" - dependencies: - graceful-fs "^4.1.11" - imurmurhash "^0.1.4" - slide "^1.1.5" - -write-file-atomic@^1.3.3: +write-file-atomic@^1.1.4, write-file-atomic@^1.3.3: version "1.3.4" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" dependencies: