babel upgrade
Summary: upgrading to babel 7 and upgrading all presets and plugins as well Reviewed By: passy Differential Revision: D9940733 fbshipit-source-id: 24f45c78a9452899e6fb140a56028dd9fa0b5ea3
This commit is contained in:
committed by
Facebook Github Bot
parent
2b4193a013
commit
5a492951f5
@@ -4,14 +4,14 @@
|
|||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/core": "^7.0.0-beta.40",
|
"@babel/core": "^7.1.0",
|
||||||
"@babel/generator": "^7.0.0-beta.40",
|
"@babel/generator": "^7.0.0",
|
||||||
"babel-plugin-transform-class-properties": "^7.0.0-beta.3",
|
"@babel/parser": "^7.1.0",
|
||||||
"babel-plugin-transform-es2015-modules-commonjs": "^7.0.0-beta.3",
|
"@babel/plugin-proposal-class-properties": "^7.1.0",
|
||||||
"babel-plugin-transform-flow-strip-types": "^7.0.0-beta.3",
|
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
|
||||||
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
|
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
|
||||||
"babel-preset-react": "^7.0.0-beta.3",
|
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
|
||||||
"babylon": "^7.0.0-beta.40",
|
"@babel/preset-react": "^7.0.0",
|
||||||
"metro": "^0.45.3",
|
"metro": "^0.45.3",
|
||||||
"recursive-readdir": "2.2.2"
|
"recursive-readdir": "2.2.2"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,12 +6,12 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
const generate = require('@babel/generator').default;
|
const generate = require('@babel/generator').default;
|
||||||
const babylon = require('babylon');
|
const babylon = require('@babel/parser');
|
||||||
const babel = require('@babel/core');
|
const babel = require('@babel/core');
|
||||||
const metro = require('metro');
|
const metro = require('metro');
|
||||||
|
|
||||||
exports.transform = function({filename, options, src}) {
|
exports.transform = function({filename, options, src}) {
|
||||||
const presets = [require('../node_modules/babel-preset-react')];
|
const presets = [require('../node_modules/@babel/preset-react')];
|
||||||
const isPlugin = !__dirname.startsWith(options.projectRoot);
|
const isPlugin = !__dirname.startsWith(options.projectRoot);
|
||||||
|
|
||||||
let ast = babylon.parse(src, {
|
let ast = babylon.parse(src, {
|
||||||
@@ -22,9 +22,10 @@ exports.transform = function({filename, options, src}) {
|
|||||||
|
|
||||||
// run babel
|
// run babel
|
||||||
const plugins = [
|
const plugins = [
|
||||||
require('../node_modules/babel-plugin-transform-object-rest-spread'),
|
require('../node_modules/@babel/plugin-transform-modules-commonjs'),
|
||||||
require('../node_modules/babel-plugin-transform-class-properties'),
|
require('../node_modules/@babel/plugin-proposal-object-rest-spread'),
|
||||||
require('../node_modules/babel-plugin-transform-flow-strip-types'),
|
require('../node_modules/@babel/plugin-proposal-class-properties'),
|
||||||
|
require('../node_modules/@babel/plugin-transform-flow-strip-types'),
|
||||||
require('./electron-requires.js'),
|
require('./electron-requires.js'),
|
||||||
require('./fb-stubs.js'),
|
require('./fb-stubs.js'),
|
||||||
require('./dynamic-requires.js'),
|
require('./dynamic-requires.js'),
|
||||||
@@ -34,9 +35,9 @@ exports.transform = function({filename, options, src}) {
|
|||||||
} else {
|
} else {
|
||||||
plugins.push(require('./import-react.js'));
|
plugins.push(require('./import-react.js'));
|
||||||
}
|
}
|
||||||
plugins.unshift(require('babel-plugin-transform-es2015-modules-commonjs'));
|
|
||||||
|
|
||||||
ast = babel.transformFromAst(ast, src, {
|
ast = babel.transformFromAst(ast, src, {
|
||||||
|
ast: true,
|
||||||
babelrc: !filename.includes('node_modules'),
|
babelrc: !filename.includes('node_modules'),
|
||||||
code: false,
|
code: false,
|
||||||
comments: false,
|
comments: false,
|
||||||
@@ -46,6 +47,7 @@ exports.transform = function({filename, options, src}) {
|
|||||||
presets,
|
presets,
|
||||||
sourceMaps: true,
|
sourceMaps: true,
|
||||||
}).ast;
|
}).ast;
|
||||||
|
|
||||||
const result = generate(
|
const result = generate(
|
||||||
ast,
|
ast,
|
||||||
{
|
{
|
||||||
@@ -55,6 +57,7 @@ exports.transform = function({filename, options, src}) {
|
|||||||
},
|
},
|
||||||
src,
|
src,
|
||||||
);
|
);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
ast,
|
ast,
|
||||||
code: result.code,
|
code: result.code,
|
||||||
|
|||||||
307
static/yarn.lock
307
static/yarn.lock
@@ -2,12 +2,6 @@
|
|||||||
# yarn lockfile v1
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
"@babel/code-frame@7.0.0-beta.40":
|
|
||||||
version "7.0.0-beta.40"
|
|
||||||
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.40.tgz#37e2b0cf7c56026b4b21d3927cadf81adec32ac6"
|
|
||||||
dependencies:
|
|
||||||
"@babel/highlight" "7.0.0-beta.40"
|
|
||||||
|
|
||||||
"@babel/code-frame@^7.0.0":
|
"@babel/code-frame@^7.0.0":
|
||||||
version "7.0.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
|
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
|
||||||
@@ -15,7 +9,7 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@babel/highlight" "^7.0.0"
|
"@babel/highlight" "^7.0.0"
|
||||||
|
|
||||||
"@babel/core@^7.0.0":
|
"@babel/core@^7.0.0", "@babel/core@^7.1.0":
|
||||||
version "7.1.0"
|
version "7.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.1.0.tgz#08958f1371179f62df6966d8a614003d11faeb04"
|
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.1.0.tgz#08958f1371179f62df6966d8a614003d11faeb04"
|
||||||
integrity sha512-9EWmD0cQAbcXSc+31RIoYgEHx3KQ2CCSMDBhnXrShWvo45TMw+3/55KVxlhkG53kw9tl87DqINgHDgFVhZJV/Q==
|
integrity sha512-9EWmD0cQAbcXSc+31RIoYgEHx3KQ2CCSMDBhnXrShWvo45TMw+3/55KVxlhkG53kw9tl87DqINgHDgFVhZJV/Q==
|
||||||
@@ -35,35 +29,6 @@
|
|||||||
semver "^5.4.1"
|
semver "^5.4.1"
|
||||||
source-map "^0.5.0"
|
source-map "^0.5.0"
|
||||||
|
|
||||||
"@babel/core@^7.0.0-beta.40":
|
|
||||||
version "7.0.0-beta.40"
|
|
||||||
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.0.0-beta.40.tgz#455464dd81d499fd97d32b473f0331f74379a33f"
|
|
||||||
dependencies:
|
|
||||||
"@babel/code-frame" "7.0.0-beta.40"
|
|
||||||
"@babel/generator" "7.0.0-beta.40"
|
|
||||||
"@babel/helpers" "7.0.0-beta.40"
|
|
||||||
"@babel/template" "7.0.0-beta.40"
|
|
||||||
"@babel/traverse" "7.0.0-beta.40"
|
|
||||||
"@babel/types" "7.0.0-beta.40"
|
|
||||||
babylon "7.0.0-beta.40"
|
|
||||||
convert-source-map "^1.1.0"
|
|
||||||
debug "^3.0.1"
|
|
||||||
json5 "^0.5.0"
|
|
||||||
lodash "^4.2.0"
|
|
||||||
micromatch "^2.3.11"
|
|
||||||
resolve "^1.3.2"
|
|
||||||
source-map "^0.5.0"
|
|
||||||
|
|
||||||
"@babel/generator@7.0.0-beta.40", "@babel/generator@^7.0.0-beta.40":
|
|
||||||
version "7.0.0-beta.40"
|
|
||||||
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.40.tgz#ab61f9556f4f71dbd1138949c795bb9a21e302ea"
|
|
||||||
dependencies:
|
|
||||||
"@babel/types" "7.0.0-beta.40"
|
|
||||||
jsesc "^2.5.1"
|
|
||||||
lodash "^4.2.0"
|
|
||||||
source-map "^0.5.0"
|
|
||||||
trim-right "^1.0.1"
|
|
||||||
|
|
||||||
"@babel/generator@^7.0.0":
|
"@babel/generator@^7.0.0":
|
||||||
version "7.0.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0.tgz#1efd58bffa951dc846449e58ce3a1d7f02d393aa"
|
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0.tgz#1efd58bffa951dc846449e58ce3a1d7f02d393aa"
|
||||||
@@ -124,14 +89,6 @@
|
|||||||
"@babel/traverse" "^7.1.0"
|
"@babel/traverse" "^7.1.0"
|
||||||
"@babel/types" "^7.0.0"
|
"@babel/types" "^7.0.0"
|
||||||
|
|
||||||
"@babel/helper-function-name@7.0.0-beta.40":
|
|
||||||
version "7.0.0-beta.40"
|
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.40.tgz#9d033341ab16517f40d43a73f2d81fc431ccd7b6"
|
|
||||||
dependencies:
|
|
||||||
"@babel/helper-get-function-arity" "7.0.0-beta.40"
|
|
||||||
"@babel/template" "7.0.0-beta.40"
|
|
||||||
"@babel/types" "7.0.0-beta.40"
|
|
||||||
|
|
||||||
"@babel/helper-function-name@^7.1.0":
|
"@babel/helper-function-name@^7.1.0":
|
||||||
version "7.1.0"
|
version "7.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53"
|
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53"
|
||||||
@@ -141,12 +98,6 @@
|
|||||||
"@babel/template" "^7.1.0"
|
"@babel/template" "^7.1.0"
|
||||||
"@babel/types" "^7.0.0"
|
"@babel/types" "^7.0.0"
|
||||||
|
|
||||||
"@babel/helper-get-function-arity@7.0.0-beta.40":
|
|
||||||
version "7.0.0-beta.40"
|
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.40.tgz#ac0419cf067b0ec16453e1274f03878195791c6e"
|
|
||||||
dependencies:
|
|
||||||
"@babel/types" "7.0.0-beta.40"
|
|
||||||
|
|
||||||
"@babel/helper-get-function-arity@^7.0.0":
|
"@babel/helper-get-function-arity@^7.0.0":
|
||||||
version "7.0.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
|
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
|
||||||
@@ -252,14 +203,6 @@
|
|||||||
"@babel/traverse" "^7.1.0"
|
"@babel/traverse" "^7.1.0"
|
||||||
"@babel/types" "^7.0.0"
|
"@babel/types" "^7.0.0"
|
||||||
|
|
||||||
"@babel/helpers@7.0.0-beta.40":
|
|
||||||
version "7.0.0-beta.40"
|
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.0.0-beta.40.tgz#82f8e144f56b2896b1d624ca88ac4603023ececd"
|
|
||||||
dependencies:
|
|
||||||
"@babel/template" "7.0.0-beta.40"
|
|
||||||
"@babel/traverse" "7.0.0-beta.40"
|
|
||||||
"@babel/types" "7.0.0-beta.40"
|
|
||||||
|
|
||||||
"@babel/helpers@^7.1.0":
|
"@babel/helpers@^7.1.0":
|
||||||
version "7.1.0"
|
version "7.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.1.0.tgz#429bf0f0020be56a4242883432084e3d70a8a141"
|
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.1.0.tgz#429bf0f0020be56a4242883432084e3d70a8a141"
|
||||||
@@ -269,14 +212,6 @@
|
|||||||
"@babel/traverse" "^7.1.0"
|
"@babel/traverse" "^7.1.0"
|
||||||
"@babel/types" "^7.0.0"
|
"@babel/types" "^7.0.0"
|
||||||
|
|
||||||
"@babel/highlight@7.0.0-beta.40":
|
|
||||||
version "7.0.0-beta.40"
|
|
||||||
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.40.tgz#b43d67d76bf46e1d10d227f68cddcd263786b255"
|
|
||||||
dependencies:
|
|
||||||
chalk "^2.0.0"
|
|
||||||
esutils "^2.0.2"
|
|
||||||
js-tokens "^3.0.0"
|
|
||||||
|
|
||||||
"@babel/highlight@^7.0.0":
|
"@babel/highlight@^7.0.0":
|
||||||
version "7.0.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
|
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
|
||||||
@@ -298,7 +233,7 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@babel/helper-plugin-utils" "^7.0.0"
|
"@babel/helper-plugin-utils" "^7.0.0"
|
||||||
|
|
||||||
"@babel/plugin-proposal-class-properties@^7.0.0":
|
"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.1.0":
|
||||||
version "7.1.0"
|
version "7.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.1.0.tgz#9af01856b1241db60ec8838d84691aa0bd1e8df4"
|
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.1.0.tgz#9af01856b1241db60ec8838d84691aa0bd1e8df4"
|
||||||
integrity sha512-/PCJWN+CKt5v1xcGn4vnuu13QDoV+P7NcICP44BoonAJoPSGwVkgrXihFIQGiEjjPlUDBIw1cM7wYFLARS2/hw==
|
integrity sha512-/PCJWN+CKt5v1xcGn4vnuu13QDoV+P7NcICP44BoonAJoPSGwVkgrXihFIQGiEjjPlUDBIw1cM7wYFLARS2/hw==
|
||||||
@@ -495,7 +430,7 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@babel/helper-plugin-utils" "^7.0.0"
|
"@babel/helper-plugin-utils" "^7.0.0"
|
||||||
|
|
||||||
"@babel/plugin-transform-modules-commonjs@^7.0.0":
|
"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.1.0":
|
||||||
version "7.1.0"
|
version "7.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.1.0.tgz#0a9d86451cbbfb29bd15186306897c67f6f9a05c"
|
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.1.0.tgz#0a9d86451cbbfb29bd15186306897c67f6f9a05c"
|
||||||
integrity sha512-wtNwtMjn1XGwM0AXPspQgvmE6msSJP15CX2RVfpTSTNPLhKhaOjaIfBaVfj4iUZ/VrFSodcFedwtPg/NxwQlPA==
|
integrity sha512-wtNwtMjn1XGwM0AXPspQgvmE6msSJP15CX2RVfpTSTNPLhKhaOjaIfBaVfj4iUZ/VrFSodcFedwtPg/NxwQlPA==
|
||||||
@@ -527,6 +462,14 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@babel/helper-plugin-utils" "^7.0.0"
|
"@babel/helper-plugin-utils" "^7.0.0"
|
||||||
|
|
||||||
|
"@babel/plugin-transform-react-jsx-self@^7.0.0":
|
||||||
|
version "7.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.0.0.tgz#a84bb70fea302d915ea81d9809e628266bb0bc11"
|
||||||
|
integrity sha512-pymy+AK12WO4safW1HmBpwagUQRl9cevNX+82AIAtU1pIdugqcH+nuYP03Ja6B+N4gliAaKWAegIBL/ymALPHA==
|
||||||
|
dependencies:
|
||||||
|
"@babel/helper-plugin-utils" "^7.0.0"
|
||||||
|
"@babel/plugin-syntax-jsx" "^7.0.0"
|
||||||
|
|
||||||
"@babel/plugin-transform-react-jsx-source@^7.0.0":
|
"@babel/plugin-transform-react-jsx-source@^7.0.0":
|
||||||
version "7.0.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.0.0.tgz#28e00584f9598c0dd279f6280eee213fa0121c3c"
|
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.0.0.tgz#28e00584f9598c0dd279f6280eee213fa0121c3c"
|
||||||
@@ -598,6 +541,17 @@
|
|||||||
"@babel/helper-regex" "^7.0.0"
|
"@babel/helper-regex" "^7.0.0"
|
||||||
regexpu-core "^4.1.3"
|
regexpu-core "^4.1.3"
|
||||||
|
|
||||||
|
"@babel/preset-react@^7.0.0":
|
||||||
|
version "7.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0"
|
||||||
|
integrity sha512-oayxyPS4Zj+hF6Et11BwuBkmpgT/zMxyuZgFrMeZID6Hdh3dGlk4sHCAhdBCpuCKW2ppBfl2uCCetlrUIJRY3w==
|
||||||
|
dependencies:
|
||||||
|
"@babel/helper-plugin-utils" "^7.0.0"
|
||||||
|
"@babel/plugin-transform-react-display-name" "^7.0.0"
|
||||||
|
"@babel/plugin-transform-react-jsx" "^7.0.0"
|
||||||
|
"@babel/plugin-transform-react-jsx-self" "^7.0.0"
|
||||||
|
"@babel/plugin-transform-react-jsx-source" "^7.0.0"
|
||||||
|
|
||||||
"@babel/register@^7.0.0":
|
"@babel/register@^7.0.0":
|
||||||
version "7.0.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.0.0.tgz#fa634bae1bfa429f60615b754fc1f1d745edd827"
|
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.0.0.tgz#fa634bae1bfa429f60615b754fc1f1d745edd827"
|
||||||
@@ -611,15 +565,6 @@
|
|||||||
pirates "^4.0.0"
|
pirates "^4.0.0"
|
||||||
source-map-support "^0.5.9"
|
source-map-support "^0.5.9"
|
||||||
|
|
||||||
"@babel/template@7.0.0-beta.40":
|
|
||||||
version "7.0.0-beta.40"
|
|
||||||
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.40.tgz#034988c6424eb5c3268fe6a608626de1f4410fc8"
|
|
||||||
dependencies:
|
|
||||||
"@babel/code-frame" "7.0.0-beta.40"
|
|
||||||
"@babel/types" "7.0.0-beta.40"
|
|
||||||
babylon "7.0.0-beta.40"
|
|
||||||
lodash "^4.2.0"
|
|
||||||
|
|
||||||
"@babel/template@^7.0.0", "@babel/template@^7.1.0":
|
"@babel/template@^7.0.0", "@babel/template@^7.1.0":
|
||||||
version "7.1.0"
|
version "7.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.1.0.tgz#58cc9572e1bfe24fe1537fdf99d839d53e517e22"
|
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.1.0.tgz#58cc9572e1bfe24fe1537fdf99d839d53e517e22"
|
||||||
@@ -629,20 +574,6 @@
|
|||||||
"@babel/parser" "^7.1.0"
|
"@babel/parser" "^7.1.0"
|
||||||
"@babel/types" "^7.0.0"
|
"@babel/types" "^7.0.0"
|
||||||
|
|
||||||
"@babel/traverse@7.0.0-beta.40":
|
|
||||||
version "7.0.0-beta.40"
|
|
||||||
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.40.tgz#d140e449b2e093ef9fe1a2eecc28421ffb4e521e"
|
|
||||||
dependencies:
|
|
||||||
"@babel/code-frame" "7.0.0-beta.40"
|
|
||||||
"@babel/generator" "7.0.0-beta.40"
|
|
||||||
"@babel/helper-function-name" "7.0.0-beta.40"
|
|
||||||
"@babel/types" "7.0.0-beta.40"
|
|
||||||
babylon "7.0.0-beta.40"
|
|
||||||
debug "^3.0.1"
|
|
||||||
globals "^11.1.0"
|
|
||||||
invariant "^2.2.0"
|
|
||||||
lodash "^4.2.0"
|
|
||||||
|
|
||||||
"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0":
|
"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0":
|
||||||
version "7.1.0"
|
version "7.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.1.0.tgz#503ec6669387efd182c3888c4eec07bcc45d91b2"
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.1.0.tgz#503ec6669387efd182c3888c4eec07bcc45d91b2"
|
||||||
@@ -658,14 +589,6 @@
|
|||||||
globals "^11.1.0"
|
globals "^11.1.0"
|
||||||
lodash "^4.17.10"
|
lodash "^4.17.10"
|
||||||
|
|
||||||
"@babel/types@7.0.0-beta.40":
|
|
||||||
version "7.0.0-beta.40"
|
|
||||||
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.40.tgz#25c3d7aae14126abe05fcb098c65a66b6d6b8c14"
|
|
||||||
dependencies:
|
|
||||||
esutils "^2.0.2"
|
|
||||||
lodash "^4.2.0"
|
|
||||||
to-fast-properties "^2.0.0"
|
|
||||||
|
|
||||||
"@babel/types@^7.0.0":
|
"@babel/types@^7.0.0":
|
||||||
version "7.0.0"
|
version "7.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0.tgz#6e191793d3c854d19c6749989e3bc55f0e962118"
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0.tgz#6e191793d3c854d19c6749989e3bc55f0e962118"
|
||||||
@@ -781,14 +704,6 @@ aws4@^1.2.1:
|
|||||||
version "1.6.0"
|
version "1.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
|
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
|
||||||
|
|
||||||
babel-code-frame@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-7.0.0-beta.3.tgz#1614a91b2ba0e3848559f410bbacd030726899c9"
|
|
||||||
dependencies:
|
|
||||||
chalk "^2.0.0"
|
|
||||||
esutils "^2.0.2"
|
|
||||||
js-tokens "^3.0.0"
|
|
||||||
|
|
||||||
babel-code-frame@^6.26.0:
|
babel-code-frame@^6.26.0:
|
||||||
version "6.26.0"
|
version "6.26.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
|
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
|
||||||
@@ -797,13 +712,6 @@ babel-code-frame@^6.26.0:
|
|||||||
esutils "^2.0.2"
|
esutils "^2.0.2"
|
||||||
js-tokens "^3.0.2"
|
js-tokens "^3.0.2"
|
||||||
|
|
||||||
babel-helper-builder-react-jsx@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-7.0.0-beta.3.tgz#a3ff5d2427c4aec5af6b4376e7a5103c67508f8e"
|
|
||||||
dependencies:
|
|
||||||
babel-types "7.0.0-beta.3"
|
|
||||||
esutils "^2.0.0"
|
|
||||||
|
|
||||||
babel-helper-builder-react-jsx@^6.24.1:
|
babel-helper-builder-react-jsx@^6.24.1:
|
||||||
version "6.26.0"
|
version "6.26.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0"
|
resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0"
|
||||||
@@ -830,15 +738,6 @@ babel-helper-define-map@^6.24.1:
|
|||||||
babel-types "^6.26.0"
|
babel-types "^6.26.0"
|
||||||
lodash "^4.17.4"
|
lodash "^4.17.4"
|
||||||
|
|
||||||
babel-helper-function-name@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-7.0.0-beta.3.tgz#e86dd2eb2c09e06e392e79e203fc02427b24c871"
|
|
||||||
dependencies:
|
|
||||||
babel-helper-get-function-arity "7.0.0-beta.3"
|
|
||||||
babel-template "7.0.0-beta.3"
|
|
||||||
babel-traverse "7.0.0-beta.3"
|
|
||||||
babel-types "7.0.0-beta.3"
|
|
||||||
|
|
||||||
babel-helper-function-name@^6.24.1:
|
babel-helper-function-name@^6.24.1:
|
||||||
version "6.24.1"
|
version "6.24.1"
|
||||||
resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
|
resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
|
||||||
@@ -849,12 +748,6 @@ babel-helper-function-name@^6.24.1:
|
|||||||
babel-traverse "^6.24.1"
|
babel-traverse "^6.24.1"
|
||||||
babel-types "^6.24.1"
|
babel-types "^6.24.1"
|
||||||
|
|
||||||
babel-helper-get-function-arity@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-7.0.0-beta.3.tgz#61a47709318a31bc2db872f4be9b4c8447198be8"
|
|
||||||
dependencies:
|
|
||||||
babel-types "7.0.0-beta.3"
|
|
||||||
|
|
||||||
babel-helper-get-function-arity@^6.24.1:
|
babel-helper-get-function-arity@^6.24.1:
|
||||||
version "6.24.1"
|
version "6.24.1"
|
||||||
resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
|
resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
|
||||||
@@ -869,23 +762,6 @@ babel-helper-hoist-variables@^6.24.1:
|
|||||||
babel-runtime "^6.22.0"
|
babel-runtime "^6.22.0"
|
||||||
babel-types "^6.24.1"
|
babel-types "^6.24.1"
|
||||||
|
|
||||||
babel-helper-module-imports@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-helper-module-imports/-/babel-helper-module-imports-7.0.0-beta.3.tgz#e15764e3af9c8e11810c09f78f498a2bdc71585a"
|
|
||||||
dependencies:
|
|
||||||
babel-types "7.0.0-beta.3"
|
|
||||||
lodash "^4.2.0"
|
|
||||||
|
|
||||||
babel-helper-module-transforms@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-helper-module-transforms/-/babel-helper-module-transforms-7.0.0-beta.3.tgz#42ccfa323e2d3aaaf0f743e66c2e7a292dc064f7"
|
|
||||||
dependencies:
|
|
||||||
babel-helper-module-imports "7.0.0-beta.3"
|
|
||||||
babel-helper-simple-access "7.0.0-beta.3"
|
|
||||||
babel-template "7.0.0-beta.3"
|
|
||||||
babel-types "7.0.0-beta.3"
|
|
||||||
lodash "^4.2.0"
|
|
||||||
|
|
||||||
babel-helper-optimise-call-expression@^6.24.1:
|
babel-helper-optimise-call-expression@^6.24.1:
|
||||||
version "6.24.1"
|
version "6.24.1"
|
||||||
resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
|
resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
|
||||||
@@ -904,14 +780,6 @@ babel-helper-replace-supers@^6.24.1:
|
|||||||
babel-traverse "^6.24.1"
|
babel-traverse "^6.24.1"
|
||||||
babel-types "^6.24.1"
|
babel-types "^6.24.1"
|
||||||
|
|
||||||
babel-helper-simple-access@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-helper-simple-access/-/babel-helper-simple-access-7.0.0-beta.3.tgz#dee94c31289fca79076f7ced2d751a06e430756c"
|
|
||||||
dependencies:
|
|
||||||
babel-template "7.0.0-beta.3"
|
|
||||||
babel-types "7.0.0-beta.3"
|
|
||||||
lodash "^4.2.0"
|
|
||||||
|
|
||||||
babel-messages@^6.23.0:
|
babel-messages@^6.23.0:
|
||||||
version "6.23.0"
|
version "6.23.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
|
resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
|
||||||
@@ -924,34 +792,18 @@ babel-plugin-check-es2015-constants@^6.8.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
babel-runtime "^6.22.0"
|
babel-runtime "^6.22.0"
|
||||||
|
|
||||||
babel-plugin-syntax-class-properties@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-7.0.0-beta.3.tgz#84480d42dc9ec49f5f8e1e62fb435151cbbe11a3"
|
|
||||||
|
|
||||||
babel-plugin-syntax-class-properties@^6.8.0:
|
babel-plugin-syntax-class-properties@^6.8.0:
|
||||||
version "6.13.0"
|
version "6.13.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
|
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
|
||||||
|
|
||||||
babel-plugin-syntax-flow@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-7.0.0-beta.3.tgz#b96eceea4ffa380b95ccb21e8c75a556bffce879"
|
|
||||||
|
|
||||||
babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.8.0:
|
babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.8.0:
|
||||||
version "6.18.0"
|
version "6.18.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
|
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
|
||||||
|
|
||||||
babel-plugin-syntax-jsx@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-7.0.0-beta.3.tgz#e45983c652a50d3647dfa4acd9db5567c0c2b701"
|
|
||||||
|
|
||||||
babel-plugin-syntax-jsx@^6.8.0:
|
babel-plugin-syntax-jsx@^6.8.0:
|
||||||
version "6.18.0"
|
version "6.18.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
|
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
|
||||||
|
|
||||||
babel-plugin-syntax-object-rest-spread@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-7.0.0-beta.3.tgz#7f781c180899dafd88f132f69472397549be48e5"
|
|
||||||
|
|
||||||
babel-plugin-syntax-object-rest-spread@^6.8.0:
|
babel-plugin-syntax-object-rest-spread@^6.8.0:
|
||||||
version "6.13.0"
|
version "6.13.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
|
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
|
||||||
@@ -969,14 +821,6 @@ babel-plugin-transform-class-properties@^6.8.0:
|
|||||||
babel-runtime "^6.22.0"
|
babel-runtime "^6.22.0"
|
||||||
babel-template "^6.24.1"
|
babel-template "^6.24.1"
|
||||||
|
|
||||||
babel-plugin-transform-class-properties@^7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-7.0.0-beta.3.tgz#d7cf0e431512262499421d53582969503f24581a"
|
|
||||||
dependencies:
|
|
||||||
babel-helper-function-name "7.0.0-beta.3"
|
|
||||||
babel-plugin-syntax-class-properties "7.0.0-beta.3"
|
|
||||||
babel-template "7.0.0-beta.3"
|
|
||||||
|
|
||||||
babel-plugin-transform-es2015-arrow-functions@^6.8.0:
|
babel-plugin-transform-es2015-arrow-functions@^6.8.0:
|
||||||
version "6.22.0"
|
version "6.22.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
|
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
|
||||||
@@ -1055,14 +899,6 @@ babel-plugin-transform-es2015-modules-commonjs@^6.8.0:
|
|||||||
babel-template "^6.26.0"
|
babel-template "^6.26.0"
|
||||||
babel-types "^6.26.0"
|
babel-types "^6.26.0"
|
||||||
|
|
||||||
babel-plugin-transform-es2015-modules-commonjs@^7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-7.0.0-beta.3.tgz#d53ae18f16e0b6a50ab65cdafbe3fa51a22f39b5"
|
|
||||||
dependencies:
|
|
||||||
babel-helper-module-transforms "7.0.0-beta.3"
|
|
||||||
babel-helper-simple-access "7.0.0-beta.3"
|
|
||||||
babel-types "7.0.0-beta.3"
|
|
||||||
|
|
||||||
babel-plugin-transform-es2015-object-super@^6.8.0:
|
babel-plugin-transform-es2015-object-super@^6.8.0:
|
||||||
version "6.24.1"
|
version "6.24.1"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
|
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
|
||||||
@@ -1119,12 +955,6 @@ babel-plugin-transform-flow-strip-types@^6.8.0:
|
|||||||
babel-plugin-syntax-flow "^6.18.0"
|
babel-plugin-syntax-flow "^6.18.0"
|
||||||
babel-runtime "^6.22.0"
|
babel-runtime "^6.22.0"
|
||||||
|
|
||||||
babel-plugin-transform-flow-strip-types@^7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-7.0.0-beta.3.tgz#40d7c030895dc9811e7dd09997ee96df6054eed6"
|
|
||||||
dependencies:
|
|
||||||
babel-plugin-syntax-flow "7.0.0-beta.3"
|
|
||||||
|
|
||||||
babel-plugin-transform-object-rest-spread@^6.8.0:
|
babel-plugin-transform-object-rest-spread@^6.8.0:
|
||||||
version "6.26.0"
|
version "6.26.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
|
resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
|
||||||
@@ -1132,41 +962,12 @@ babel-plugin-transform-object-rest-spread@^6.8.0:
|
|||||||
babel-plugin-syntax-object-rest-spread "^6.8.0"
|
babel-plugin-syntax-object-rest-spread "^6.8.0"
|
||||||
babel-runtime "^6.26.0"
|
babel-runtime "^6.26.0"
|
||||||
|
|
||||||
babel-plugin-transform-object-rest-spread@^7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-7.0.0-beta.3.tgz#5c409f3cd70819dbb3382d2056971c5ebe01393a"
|
|
||||||
dependencies:
|
|
||||||
babel-plugin-syntax-object-rest-spread "7.0.0-beta.3"
|
|
||||||
|
|
||||||
babel-plugin-transform-react-display-name@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-7.0.0-beta.3.tgz#9bec4984d868bf37e5184ed22bb66c44db61d612"
|
|
||||||
|
|
||||||
babel-plugin-transform-react-display-name@^6.8.0:
|
babel-plugin-transform-react-display-name@^6.8.0:
|
||||||
version "6.25.0"
|
version "6.25.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"
|
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"
|
||||||
dependencies:
|
dependencies:
|
||||||
babel-runtime "^6.22.0"
|
babel-runtime "^6.22.0"
|
||||||
|
|
||||||
babel-plugin-transform-react-jsx-self@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-7.0.0-beta.3.tgz#33bc0b66b090661409d308e6020d6835f8cfe611"
|
|
||||||
dependencies:
|
|
||||||
babel-plugin-syntax-jsx "7.0.0-beta.3"
|
|
||||||
|
|
||||||
babel-plugin-transform-react-jsx-source@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-7.0.0-beta.3.tgz#e5b1015a8eb107e51d64aace7677b2621c87f2ed"
|
|
||||||
dependencies:
|
|
||||||
babel-plugin-syntax-jsx "7.0.0-beta.3"
|
|
||||||
|
|
||||||
babel-plugin-transform-react-jsx@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-7.0.0-beta.3.tgz#61af93962a3e6938ae8aeca10bb544f8b231ee7b"
|
|
||||||
dependencies:
|
|
||||||
babel-helper-builder-react-jsx "7.0.0-beta.3"
|
|
||||||
babel-plugin-syntax-jsx "7.0.0-beta.3"
|
|
||||||
|
|
||||||
babel-plugin-transform-react-jsx@^6.8.0:
|
babel-plugin-transform-react-jsx@^6.8.0:
|
||||||
version "6.24.1"
|
version "6.24.1"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3"
|
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3"
|
||||||
@@ -1216,16 +1017,6 @@ babel-preset-fbjs@2.3.0:
|
|||||||
babel-plugin-transform-react-display-name "^6.8.0"
|
babel-plugin-transform-react-display-name "^6.8.0"
|
||||||
babel-plugin-transform-react-jsx "^6.8.0"
|
babel-plugin-transform-react-jsx "^6.8.0"
|
||||||
|
|
||||||
babel-preset-react@^7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-7.0.0-beta.3.tgz#3a6453e0a5e6156d9528590b629a70ecd9d50226"
|
|
||||||
dependencies:
|
|
||||||
babel-plugin-syntax-jsx "7.0.0-beta.3"
|
|
||||||
babel-plugin-transform-react-display-name "7.0.0-beta.3"
|
|
||||||
babel-plugin-transform-react-jsx "7.0.0-beta.3"
|
|
||||||
babel-plugin-transform-react-jsx-self "7.0.0-beta.3"
|
|
||||||
babel-plugin-transform-react-jsx-source "7.0.0-beta.3"
|
|
||||||
|
|
||||||
babel-runtime@^6.22.0, babel-runtime@^6.26.0:
|
babel-runtime@^6.22.0, babel-runtime@^6.26.0:
|
||||||
version "6.26.0"
|
version "6.26.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
|
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
|
||||||
@@ -1233,16 +1024,6 @@ babel-runtime@^6.22.0, babel-runtime@^6.26.0:
|
|||||||
core-js "^2.4.0"
|
core-js "^2.4.0"
|
||||||
regenerator-runtime "^0.11.0"
|
regenerator-runtime "^0.11.0"
|
||||||
|
|
||||||
babel-template@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-7.0.0-beta.3.tgz#ebb877b6070ce9912b0d0c22fcad3372165913a8"
|
|
||||||
dependencies:
|
|
||||||
babel-code-frame "7.0.0-beta.3"
|
|
||||||
babel-traverse "7.0.0-beta.3"
|
|
||||||
babel-types "7.0.0-beta.3"
|
|
||||||
babylon "7.0.0-beta.27"
|
|
||||||
lodash "^4.2.0"
|
|
||||||
|
|
||||||
babel-template@^6.24.1, babel-template@^6.26.0:
|
babel-template@^6.24.1, babel-template@^6.26.0:
|
||||||
version "6.26.0"
|
version "6.26.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
|
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
|
||||||
@@ -1253,19 +1034,6 @@ babel-template@^6.24.1, babel-template@^6.26.0:
|
|||||||
babylon "^6.18.0"
|
babylon "^6.18.0"
|
||||||
lodash "^4.17.4"
|
lodash "^4.17.4"
|
||||||
|
|
||||||
babel-traverse@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-7.0.0-beta.3.tgz#3cf0a45d53d934d85275d8770775d7944fc7c199"
|
|
||||||
dependencies:
|
|
||||||
babel-code-frame "7.0.0-beta.3"
|
|
||||||
babel-helper-function-name "7.0.0-beta.3"
|
|
||||||
babel-types "7.0.0-beta.3"
|
|
||||||
babylon "7.0.0-beta.27"
|
|
||||||
debug "^3.0.1"
|
|
||||||
globals "^10.0.0"
|
|
||||||
invariant "^2.2.0"
|
|
||||||
lodash "^4.2.0"
|
|
||||||
|
|
||||||
babel-traverse@^6.24.1, babel-traverse@^6.26.0:
|
babel-traverse@^6.24.1, babel-traverse@^6.26.0:
|
||||||
version "6.26.0"
|
version "6.26.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
|
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
|
||||||
@@ -1280,14 +1048,6 @@ babel-traverse@^6.24.1, babel-traverse@^6.26.0:
|
|||||||
invariant "^2.2.2"
|
invariant "^2.2.2"
|
||||||
lodash "^4.17.4"
|
lodash "^4.17.4"
|
||||||
|
|
||||||
babel-types@7.0.0-beta.3:
|
|
||||||
version "7.0.0-beta.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-7.0.0-beta.3.tgz#cd927ca70e0ae8ab05f4aab83778cfb3e6eb20b4"
|
|
||||||
dependencies:
|
|
||||||
esutils "^2.0.2"
|
|
||||||
lodash "^4.2.0"
|
|
||||||
to-fast-properties "^2.0.0"
|
|
||||||
|
|
||||||
babel-types@^6.24.1, babel-types@^6.26.0:
|
babel-types@^6.24.1, babel-types@^6.26.0:
|
||||||
version "6.26.0"
|
version "6.26.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
|
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
|
||||||
@@ -1297,17 +1057,10 @@ babel-types@^6.24.1, babel-types@^6.26.0:
|
|||||||
lodash "^4.17.4"
|
lodash "^4.17.4"
|
||||||
to-fast-properties "^1.0.3"
|
to-fast-properties "^1.0.3"
|
||||||
|
|
||||||
babylon@7.0.0-beta.27:
|
|
||||||
version "7.0.0-beta.27"
|
|
||||||
resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.27.tgz#b6edd30ef30619e2f630eb52585fdda84e6542cd"
|
|
||||||
|
|
||||||
babylon@7.0.0-beta.40, babylon@^7.0.0-beta.40:
|
|
||||||
version "7.0.0-beta.40"
|
|
||||||
resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.40.tgz#91fc8cd56d5eb98b28e6fde41045f2957779940a"
|
|
||||||
|
|
||||||
babylon@^6.18.0:
|
babylon@^6.18.0:
|
||||||
version "6.18.0"
|
version "6.18.0"
|
||||||
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
|
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
|
||||||
|
integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==
|
||||||
|
|
||||||
balanced-match@^1.0.0:
|
balanced-match@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
@@ -1509,12 +1262,6 @@ debug@2.6.9, debug@^2.2.0, debug@^2.6.8:
|
|||||||
dependencies:
|
dependencies:
|
||||||
ms "2.0.0"
|
ms "2.0.0"
|
||||||
|
|
||||||
debug@^3.0.1:
|
|
||||||
version "3.1.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
|
|
||||||
dependencies:
|
|
||||||
ms "2.0.0"
|
|
||||||
|
|
||||||
debug@^3.1.0:
|
debug@^3.1.0:
|
||||||
version "3.2.5"
|
version "3.2.5"
|
||||||
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.5.tgz#c2418fbfd7a29f4d4f70ff4cea604d4b64c46407"
|
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.5.tgz#c2418fbfd7a29f4d4f70ff4cea604d4b64c46407"
|
||||||
@@ -1832,10 +1579,6 @@ global@^4.3.0:
|
|||||||
min-document "^2.19.0"
|
min-document "^2.19.0"
|
||||||
process "~0.5.1"
|
process "~0.5.1"
|
||||||
|
|
||||||
globals@^10.0.0:
|
|
||||||
version "10.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/globals/-/globals-10.4.0.tgz#5c477388b128a9e4c5c5d01c7a2aca68c68b2da7"
|
|
||||||
|
|
||||||
globals@^11.1.0:
|
globals@^11.1.0:
|
||||||
version "11.3.0"
|
version "11.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/globals/-/globals-11.3.0.tgz#e04fdb7b9796d8adac9c8f64c14837b2313378b0"
|
resolved "https://registry.yarnpkg.com/globals/-/globals-11.3.0.tgz#e04fdb7b9796d8adac9c8f64c14837b2313378b0"
|
||||||
@@ -1930,7 +1673,7 @@ ini@~1.3.0:
|
|||||||
version "1.3.5"
|
version "1.3.5"
|
||||||
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
|
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
|
||||||
|
|
||||||
invariant@^2.2.0, invariant@^2.2.2:
|
invariant@^2.2.2:
|
||||||
version "2.2.3"
|
version "2.2.3"
|
||||||
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.3.tgz#1a827dfde7dcbd7c323f0ca826be8fa7c5e9d688"
|
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.3.tgz#1a827dfde7dcbd7c323f0ca826be8fa7c5e9d688"
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -2205,7 +1948,7 @@ lodash.throttle@^4.1.1:
|
|||||||
version "4.1.1"
|
version "4.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
|
resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
|
||||||
|
|
||||||
lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.6.1:
|
lodash@^4.14.0, lodash@^4.17.4, lodash@^4.6.1:
|
||||||
version "4.17.5"
|
version "4.17.5"
|
||||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511"
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user