From d17fe33339ec9ccaa7bbf59b474f6580843c1964 Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Thu, 24 Oct 2019 16:41:28 -0500 Subject: [PATCH] build: update babel and webpack dependencies (#1987) Includes a switch from core-js@2 to core-js@3 --- babel.config.js | 13 +- dapps/tests/app/package.json | 2 +- packages/cockpit/api-client/package.json | 2 +- packages/cockpit/ui/package.json | 2 +- packages/core/code-runner/package.json | 2 +- packages/core/code-runner/src/vm.ts | 8 +- packages/core/console/package.json | 2 +- packages/core/core/package.json | 2 +- packages/core/i18n/package.json | 2 +- packages/core/logger/package.json | 2 +- packages/core/utils/package.json | 2 +- packages/embark/package.json | 26 +- packages/embarkjs/embarkjs/package.json | 2 +- packages/embarkjs/ens/package.json | 2 +- packages/embarkjs/ipfs/package.json | 2 +- packages/embarkjs/swarm/package.json | 2 +- packages/embarkjs/web3/package.json | 2 +- packages/embarkjs/whisper/package.json | 2 +- .../plugins/accounts-manager/package.json | 2 +- packages/plugins/basic-pipeline/package.json | 6 +- .../basic-pipeline/src/webpack.config.js | 7 +- packages/plugins/coverage/package.json | 6 +- packages/plugins/debugger/package.json | 2 +- packages/plugins/ens/package.json | 2 +- .../ethereum-blockchain-client/package.json | 2 +- packages/plugins/ganache/package.json | 2 +- packages/plugins/geth/package.json | 2 +- packages/plugins/graph/package.json | 2 +- packages/plugins/ipfs/package.json | 2 +- packages/plugins/mocha-tests/package.json | 2 +- packages/plugins/parity/package.json | 2 +- packages/plugins/plugin-cmd/package.json | 2 +- packages/plugins/profiler/package.json | 2 +- packages/plugins/scaffolding/package.json | 2 +- packages/plugins/snark/package.json | 4 +- packages/plugins/solc/package.json | 2 +- packages/plugins/solidity-tests/package.json | 2 +- packages/plugins/solidity/package.json | 2 +- packages/plugins/specialconfigs/package.json | 2 +- packages/plugins/swarm/package.json | 2 +- .../plugins/transaction-logger/package.json | 2 +- .../plugins/transaction-tracker/package.json | 2 +- packages/plugins/vyper/package.json | 2 +- packages/plugins/web3/package.json | 2 +- packages/plugins/whisper/package.json | 2 +- packages/stack/api/package.json | 2 +- packages/stack/authenticator/package.json | 2 +- packages/stack/blockchain-client/package.json | 2 +- packages/stack/blockchain/package.json | 4 +- packages/stack/communication/package.json | 4 +- packages/stack/compiler/package.json | 2 +- packages/stack/contracts-manager/package.json | 2 +- packages/stack/deployment/package.json | 4 +- packages/stack/embarkjs/package.json | 2 +- packages/stack/library-manager/package.json | 2 +- packages/stack/namesystem/package.json | 2 +- packages/stack/pipeline/package.json | 2 +- .../process-logs-api-manager/package.json | 2 +- packages/stack/proxy/package.json | 2 +- packages/stack/storage/package.json | 2 +- packages/stack/test-runner/package.json | 2 +- packages/stack/watcher/package.json | 2 +- packages/stack/webserver/package.json | 2 +- packages/utils/collective/package.json | 7 +- packages/utils/testing/package.json | 4 +- yarn.lock | 477 +++++++++--------- 66 files changed, 337 insertions(+), 339 deletions(-) diff --git a/babel.config.js b/babel.config.js index 7fc0d0414..f62a82cdb 100644 --- a/babel.config.js +++ b/babel.config.js @@ -26,9 +26,10 @@ module.exports = (api) => { ['@babel/plugin-proposal-class-properties', { loose: true }], + '@babel/plugin-proposal-nullish-coalescing-operator', '@babel/plugin-proposal-optional-chaining', ['@babel/plugin-transform-runtime', { - corejs: 2 + corejs: 3 }] ], presets: [ @@ -44,8 +45,11 @@ module.exports = (api) => { const browser = cloneDeep(base); browser.plugins[browser.plugins.length - 1][1].useESModules = true; browser.presets[0] = [browser.presets[0], { + corejs: 3, modules: false, - targets: {browsers: ['last 1 version', 'not dead', '> 0.2%']} + shippedProposals: true, + targets: {browsers: ['last 1 version', 'not dead', '> 0.2%']}, + useBuiltIns: 'usage' }]; if (env === 'browser' || env.startsWith('browser:')) { @@ -59,7 +63,10 @@ module.exports = (api) => { 'babel-plugin-dynamic-import-node' ); node.presets[0] = [node.presets[0], { - targets: {node: '10.17.0'} + corejs: 3, + shippedProposals: true, + targets: {node: '10.17.0'}, + useBuiltIns: 'usage' }]; if (env === 'node' || env.startsWith('node:')) { diff --git a/dapps/tests/app/package.json b/dapps/tests/app/package.json index 92feac183..ea307c825 100644 --- a/dapps/tests/app/package.json +++ b/dapps/tests/app/package.json @@ -1,7 +1,7 @@ { "description": "Test DApp for integration testing purposes", "devDependencies": { - "@babel/code-frame": "7.0.0", + "@babel/code-frame": "7.5.5", "bootstrap": "3.4.1", "embark": "^4.1.1", "embark-dapp-test-service": "^4.0.0", diff --git a/packages/cockpit/api-client/package.json b/packages/cockpit/api-client/package.json index 4f636103e..65ffc1263 100644 --- a/packages/cockpit/api-client/package.json +++ b/packages/cockpit/api-client/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "axios": "0.19.0", "keccakjs": "0.2.3" }, diff --git a/packages/cockpit/ui/package.json b/packages/cockpit/ui/package.json index 71adf71cf..1c5b41001 100644 --- a/packages/cockpit/ui/package.json +++ b/packages/cockpit/ui/package.json @@ -42,7 +42,7 @@ "watch:test": "react-scripts test" }, "devDependencies": { - "@babel/core": "7.6.2", + "@babel/core": "7.6.4", "@coreui/coreui": "2.1.0", "@coreui/react": "2.1.0", "@emotion/core": "0.13.1", diff --git a/packages/core/code-runner/package.json b/packages/core/code-runner/package.json index 1deba36ec..584ee2cc0 100644 --- a/packages/core/code-runner/package.json +++ b/packages/core/code-runner/package.json @@ -46,7 +46,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "colors": "1.3.2", "embark-utils": "^4.1.1", diff --git a/packages/core/code-runner/src/vm.ts b/packages/core/code-runner/src/vm.ts index d738006a8..4e8022030 100644 --- a/packages/core/code-runner/src/vm.ts +++ b/packages/core/code-runner/src/vm.ts @@ -34,10 +34,10 @@ class VM { require: { builtin: ["path", "util"], external: [ - "@babel/runtime-corejs2/core-js/json/stringify", - "@babel/runtime-corejs2/core-js/object/assign", - "@babel/runtime-corejs2/core-js/promise", - "@babel/runtime-corejs2/helpers/interopRequireDefault", + "@babel/runtime-corejs3/core-js/json/stringify", + "@babel/runtime-corejs3/core-js/object/assign", + "@babel/runtime-corejs3/core-js/promise", + "@babel/runtime-corejs3/helpers/interopRequireDefault", // "embark-utils", // TODO: ideally this shouldnt' be needed/here or should be configurable by the modules themselves somehow // "embarkjs-ens", diff --git a/packages/core/console/package.json b/packages/core/console/package.json index 23836cf52..6d62c87cb 100644 --- a/packages/core/console/package.json +++ b/packages/core/console/package.json @@ -48,7 +48,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "chalk": "2.4.2", "embark-core": "^4.1.1", diff --git a/packages/core/core/package.json b/packages/core/core/package.json index baf3d1fc5..b9412e4f8 100644 --- a/packages/core/core/package.json +++ b/packages/core/core/package.json @@ -43,7 +43,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1", "flatted": "0.2.3", diff --git a/packages/core/i18n/package.json b/packages/core/i18n/package.json index c2b0e3c0f..c2321d5ae 100644 --- a/packages/core/i18n/package.json +++ b/packages/core/i18n/package.json @@ -43,7 +43,7 @@ "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "colors": "1.3.2", "i18n": "0.8.3", "os-locale": "2.1.0" diff --git a/packages/core/logger/package.json b/packages/core/logger/package.json index d10b514ab..5317bb3e9 100644 --- a/packages/core/logger/package.json +++ b/packages/core/logger/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "colors": "1.3.2", "date-and-time": "0.6.2", "embark-utils": "^4.1.1" diff --git a/packages/core/utils/package.json b/packages/core/utils/package.json index 826b6fe27..773b4d3aa 100644 --- a/packages/core/utils/package.json +++ b/packages/core/utils/package.json @@ -46,7 +46,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "bip39": "3.0.2", "clipboardy": "1.2.3", "colors": "1.3.2", diff --git a/packages/embark/package.json b/packages/embark/package.json index fc66f9097..31b8ce30a 100644 --- a/packages/embark/package.json +++ b/packages/embark/package.json @@ -56,23 +56,23 @@ ] }, "dependencies": { - "@babel/core": "7.6.2", + "@babel/core": "7.6.4", "@babel/plugin-proposal-class-properties": "7.5.5", - "@babel/plugin-proposal-decorators": "7.3.0", - "@babel/plugin-proposal-object-rest-spread": "7.3.2", + "@babel/plugin-proposal-decorators": "7.6.0", + "@babel/plugin-proposal-object-rest-spread": "7.6.2", "@babel/plugin-syntax-dynamic-import": "7.2.0", - "@babel/plugin-transform-destructuring": "7.5.0", - "@babel/plugin-transform-flow-strip-types": "7.4.4", - "@babel/plugin-transform-runtime": "7.2.0", - "@babel/preset-env": "7.5.5", - "@babel/preset-react": "7.0.0", + "@babel/plugin-transform-destructuring": "7.6.0", + "@babel/plugin-transform-flow-strip-types": "7.6.3", + "@babel/plugin-transform-runtime": "7.6.2", + "@babel/preset-env": "7.6.3", + "@babel/preset-react": "7.6.3", "@babel/preset-typescript": "7.6.0", - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "ajv": "6.10.2", "ascii-table": "0.0.9", "async": "2.6.1", "babel-loader": "8.0.6", - "babel-plugin-macros": "2.4.5", + "babel-plugin-macros": "2.6.1", "babel-plugin-module-resolver": "3.2.0", "babel-plugin-transform-react-remove-prop-types": "0.4.24", "bip39": "3.0.2", @@ -81,7 +81,7 @@ "clone-deep": "4.0.0", "colors": "1.3.2", "commander": "2.18.0", - "css-loader": "1.0.0", + "css-loader": "3.2.0", "date-and-time": "0.6.2", "decompress": "4.2.0", "deep-equal": "1.0.1", @@ -179,10 +179,10 @@ "source-map-support": "0.5.13", "stream-json": "1.3.0", "string-replace-async": "1.2.1", - "style-loader": "0.23.1", + "style-loader": "1.0.0", "tar": "4.4.2", "term.js": "0.0.7", - "url-loader": "2.1.0", + "url-loader": "2.2.0", "viz.js": "1.8.2", "vm2": "3.6.4", "web3": "1.2.1", diff --git a/packages/embarkjs/embarkjs/package.json b/packages/embarkjs/embarkjs/package.json index 4a66a1064..63eb6fcb5 100644 --- a/packages/embarkjs/embarkjs/package.json +++ b/packages/embarkjs/embarkjs/package.json @@ -56,7 +56,7 @@ ] }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "async-es": "2.6.1", "colors": "1.3.2" diff --git a/packages/embarkjs/ens/package.json b/packages/embarkjs/ens/package.json index b9cded7e1..0c5c3786e 100644 --- a/packages/embarkjs/ens/package.json +++ b/packages/embarkjs/ens/package.json @@ -44,7 +44,7 @@ "solo": "embark-solo" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "embarkjs": "^4.1.1", "eth-ens-namehash": "2.0.8", "web3": "1.2.1" diff --git a/packages/embarkjs/ipfs/package.json b/packages/embarkjs/ipfs/package.json index aad74bece..04f7facb8 100644 --- a/packages/embarkjs/ipfs/package.json +++ b/packages/embarkjs/ipfs/package.json @@ -44,7 +44,7 @@ "solo": "embark-solo" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "ipfs-api": "17.2.4" }, "devDependencies": { diff --git a/packages/embarkjs/swarm/package.json b/packages/embarkjs/swarm/package.json index d99d6ce52..4711102d8 100644 --- a/packages/embarkjs/swarm/package.json +++ b/packages/embarkjs/swarm/package.json @@ -44,7 +44,7 @@ "solo": "embark-solo" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "swarm-api": "0.1.2", "web3": "1.2.1" }, diff --git a/packages/embarkjs/web3/package.json b/packages/embarkjs/web3/package.json index 94d765a36..2f17772ab 100644 --- a/packages/embarkjs/web3/package.json +++ b/packages/embarkjs/web3/package.json @@ -44,7 +44,7 @@ "solo": "embark-solo" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "web3": "1.2.1" }, "devDependencies": { diff --git a/packages/embarkjs/whisper/package.json b/packages/embarkjs/whisper/package.json index ebeb3caec..2b0d6c25b 100644 --- a/packages/embarkjs/whisper/package.json +++ b/packages/embarkjs/whisper/package.json @@ -44,7 +44,7 @@ "solo": "embark-solo" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "rxjs": "6.4.0", "web3": "1.2.1" }, diff --git a/packages/plugins/accounts-manager/package.json b/packages/plugins/accounts-manager/package.json index b94b1d2c6..b0287c31b 100644 --- a/packages/plugins/accounts-manager/package.json +++ b/packages/plugins/accounts-manager/package.json @@ -45,7 +45,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "embark-core": "^4.1.1", "embark-i18n": "^4.1.1", diff --git a/packages/plugins/basic-pipeline/package.json b/packages/plugins/basic-pipeline/package.json index b24a0ef17..a7cf6a8cd 100644 --- a/packages/plugins/basic-pipeline/package.json +++ b/packages/plugins/basic-pipeline/package.json @@ -42,17 +42,17 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "clone-deep": "4.0.0", "embark-core": "^4.1.1", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1", "fs-extra": "8.1.0", - "webpack": "4.41.0" + "webpack": "4.41.2" }, "devDependencies": { - "@babel/core": "7.6.2", + "@babel/core": "7.6.4", "babel-jest": "24.9.0", "embark-solo": "^4.1.1", "embark-testing": "^4.1.1", diff --git a/packages/plugins/basic-pipeline/src/webpack.config.js b/packages/plugins/basic-pipeline/src/webpack.config.js index c075089df..236fdf9bd 100644 --- a/packages/plugins/basic-pipeline/src/webpack.config.js +++ b/packages/plugins/basic-pipeline/src/webpack.config.js @@ -143,7 +143,7 @@ const base = { ], [ '@babel/plugin-transform-runtime', { - corejs: 2, + corejs: 3, useESModules: true } ], @@ -152,11 +152,14 @@ const base = { presets: [ [ '@babel/preset-env', { + corejs: 3, exclude: ['transform-typeof-symbol'], modules: false, + shippedProposals: true, targets: { browsers: ['last 1 version', 'not dead', '> 0.2%'] - } + }, + useBuiltIns: 'usage' } ], [ diff --git a/packages/plugins/coverage/package.json b/packages/plugins/coverage/package.json index dd31439d3..f15545354 100644 --- a/packages/plugins/coverage/package.json +++ b/packages/plugins/coverage/package.json @@ -43,7 +43,7 @@ "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" }, "dependencies": { - "@babel/runtime-corejs2": "7.3.1", + "@babel/runtime-corejs3": "7.6.3", "embark-core": "^4.1.1", "embark-utils": "^4.1.1", "fs-extra": "8.1.0", @@ -54,8 +54,8 @@ "web3-eth-contract": "1.2.1" }, "devDependencies": { - "@babel/cli": "7.2.3", - "@babel/core": "7.2.2", + "@babel/cli": "7.6.4", + "@babel/core": "7.6.4", "@types/fs-extra": "7.0.0", "@types/mocha": "5.2.7", "@types/prettier": "1.16.4", diff --git a/packages/plugins/debugger/package.json b/packages/plugins/debugger/package.json index c74abc359..ad7711e72 100644 --- a/packages/plugins/debugger/package.json +++ b/packages/plugins/debugger/package.json @@ -42,7 +42,7 @@ "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "colors": "1.3.2", "embark-i18n": "^4.1.1", diff --git a/packages/plugins/ens/package.json b/packages/plugins/ens/package.json index e97680c98..0a8fc691c 100644 --- a/packages/plugins/ens/package.json +++ b/packages/plugins/ens/package.json @@ -40,7 +40,7 @@ "test": "jest" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "embark-core": "^4.1.1", "embark-i18n": "^4.1.1", diff --git a/packages/plugins/ethereum-blockchain-client/package.json b/packages/plugins/ethereum-blockchain-client/package.json index 44febcb8b..667c65a23 100644 --- a/packages/plugins/ethereum-blockchain-client/package.json +++ b/packages/plugins/ethereum-blockchain-client/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1", diff --git a/packages/plugins/ganache/package.json b/packages/plugins/ganache/package.json index 8119ae062..6713ee1b5 100644 --- a/packages/plugins/ganache/package.json +++ b/packages/plugins/ganache/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "ganache-cli": "6.4.3" }, "devDependencies": { diff --git a/packages/plugins/geth/package.json b/packages/plugins/geth/package.json index 46aa4805c..f578286fd 100644 --- a/packages/plugins/geth/package.json +++ b/packages/plugins/geth/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "embark-core": "^4.1.1", "embark-i18n": "^4.1.1", diff --git a/packages/plugins/graph/package.json b/packages/plugins/graph/package.json index a68070ac6..2749ce825 100644 --- a/packages/plugins/graph/package.json +++ b/packages/plugins/graph/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "viz.js": "1.8.2" }, diff --git a/packages/plugins/ipfs/package.json b/packages/plugins/ipfs/package.json index 3946d3894..1b619c519 100644 --- a/packages/plugins/ipfs/package.json +++ b/packages/plugins/ipfs/package.json @@ -43,7 +43,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "colors": "1.3.2", "embark-core": "^4.1.1", diff --git a/packages/plugins/mocha-tests/package.json b/packages/plugins/mocha-tests/package.json index cb05eac4d..5bb74d63b 100644 --- a/packages/plugins/mocha-tests/package.json +++ b/packages/plugins/mocha-tests/package.json @@ -44,7 +44,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "3.1.0", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1", diff --git a/packages/plugins/parity/package.json b/packages/plugins/parity/package.json index 24acd6ed7..254f06d1e 100644 --- a/packages/plugins/parity/package.json +++ b/packages/plugins/parity/package.json @@ -45,7 +45,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "embark-core": "^4.1.1", "embark-i18n": "^4.1.1", diff --git a/packages/plugins/plugin-cmd/package.json b/packages/plugins/plugin-cmd/package.json index 9c4b3b572..8dc852982 100644 --- a/packages/plugins/plugin-cmd/package.json +++ b/packages/plugins/plugin-cmd/package.json @@ -32,7 +32,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1" diff --git a/packages/plugins/profiler/package.json b/packages/plugins/profiler/package.json index b028f0aa1..bc1cbe692 100644 --- a/packages/plugins/profiler/package.json +++ b/packages/plugins/profiler/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "ascii-table": "0.0.9", "async": "2.6.1", "web3-utils": "1.2.1" diff --git a/packages/plugins/scaffolding/package.json b/packages/plugins/scaffolding/package.json index 02cb38037..a812923a0 100644 --- a/packages/plugins/scaffolding/package.json +++ b/packages/plugins/scaffolding/package.json @@ -42,7 +42,7 @@ "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "ajv": "6.10.2", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1", diff --git a/packages/plugins/snark/package.json b/packages/plugins/snark/package.json index 2a34b4ee1..4b7d6cade 100644 --- a/packages/plugins/snark/package.json +++ b/packages/plugins/snark/package.json @@ -46,14 +46,14 @@ "test": "jest" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "circom": "0.0.31", "find-up": "4.1.0", "glob": "7.1.4", "snarkjs": "0.1.19" }, "devDependencies": { - "@babel/core": "7.6.2", + "@babel/core": "7.6.4", "babel-eslint": "10.0.3", "babel-jest": "24.9.0", "embark-solo": "^4.1.1", diff --git a/packages/plugins/solc/package.json b/packages/plugins/solc/package.json index 80956c525..fae38f7aa 100644 --- a/packages/plugins/solc/package.json +++ b/packages/plugins/solc/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "semver": "5.6.0", "shelljs": "0.8.3" diff --git a/packages/plugins/solidity-tests/package.json b/packages/plugins/solidity-tests/package.json index 6ee927b1e..cb64d84a0 100644 --- a/packages/plugins/solidity-tests/package.json +++ b/packages/plugins/solidity-tests/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "3.1.0", "remix-tests": "0.1.14", "web3": "1.2.1", diff --git a/packages/plugins/solidity/package.json b/packages/plugins/solidity/package.json index 962f32461..3f673520c 100644 --- a/packages/plugins/solidity/package.json +++ b/packages/plugins/solidity/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "embark-core": "^4.1.1", "embark-i18n": "^4.1.1", diff --git a/packages/plugins/specialconfigs/package.json b/packages/plugins/specialconfigs/package.json index f8cd71653..52bdb5dea 100644 --- a/packages/plugins/specialconfigs/package.json +++ b/packages/plugins/specialconfigs/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "embark-i18n": "^4.1.1", "viz.js": "1.8.2" diff --git a/packages/plugins/swarm/package.json b/packages/plugins/swarm/package.json index 67d8f53a9..4eca9fa50 100644 --- a/packages/plugins/swarm/package.json +++ b/packages/plugins/swarm/package.json @@ -44,7 +44,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "colors": "1.3.2", "embark-core": "^4.1.1", diff --git a/packages/plugins/transaction-logger/package.json b/packages/plugins/transaction-logger/package.json index 150ca304a..972f2b549 100644 --- a/packages/plugins/transaction-logger/package.json +++ b/packages/plugins/transaction-logger/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "embark-core": "^4.1.1", "embark-i18n": "^4.1.1", diff --git a/packages/plugins/transaction-tracker/package.json b/packages/plugins/transaction-tracker/package.json index 3e43a5b63..2677441dc 100644 --- a/packages/plugins/transaction-tracker/package.json +++ b/packages/plugins/transaction-tracker/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "viz.js": "1.8.2" }, diff --git a/packages/plugins/vyper/package.json b/packages/plugins/vyper/package.json index 08b97c854..992889a48 100644 --- a/packages/plugins/vyper/package.json +++ b/packages/plugins/vyper/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "embark-i18n": "^4.1.1", "shelljs": "0.8.3" diff --git a/packages/plugins/web3/package.json b/packages/plugins/web3/package.json index f0a47f8f1..c92754a2f 100644 --- a/packages/plugins/web3/package.json +++ b/packages/plugins/web3/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "ejs": "2.6.1", "embark-core": "^4.1.1", "embark-utils": "^4.1.1", diff --git a/packages/plugins/whisper/package.json b/packages/plugins/whisper/package.json index 1e504fe34..363d279bc 100644 --- a/packages/plugins/whisper/package.json +++ b/packages/plugins/whisper/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "embark-core": "^4.1.1", "embark-i18n": "^4.1.1", diff --git a/packages/stack/api/package.json b/packages/stack/api/package.json index 11ab39b64..ad48d230d 100644 --- a/packages/stack/api/package.json +++ b/packages/stack/api/package.json @@ -42,7 +42,7 @@ "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "colors": "1.3.2", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1" diff --git a/packages/stack/authenticator/package.json b/packages/stack/authenticator/package.json index d9f5d9cce..2960efd35 100644 --- a/packages/stack/authenticator/package.json +++ b/packages/stack/authenticator/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1", "keccakjs": "0.2.3", diff --git a/packages/stack/blockchain-client/package.json b/packages/stack/blockchain-client/package.json index a52678707..1165a4730 100644 --- a/packages/stack/blockchain-client/package.json +++ b/packages/stack/blockchain-client/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "web3": "1.2.1" }, "devDependencies": { diff --git a/packages/stack/blockchain/package.json b/packages/stack/blockchain/package.json index 6c40f6e57..6d9025192 100644 --- a/packages/stack/blockchain/package.json +++ b/packages/stack/blockchain/package.json @@ -42,7 +42,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "clone-deep": "4.0.0", "embark-core": "^4.1.1", @@ -50,7 +50,7 @@ "embark-utils": "^4.1.1" }, "devDependencies": { - "@babel/core": "7.6.2", + "@babel/core": "7.6.4", "babel-jest": "24.9.0", "embark-solo": "^4.1.1", "embark-testing": "^4.1.1", diff --git a/packages/stack/communication/package.json b/packages/stack/communication/package.json index ce6cd5ee2..f3a569b4a 100644 --- a/packages/stack/communication/package.json +++ b/packages/stack/communication/package.json @@ -42,7 +42,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "clone-deep": "4.0.0", "embark-core": "^4.1.1", @@ -50,7 +50,7 @@ "embark-utils": "^4.1.1" }, "devDependencies": { - "@babel/core": "7.6.2", + "@babel/core": "7.6.4", "babel-jest": "24.9.0", "embark-solo": "^4.1.1", "embark-testing": "^4.1.1", diff --git a/packages/stack/compiler/package.json b/packages/stack/compiler/package.json index 8ddbea3e2..fbeeeb15a 100644 --- a/packages/stack/compiler/package.json +++ b/packages/stack/compiler/package.json @@ -42,7 +42,7 @@ "watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1" }, diff --git a/packages/stack/contracts-manager/package.json b/packages/stack/contracts-manager/package.json index 09cca2d70..1ff293d7e 100644 --- a/packages/stack/contracts-manager/package.json +++ b/packages/stack/contracts-manager/package.json @@ -46,7 +46,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "clone-deep": "4.0.0", "embark-core": "^4.1.1", diff --git a/packages/stack/deployment/package.json b/packages/stack/deployment/package.json index 9ecbe2f9f..08a25fc05 100644 --- a/packages/stack/deployment/package.json +++ b/packages/stack/deployment/package.json @@ -42,7 +42,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "clone-deep": "4.0.0", "embark-core": "^4.1.1", @@ -50,7 +50,7 @@ "embark-utils": "^4.1.1" }, "devDependencies": { - "@babel/core": "7.6.2", + "@babel/core": "7.6.4", "babel-jest": "24.9.0", "embark-solo": "^4.1.1", "embark-testing": "^4.1.1", diff --git a/packages/stack/embarkjs/package.json b/packages/stack/embarkjs/package.json index ff2b40f6c..2e7f628ad 100644 --- a/packages/stack/embarkjs/package.json +++ b/packages/stack/embarkjs/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "ejs": "2.6.1", "embark-core": "^4.1.1", "embark-i18n": "^4.1.1" diff --git a/packages/stack/library-manager/package.json b/packages/stack/library-manager/package.json index f3cc7faf4..037c6e191 100644 --- a/packages/stack/library-manager/package.json +++ b/packages/stack/library-manager/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "colors": "1.3.2", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1", diff --git a/packages/stack/namesystem/package.json b/packages/stack/namesystem/package.json index 6da17dff2..eea3fa4c7 100644 --- a/packages/stack/namesystem/package.json +++ b/packages/stack/namesystem/package.json @@ -42,7 +42,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "embark-i18n": "^4.1.1" }, "devDependencies": { diff --git a/packages/stack/pipeline/package.json b/packages/stack/pipeline/package.json index 2589033c7..b8618c6db 100644 --- a/packages/stack/pipeline/package.json +++ b/packages/stack/pipeline/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "colors": "1.3.2", "embark-core": "^4.1.1", diff --git a/packages/stack/process-logs-api-manager/package.json b/packages/stack/process-logs-api-manager/package.json index ca078a2d4..8189641cf 100644 --- a/packages/stack/process-logs-api-manager/package.json +++ b/packages/stack/process-logs-api-manager/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "embark-utils": "^4.1.1" }, "devDependencies": { diff --git a/packages/stack/proxy/package.json b/packages/stack/proxy/package.json index 0eac59ed5..ecc55a10e 100644 --- a/packages/stack/proxy/package.json +++ b/packages/stack/proxy/package.json @@ -45,7 +45,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "cors": "2.8.5", "embark-core": "^4.1.1", "embark-i18n": "^4.1.1", diff --git a/packages/stack/storage/package.json b/packages/stack/storage/package.json index 0e2039a61..c8c4a6ec0 100644 --- a/packages/stack/storage/package.json +++ b/packages/stack/storage/package.json @@ -43,7 +43,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "embark-core": "^4.1.1", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1", diff --git a/packages/stack/test-runner/package.json b/packages/stack/test-runner/package.json index 56ea5337d..a9dc56e6c 100644 --- a/packages/stack/test-runner/package.json +++ b/packages/stack/test-runner/package.json @@ -45,7 +45,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "chalk": "2.4.2", "embark-i18n": "^4.1.1", diff --git a/packages/stack/watcher/package.json b/packages/stack/watcher/package.json index f00e76af8..cbb160a1a 100644 --- a/packages/stack/watcher/package.json +++ b/packages/stack/watcher/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "chokidar": "2.1.6", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1" diff --git a/packages/stack/webserver/package.json b/packages/stack/webserver/package.json index 51556b45e..67fe374f9 100644 --- a/packages/stack/webserver/package.json +++ b/packages/stack/webserver/package.json @@ -41,7 +41,7 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "async": "2.6.1", "embark-i18n": "^4.1.1", "embark-utils": "^4.1.1", diff --git a/packages/utils/collective/package.json b/packages/utils/collective/package.json index 1b0bd432b..3f49c48f4 100644 --- a/packages/utils/collective/package.json +++ b/packages/utils/collective/package.json @@ -40,14 +40,15 @@ "// watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch" }, "devDependencies": { - "@babel/cli": "7.6.2", - "@babel/core": "7.6.2", + "@babel/cli": "7.6.4", + "@babel/core": "7.6.4", "@babel/plugin-proposal-class-properties": "7.5.5", "@babel/plugin-proposal-decorators": "7.6.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.4.4", "@babel/plugin-proposal-optional-chaining": "7.6.0", "@babel/plugin-syntax-dynamic-import": "7.2.0", "@babel/plugin-transform-runtime": "7.6.2", - "@babel/preset-env": "7.6.2", + "@babel/preset-env": "7.6.3", "@babel/preset-typescript": "7.6.0", "@lerna/filter-packages": "3.16.0", "babel-plugin-dynamic-import-node": "2.3.0", diff --git a/packages/utils/testing/package.json b/packages/utils/testing/package.json index ef5d80316..1964ed023 100644 --- a/packages/utils/testing/package.json +++ b/packages/utils/testing/package.json @@ -41,12 +41,12 @@ "extends": "../../../.eslintrc.json" }, "dependencies": { - "@babel/runtime-corejs2": "7.6.2", + "@babel/runtime-corejs3": "7.6.3", "refute": "1.0.2", "sinon": "7.4.2" }, "devDependencies": { - "@babel/core": "7.6.2", + "@babel/core": "7.6.4", "@types/async": "2.0.50", "babel-jest": "24.9.0", "embark-solo": "^4.1.1", diff --git a/yarn.lock b/yarn.lock index 20355a556..c461e0136 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,27 +2,10 @@ # yarn lockfile v1 -"@babel/cli@7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.2.3.tgz#1b262e42a3e959d28ab3d205ba2718e1923cfee6" - integrity sha512-bfna97nmJV6nDJhXNPeEfxyMjWnt6+IjUAaDPiYRTBlm8L41n8nvw6UAqUCbvpFfU246gHPxW7sfWwqtF4FcYA== - dependencies: - commander "^2.8.1" - convert-source-map "^1.1.0" - fs-readdir-recursive "^1.1.0" - glob "^7.0.0" - lodash "^4.17.10" - mkdirp "^0.5.1" - output-file-sync "^2.0.0" - slash "^2.0.0" - source-map "^0.5.0" - optionalDependencies: - chokidar "^2.0.3" - -"@babel/cli@7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.6.2.tgz#4ce8b5b4b2e4b4c1b7bd841cec62085e2dfc4465" - integrity sha512-JDZ+T/br9pPfT2lmAMJypJDTTTHM9ePD/ED10TRjRzJVdEVy+JB3iRlhzYmTt5YkNgHvxWGlUVnLtdv6ruiDrQ== +"@babel/cli@7.6.4": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.6.4.tgz#9b35a4e15fa7d8f487418aaa8229c8b0bc815f20" + integrity sha512-tqrDyvPryBM6xjIyKKUwr3s8CzmmYidwgdswd7Uc/Cv0ogZcuS1TYQTLx/eWKP3UbJ6JxZAiYlBZabXm/rtRsQ== dependencies: commander "^2.8.1" convert-source-map "^1.1.0" @@ -36,13 +19,6 @@ optionalDependencies: chokidar "^2.1.8" -"@babel/code-frame@7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" - integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== - dependencies: - "@babel/highlight" "^7.0.0" - "@babel/code-frame@7.5.5", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" @@ -50,26 +26,6 @@ dependencies: "@babel/highlight" "^7.0.0" -"@babel/core@7.2.2": - version "7.2.2" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.2.2.tgz#07adba6dde27bb5ad8d8672f15fde3e08184a687" - integrity sha512-59vB0RWt09cAct5EIe58+NzGP4TFSD3Bz//2/ELy3ZeTeKF6VTD1AXlH8BGGbCX0PuobZBsIzO7IAI9PH67eKw== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.2.2" - "@babel/helpers" "^7.2.0" - "@babel/parser" "^7.2.2" - "@babel/template" "^7.2.2" - "@babel/traverse" "^7.2.2" - "@babel/types" "^7.2.2" - convert-source-map "^1.1.0" - debug "^4.1.0" - json5 "^2.1.0" - lodash "^4.17.10" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - "@babel/core@7.5.5", "@babel/core@^7.0.0", "@babel/core@^7.4.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.5.5.tgz#17b2686ef0d6bc58f963dddd68ab669755582c30" @@ -110,18 +66,18 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/core@7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.6.2.tgz#069a776e8d5e9eefff76236bc8845566bd31dd91" - integrity sha512-l8zto/fuoZIbncm+01p8zPSDZu/VuuJhAfA7d/AbzM09WR7iVhavvfNDYCNpo1VvLk6E6xgAoP9P+/EMJHuRkQ== +"@babel/core@7.6.4": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.6.4.tgz#6ebd9fe00925f6c3e177bb726a188b5f578088ff" + integrity sha512-Rm0HGw101GY8FTzpWSyRbki/jzq+/PkNQJ+nSulrdY6gFGOsNseCqD6KHRYe2E+EdzuBdr2pxCp6s4Uk6eJ+XQ== dependencies: "@babel/code-frame" "^7.5.5" - "@babel/generator" "^7.6.2" + "@babel/generator" "^7.6.4" "@babel/helpers" "^7.6.2" - "@babel/parser" "^7.6.2" + "@babel/parser" "^7.6.4" "@babel/template" "^7.6.0" - "@babel/traverse" "^7.6.2" - "@babel/types" "^7.6.0" + "@babel/traverse" "^7.6.3" + "@babel/types" "^7.6.3" convert-source-map "^1.1.0" debug "^4.1.0" json5 "^2.1.0" @@ -130,7 +86,7 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.2.2", "@babel/generator@^7.4.0", "@babel/generator@^7.5.5": +"@babel/generator@^7.4.0", "@babel/generator@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.5.tgz#873a7f936a3c89491b43536d12245b626664e3cf" integrity sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ== @@ -162,6 +118,16 @@ lodash "^4.17.13" source-map "^0.5.0" +"@babel/generator@^7.6.3", "@babel/generator@^7.6.4": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.6.4.tgz#a4f8437287bf9671b07f483b76e3bb731bc97671" + integrity sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w== + dependencies: + "@babel/types" "^7.6.3" + jsesc "^2.5.1" + lodash "^4.17.13" + source-map "^0.5.0" + "@babel/helper-annotate-as-pure@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" @@ -194,7 +160,7 @@ "@babel/traverse" "^7.4.4" "@babel/types" "^7.4.4" -"@babel/helper-create-class-features-plugin@^7.3.0", "@babel/helper-create-class-features-plugin@^7.4.4", "@babel/helper-create-class-features-plugin@^7.5.5": +"@babel/helper-create-class-features-plugin@^7.4.4", "@babel/helper-create-class-features-plugin@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.5.5.tgz#401f302c8ddbc0edd36f7c6b2887d8fa1122e5a4" integrity sha512-ZsxkyYiRA7Bg+ZTRpPvB6AbOFKTFFK4LrvTet8lInm0V468MWCaSYJE+I7v2z2r8KNLtYiV+K5kTCnR7dvyZjg== @@ -349,7 +315,7 @@ "@babel/traverse" "^7.1.0" "@babel/types" "^7.2.0" -"@babel/helpers@^7.2.0", "@babel/helpers@^7.5.5": +"@babel/helpers@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.5.5.tgz#63908d2a73942229d1e6685bc2a0e730dde3b75e" integrity sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g== @@ -385,7 +351,7 @@ esutils "^2.0.2" js-tokens "^4.0.0" -"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.2.2", "@babel/parser@^7.4.3", "@babel/parser@^7.4.4", "@babel/parser@^7.5.5": +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.4.4", "@babel/parser@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.5.tgz#02f077ac8817d3df4a832ef59de67565e71cca4b" integrity sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g== @@ -400,6 +366,11 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.2.tgz#205e9c95e16ba3b8b96090677a67c9d6075b70a1" integrity sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg== +"@babel/parser@^7.6.3", "@babel/parser@^7.6.4": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.4.tgz#cb9b36a7482110282d5cb6dd424ec9262b473d81" + integrity sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A== + "@babel/plugin-proposal-async-generator-functions@^7.2.0": version "7.2.0" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" @@ -417,15 +388,6 @@ "@babel/helper-create-class-features-plugin" "^7.5.5" "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-proposal-decorators@7.3.0": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.3.0.tgz#637ba075fa780b1f75d08186e8fb4357d03a72a7" - integrity sha512-3W/oCUmsO43FmZIqermmq6TKaRSYhmh/vybPfVFwQWdSb8xwki38uAIvknCRzuyHRuYfCYmJzL9or1v0AffPjg== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.3.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-decorators" "^7.2.0" - "@babel/plugin-proposal-decorators@7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.4.tgz#de9b2a1a8ab0196f378e2a82f10b6e2a36f21cc0" @@ -460,13 +422,13 @@ "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-json-strings" "^7.2.0" -"@babel/plugin-proposal-object-rest-spread@7.3.2": - version "7.3.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.3.2.tgz#6d1859882d4d778578e41f82cc5d7bf3d5daf6c1" - integrity sha512-DjeMS+J2+lpANkYLLO+m6GjoTMygYglKmRe6cDTbFv3L9i6mmiE8fe6B8MtCSLZpVXscD5kn7s6SgtHrDoBWoA== +"@babel/plugin-proposal-nullish-coalescing-operator@7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.4.4.tgz#41c360d59481d88e0ce3a3f837df10121a769b39" + integrity sha512-Amph7Epui1Dh/xxUxS2+K22/MUi6+6JVTvy3P58tja3B6yKTSjwwx0/d83rF7551D6PVSSoplQb8GCwqec7HRw== dependencies: "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.2.0" "@babel/plugin-proposal-object-rest-spread@7.5.5", "@babel/plugin-proposal-object-rest-spread@^7.3.2", "@babel/plugin-proposal-object-rest-spread@^7.5.5": version "7.5.5" @@ -476,7 +438,7 @@ "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-object-rest-spread" "^7.2.0" -"@babel/plugin-proposal-object-rest-spread@^7.6.2": +"@babel/plugin-proposal-object-rest-spread@7.6.2", "@babel/plugin-proposal-object-rest-spread@^7.6.2": version "7.6.2" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz#8ffccc8f3a6545e9f78988b6bf4fe881b88e8096" integrity sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw== @@ -560,6 +522,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.0.0" +"@babel/plugin-syntax-nullish-coalescing-operator@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.2.0.tgz#f75083dfd5ade73e783db729bbd87e7b9efb7624" + integrity sha512-lRCEaKE+LTxDQtgbYajI04ddt6WW0WJq57xqkAZ+s11h4YgfRHhVA/Y2VhfPzzFD4qeLHWg32DMp9HooY4Kqlg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0": version "7.2.0" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" @@ -619,7 +588,7 @@ "@babel/helper-plugin-utils" "^7.0.0" lodash "^4.17.13" -"@babel/plugin-transform-block-scoping@^7.6.0", "@babel/plugin-transform-block-scoping@^7.6.2": +"@babel/plugin-transform-block-scoping@^7.6.0": version "7.6.2" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.2.tgz#96c33ab97a9ae500cc6f5b19e04a7e6553360a79" integrity sha512-zZT8ivau9LOQQaOGC7bQLQOT4XPkPXgN2ERfUgk1X8ql+mVkLc4E8eKk+FO3o0154kxzqenWCorfmEXpEZcrSQ== @@ -627,6 +596,14 @@ "@babel/helper-plugin-utils" "^7.0.0" lodash "^4.17.13" +"@babel/plugin-transform-block-scoping@^7.6.3": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.3.tgz#6e854e51fbbaa84351b15d4ddafe342f3a5d542a" + integrity sha512-7hvrg75dubcO3ZI2rjYTzUrEuh1E9IyDEhhB6qfcooxhDA33xx2MasuLVgdxzcP6R/lipAC6n9ub9maNW6RKdw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + lodash "^4.17.13" + "@babel/plugin-transform-classes@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9" @@ -703,6 +680,14 @@ "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-flow" "^7.2.0" +"@babel/plugin-transform-flow-strip-types@7.6.3": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.6.3.tgz#8110f153e7360cfd5996eee68706cfad92d85256" + integrity sha512-l0ETkyEofkqFJ9LS6HChNIKtVJw2ylKbhYMlJ5C6df+ldxxaLIyXY4yOdDQQspfFpV8/vDiaWoJlvflstlYNxg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-flow" "^7.2.0" + "@babel/plugin-transform-for-of@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" @@ -785,13 +770,20 @@ dependencies: regexp-tree "^0.1.6" -"@babel/plugin-transform-named-capturing-groups-regex@^7.6.0", "@babel/plugin-transform-named-capturing-groups-regex@^7.6.2": +"@babel/plugin-transform-named-capturing-groups-regex@^7.6.0": version "7.6.2" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.2.tgz#c1ca0bb84b94f385ca302c3932e870b0fb0e522b" integrity sha512-xBdB+XOs+lgbZc2/4F5BVDVcDNS4tcSKQc96KmlqLEAwz6tpYPEvPdmDfvVG0Ssn8lAhronaRs6Z6KSexIpK5g== dependencies: regexpu-core "^4.6.0" +"@babel/plugin-transform-named-capturing-groups-regex@^7.6.3": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.3.tgz#aaa6e409dd4fb2e50b6e2a91f7e3a3149dbce0cf" + integrity sha512-jTkk7/uE6H2s5w6VlMHeWuH+Pcy2lmdwFoeWCVnvIrDUnB5gQqTVI8WfmEAhF2CDEarGrknZcmSFg1+bkfCoSw== + dependencies: + regexpu-core "^4.6.0" + "@babel/plugin-transform-new-target@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" @@ -877,16 +869,6 @@ dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-runtime@7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.2.0.tgz#566bc43f7d0aedc880eaddbd29168d0f248966ea" - integrity sha512-jIgkljDdq4RYDnJyQsiWbdvGeei/0MOTtSHKO/rfbd/mXBxNpdlulMx49L0HQ4pug1fXannxoqCI+fYSle9eSw== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - resolve "^1.8.1" - semver "^5.5.1" - "@babel/plugin-transform-runtime@7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.5.5.tgz#a6331afbfc59189d2135b2e09474457a8e3d28bc" @@ -1108,10 +1090,10 @@ js-levenshtein "^1.1.3" semver "^5.5.0" -"@babel/preset-env@7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.6.2.tgz#abbb3ed785c7fe4220d4c82a53621d71fc0c75d3" - integrity sha512-Ru7+mfzy9M1/YTEtlDS8CD45jd22ngb9tXnn64DvQK3ooyqSw9K4K9DUWmYknTTVk4TqygL9dqCrZgm1HMea/Q== +"@babel/preset-env@7.6.3": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.6.3.tgz#9e1bf05a2e2d687036d24c40e4639dc46cef2271" + integrity sha512-CWQkn7EVnwzlOdR5NOm2+pfgSNEZmvGjOhlCHBDq0J8/EStr+G+FvPEiz9B56dR6MoiUFjXhfE4hjLoAKKJtIQ== dependencies: "@babel/helper-module-imports" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0" @@ -1129,7 +1111,7 @@ "@babel/plugin-transform-arrow-functions" "^7.2.0" "@babel/plugin-transform-async-to-generator" "^7.5.0" "@babel/plugin-transform-block-scoped-functions" "^7.2.0" - "@babel/plugin-transform-block-scoping" "^7.6.2" + "@babel/plugin-transform-block-scoping" "^7.6.3" "@babel/plugin-transform-classes" "^7.5.5" "@babel/plugin-transform-computed-properties" "^7.2.0" "@babel/plugin-transform-destructuring" "^7.6.0" @@ -1144,7 +1126,7 @@ "@babel/plugin-transform-modules-commonjs" "^7.6.0" "@babel/plugin-transform-modules-systemjs" "^7.5.0" "@babel/plugin-transform-modules-umd" "^7.2.0" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.6.2" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.6.3" "@babel/plugin-transform-new-target" "^7.4.4" "@babel/plugin-transform-object-super" "^7.5.5" "@babel/plugin-transform-parameters" "^7.4.4" @@ -1157,7 +1139,7 @@ "@babel/plugin-transform-template-literals" "^7.4.4" "@babel/plugin-transform-typeof-symbol" "^7.2.0" "@babel/plugin-transform-unicode-regex" "^7.6.2" - "@babel/types" "^7.6.0" + "@babel/types" "^7.6.3" browserslist "^4.6.0" core-js-compat "^3.1.1" invariant "^2.2.2" @@ -1183,6 +1165,17 @@ "@babel/plugin-transform-react-jsx-self" "^7.0.0" "@babel/plugin-transform-react-jsx-source" "^7.0.0" +"@babel/preset-react@7.6.3": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.6.3.tgz#d5242c828322520205ae4eda5d4f4f618964e2f6" + integrity sha512-07yQhmkZmRAfwREYIQgW0HEwMY9GBJVuPY4Q12UC72AbfaawuupVWa8zQs2tlL+yun45Nv/1KreII/0PLfEsgA== + 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/preset-typescript@7.3.3": version "7.3.3" resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.3.3.tgz#88669911053fa16b2b276ea2ede2ca603b3f307a" @@ -1207,22 +1200,6 @@ core-js "^2.5.7" regenerator-runtime "^0.12.0" -"@babel/runtime-corejs2@7.3.1": - version "7.3.1" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs2/-/runtime-corejs2-7.3.1.tgz#0c113242e2328f9674d42703a89bee6ebebe9a82" - integrity sha512-YpO13776h3e6Wy8dl2J8T9Qwlvopr+b4trCEhHE+yek6yIqV8sx6g3KozdHMbXeBpjosbPi+Ii5Z7X9oXFHUKA== - dependencies: - core-js "^2.5.7" - regenerator-runtime "^0.12.0" - -"@babel/runtime-corejs2@7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs2/-/runtime-corejs2-7.6.2.tgz#062f8e31f3df30fc1a3dea68aa1bd854e06e9ba6" - integrity sha512-wdyVKnTv9Be4YlwF/7pByYNfcl23qC21aAQ0aIaZOo2ZOvhFEyJdBLJClYZ9i+Pmrz7sUQgg/MwbJa2RZTkygg== - dependencies: - core-js "^2.6.5" - regenerator-runtime "^0.13.2" - "@babel/runtime-corejs2@^7.0.0": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/runtime-corejs2/-/runtime-corejs2-7.5.5.tgz#c3214c08ef20341af4187f1c9fbdc357fbec96b2" @@ -1231,6 +1208,14 @@ core-js "^2.6.5" regenerator-runtime "^0.13.2" +"@babel/runtime-corejs3@7.6.3": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.6.3.tgz#a2b2b7ceea6ecb37ff822d293a312f1f00c29b84" + integrity sha512-933SXHQr7apa95F+3IqkBne8mqOnu1kDh6dnSddC07aW/R51WsOVD7MSczJ6DRpq/L8KLll7TFDxmt30pft44w== + dependencies: + core-js-pure "^3.0.0" + regenerator-runtime "^0.13.2" + "@babel/runtime@7.3.4": version "7.3.4" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.3.4.tgz#73d12ba819e365fcf7fd152aed56d6df97d21c83" @@ -1252,7 +1237,7 @@ dependencies: regenerator-runtime "^0.13.2" -"@babel/template@^7.1.0", "@babel/template@^7.2.2", "@babel/template@^7.4.0", "@babel/template@^7.4.4": +"@babel/template@^7.1.0", "@babel/template@^7.4.0", "@babel/template@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237" integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw== @@ -1270,7 +1255,7 @@ "@babel/parser" "^7.6.0" "@babel/types" "^7.6.0" -"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.2.2", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4", "@babel/traverse@^7.5.5": +"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4", "@babel/traverse@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.5.tgz#f664f8f368ed32988cd648da9f72d5ca70f165bb" integrity sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ== @@ -1315,7 +1300,22 @@ globals "^11.1.0" lodash "^4.17.13" -"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5": +"@babel/traverse@^7.6.3": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.6.3.tgz#66d7dba146b086703c0fb10dd588b7364cec47f9" + integrity sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw== + dependencies: + "@babel/code-frame" "^7.5.5" + "@babel/generator" "^7.6.3" + "@babel/helper-function-name" "^7.1.0" + "@babel/helper-split-export-declaration" "^7.4.4" + "@babel/parser" "^7.6.3" + "@babel/types" "^7.6.3" + debug "^4.1.0" + globals "^11.1.0" + lodash "^4.17.13" + +"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.5.5.tgz#97b9f728e182785909aa4ab56264f090a028d18a" integrity sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw== @@ -1333,6 +1333,15 @@ lodash "^4.17.13" to-fast-properties "^2.0.0" +"@babel/types@^7.6.3": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.6.3.tgz#3f07d96f854f98e2fbd45c64b0cb942d11e8ba09" + integrity sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA== + dependencies: + esutils "^2.0.2" + lodash "^4.17.13" + to-fast-properties "^2.0.0" + "@cnakazawa/watch@^1.0.3": version "1.0.3" resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" @@ -4410,7 +4419,7 @@ axobject-query@^2.0.2: dependencies: ast-types-flow "0.0.7" -babel-code-frame@^6.16.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: +babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= @@ -4559,14 +4568,6 @@ babel-plugin-jest-hoist@^24.9.0: dependencies: "@types/babel__traverse" "^7.0.6" -babel-plugin-macros@2.4.5: - version "2.4.5" - resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.4.5.tgz#7000a9b1f72d19ceee19a5804f1d23d6daf38c13" - integrity sha512-+/9yteNQw3yuZ3krQUfjAeoT/f4EAdn3ELwhFfDj0rTMIaoHfIdrcLePOfIaL0qmFLpIcgPIL2Lzm58h+CGWaw== - dependencies: - cosmiconfig "^5.0.5" - resolve "^1.8.1" - babel-plugin-macros@2.6.1, babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.4.5: version "2.6.1" resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.6.1.tgz#41f7ead616fc36f6a93180e89697f69f51671181" @@ -5683,7 +5684,7 @@ chokidar@2.1.6: optionalDependencies: fsevents "^1.2.7" -chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.3, chokidar@^2.0.4, chokidar@^2.1.8: +chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.4, chokidar@^2.1.8: version "2.1.8" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== @@ -6358,6 +6359,11 @@ core-js-compat@^3.1.1: browserslist "^4.6.6" semver "^6.3.0" +core-js-pure@^3.0.0: + version "3.3.3" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.3.3.tgz#c6a796e371782394ffb60d82ff67e0e073070093" + integrity sha512-sBLE90LngoFYwhLsy5ftt+WWxkQnMufRsn2uyYxJxW73SkvAlxonAdZARimkKrK1c+w01eX9r19vA/J5KMtqfA== + core-js-pure@^3.0.1: version "3.2.1" resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.2.1.tgz#879a23699cff46175bfd2d09158b5c50645a3c45" @@ -6399,7 +6405,7 @@ cors@2.8.5, cors@^2.8.1: object-assign "^4" vary "^1" -cosmiconfig@^5.0.0, cosmiconfig@^5.0.5, cosmiconfig@^5.1.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1: +cosmiconfig@^5.0.0, cosmiconfig@^5.1.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1: version "5.2.1" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== @@ -6580,24 +6586,6 @@ css-has-pseudo@^0.10.0: postcss "^7.0.6" postcss-selector-parser "^5.0.0-rc.4" -css-loader@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-1.0.0.tgz#9f46aaa5ca41dbe31860e3b62b8e23c42916bf56" - integrity sha512-tMXlTYf3mIMt3b0dDCOQFJiVvxbocJ5Ho577WiGPYPZcqVEO218L2iU22pDXzkTZCLDE+9AmGSUkWxeh/nZReA== - dependencies: - babel-code-frame "^6.26.0" - css-selector-tokenizer "^0.7.0" - icss-utils "^2.1.0" - loader-utils "^1.0.2" - lodash.camelcase "^4.3.0" - postcss "^6.0.23" - postcss-modules-extract-imports "^1.2.0" - postcss-modules-local-by-default "^1.2.0" - postcss-modules-scope "^1.1.0" - postcss-modules-values "^1.3.0" - postcss-value-parser "^3.3.0" - source-list-map "^2.0.0" - css-loader@2.1.1, css-loader@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz#d8254f72e412bb2238bb44dd674ffbef497333ea" @@ -6615,6 +6603,24 @@ css-loader@2.1.1, css-loader@^2.1.1: postcss-value-parser "^3.3.0" schema-utils "^1.0.0" +css-loader@3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.2.0.tgz#bb570d89c194f763627fcf1f80059c6832d009b2" + integrity sha512-QTF3Ud5H7DaZotgdcJjGMvyDj5F3Pn1j/sC6VBEOVp94cbwqyIBdcs/quzj4MC1BKQSrTpQznegH/5giYbhnCQ== + dependencies: + camelcase "^5.3.1" + cssesc "^3.0.0" + icss-utils "^4.1.1" + loader-utils "^1.2.3" + normalize-path "^3.0.0" + postcss "^7.0.17" + postcss-modules-extract-imports "^2.0.0" + postcss-modules-local-by-default "^3.0.2" + postcss-modules-scope "^2.1.0" + postcss-modules-values "^3.0.0" + postcss-value-parser "^4.0.0" + schema-utils "^2.0.0" + css-prefers-color-scheme@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz#6f830a2714199d4f0d0d0bb8a27916ed65cff1f4" @@ -6647,15 +6653,6 @@ css-select@^2.0.0: domutils "^1.7.0" nth-check "^1.0.2" -css-selector-tokenizer@^0.7.0: - version "0.7.1" - resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz#a177271a8bca5019172f4f891fc6eed9cbf68d5d" - integrity sha512-xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA== - dependencies: - cssesc "^0.1.0" - fastparse "^1.1.1" - regexpu-core "^1.0.0" - css-tree@1.0.0-alpha.29: version "1.0.0-alpha.29" resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39" @@ -6697,11 +6694,6 @@ cssdb@^4.4.0: resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.4.0.tgz#3bf2f2a68c10f5c6a08abd92378331ee803cddb0" integrity sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ== -cssesc@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" - integrity sha1-yBSQPkViM3GgR3tAEJqq++6t27Q= - cssesc@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" @@ -9050,11 +9042,6 @@ fast-safe-stringify@^2.0.4: resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.6.tgz#04b26106cc56681f51a044cfc0d76cf0008ac2c2" integrity sha512-q8BZ89jjc+mz08rSxROs8VsrBBcn1SIw1kq9NjolL509tkABRk9io01RAjSaEv1Xb2uFLt8VtRiZbGp5H8iDtg== -fastparse@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9" - integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== - fault@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.3.tgz#4da88cf979b6b792b4e13c7ec836767725170b7e" @@ -10694,14 +10681,7 @@ icss-replace-symbols@^1.1.0: resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= -icss-utils@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" - integrity sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI= - dependencies: - postcss "^6.0.1" - -icss-utils@^4.1.0: +icss-utils@^4.0.0, icss-utils@^4.1.0, icss-utils@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== @@ -12706,11 +12686,6 @@ lodash.assign@^4.0.3, lodash.assign@^4.0.6, lodash.assign@^4.2.0: resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" integrity sha1-DZnzzNem0mHRm9rrkkUAXShYCOc= -lodash.camelcase@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" - integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= - lodash.clonedeep@4.5.0, lodash.clonedeep@^4.3.2, lodash.clonedeep@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" @@ -15509,13 +15484,6 @@ postcss-minify-selectors@^4.0.2: postcss "^7.0.0" postcss-selector-parser "^3.0.0" -postcss-modules-extract-imports@^1.2.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz#dc87e34148ec7eab5f791f7cd5849833375b741a" - integrity sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw== - dependencies: - postcss "^6.0.1" - postcss-modules-extract-imports@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" @@ -15523,14 +15491,6 @@ postcss-modules-extract-imports@^2.0.0: dependencies: postcss "^7.0.5" -postcss-modules-local-by-default@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" - integrity sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk= - dependencies: - css-selector-tokenizer "^0.7.0" - postcss "^6.0.1" - postcss-modules-local-by-default@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz#dd9953f6dd476b5fd1ef2d8830c8929760b56e63" @@ -15540,13 +15500,15 @@ postcss-modules-local-by-default@^2.0.6: postcss-selector-parser "^6.0.0" postcss-value-parser "^3.3.1" -postcss-modules-scope@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" - integrity sha1-1upkmUx5+XtipytCb75gVqGUu5A= +postcss-modules-local-by-default@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915" + integrity sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ== dependencies: - css-selector-tokenizer "^0.7.0" - postcss "^6.0.1" + icss-utils "^4.1.1" + postcss "^7.0.16" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.0.0" postcss-modules-scope@^2.1.0: version "2.1.0" @@ -15556,14 +15518,6 @@ postcss-modules-scope@^2.1.0: postcss "^7.0.6" postcss-selector-parser "^6.0.0" -postcss-modules-values@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" - integrity sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA= - dependencies: - icss-replace-symbols "^1.1.0" - postcss "^6.0.1" - postcss-modules-values@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz#479b46dc0c5ca3dc7fa5270851836b9ec7152f64" @@ -15572,6 +15526,14 @@ postcss-modules-values@^2.0.0: icss-replace-symbols "^1.1.0" postcss "^7.0.6" +postcss-modules-values@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10" + integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== + dependencies: + icss-utils "^4.0.0" + postcss "^7.0.6" + postcss-nesting@^7.0.0: version "7.0.1" resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-7.0.1.tgz#b50ad7b7f0173e5b5e3880c3501344703e04c052" @@ -15820,7 +15782,7 @@ postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.3, postcss-sel indexes-of "^1.0.1" uniq "^1.0.1" -postcss-selector-parser@^6.0.0: +postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== @@ -15876,15 +15838,6 @@ postcss@7.0.14: source-map "^0.6.1" supports-color "^6.1.0" -postcss@^6.0.1, postcss@^6.0.23: - version "6.0.23" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" - integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== - dependencies: - chalk "^2.4.1" - source-map "^0.6.1" - supports-color "^5.4.0" - postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.5, postcss@^7.0.6: version "7.0.17" resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.17.tgz#4da1bdff5322d4a0acaab4d87f3e782436bad31f" @@ -15894,6 +15847,15 @@ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2 source-map "^0.6.1" supports-color "^6.1.0" +postcss@^7.0.16: + version "7.0.20" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.20.tgz#a107b68ef1ad1c5e6e214ebb3c5ede2799322837" + integrity sha512-VOdO3a5nHVftPSEbG1zaG320b4mH5KAflH+pIeVAF5/hlw6YumELSgHZQBekjg29Oj4qw7XAyp9tIEBpeNWcyg== + dependencies: + chalk "^2.4.2" + source-map "^0.6.1" + supports-color "^6.1.0" + prelude-ls@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" @@ -17305,7 +17267,7 @@ regenerate-unicode-properties@^8.1.0: dependencies: regenerate "^1.4.0" -regenerate@^1.2.1, regenerate@^1.4.0: +regenerate@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== @@ -17362,15 +17324,6 @@ regexpp@^2.0.1: resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== -regexpu-core@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" - integrity sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs= - dependencies: - regenerate "^1.2.1" - regjsgen "^0.2.0" - regjsparser "^0.1.4" - regexpu-core@^4.5.4: version "4.5.5" resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.5.tgz#aaffe61c2af58269b3e516b61a73790376326411" @@ -17395,23 +17348,11 @@ regexpu-core@^4.6.0: unicode-match-property-ecmascript "^1.0.4" unicode-match-property-value-ecmascript "^1.1.0" -regjsgen@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" - integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc= - regjsgen@^0.5.0: version "0.5.0" resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== -regjsparser@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" - integrity sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw= - dependencies: - jsesc "~0.5.0" - regjsparser@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" @@ -18097,6 +18038,14 @@ schema-utils@^2.0.0, schema-utils@^2.0.1, schema-utils@^2.1.0: ajv "^6.10.2" ajv-keywords "^3.4.1" +schema-utils@^2.4.1: + version "2.5.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.5.0.tgz#8f254f618d402cc80257486213c8970edfd7c22f" + integrity sha512-32ISrwW2scPXHUSusP8qMg5dLUawKkyV+/qIEV9JdXKx+rsM6mi8vZY8khg2M69Qom16rtroWXD3Ybtiws38gQ== + dependencies: + ajv "^6.10.2" + ajv-keywords "^3.4.1" + scrypt-js@2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-2.0.3.tgz#bb0040be03043da9a012a2cea9fc9f852cfc87d4" @@ -19335,14 +19284,6 @@ strong-log-transformer@^2.0.0: minimist "^1.2.0" through "^2.3.4" -style-loader@0.23.1, style-loader@^0.23.1: - version "0.23.1" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925" - integrity sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg== - dependencies: - loader-utils "^1.1.0" - schema-utils "^1.0.0" - style-loader@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.0.0.tgz#1d5296f9165e8e2c85d24eee0b7caf9ec8ca1f82" @@ -19351,6 +19292,14 @@ style-loader@1.0.0: loader-utils "^1.2.3" schema-utils "^2.0.1" +style-loader@^0.23.1: + version "0.23.1" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925" + integrity sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg== + dependencies: + loader-utils "^1.1.0" + schema-utils "^1.0.0" + stylehacks@^4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" @@ -19389,7 +19338,7 @@ supports-color@^3.1.0: dependencies: has-flag "^1.0.0" -supports-color@^5.1.0, supports-color@^5.3.0, supports-color@^5.4.0, supports-color@^5.5.0: +supports-color@^5.1.0, supports-color@^5.3.0, supports-color@^5.5.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== @@ -20288,6 +20237,15 @@ url-loader@2.1.0: mime "^2.4.4" schema-utils "^2.0.0" +url-loader@2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-2.2.0.tgz#af321aece1fd0d683adc8aaeb27829f29c75b46e" + integrity sha512-G8nk3np8ZAnwhHXas1JxJEwJyQdqFXAKJehfgZ/XrC48volFBRtO+FIKtF2u0Ma3bw+4vnDVjHPAQYlF9p2vsw== + dependencies: + loader-utils "^1.2.3" + mime "^2.4.4" + schema-utils "^2.4.1" + url-loader@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-1.1.2.tgz#b971d191b83af693c5e3fea4064be9e1f2d7f8d8" @@ -21417,7 +21375,36 @@ webpack@4.40.2: watchpack "^1.6.0" webpack-sources "^1.4.1" -webpack@4.41.0, webpack@^4.33.0, webpack@^4.38.0: +webpack@4.41.2: + version "4.41.2" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.2.tgz#c34ec76daa3a8468c9b61a50336d8e3303dce74e" + integrity sha512-Zhw69edTGfbz9/8JJoyRQ/pq8FYUoY0diOXqW0T6yhgdhCv6wr0hra5DwwWexNRns2Z2+gsnrNcbe9hbGBgk/A== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-module-context" "1.8.5" + "@webassemblyjs/wasm-edit" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" + acorn "^6.2.1" + ajv "^6.10.2" + ajv-keywords "^3.4.1" + chrome-trace-event "^1.0.2" + enhanced-resolve "^4.1.0" + eslint-scope "^4.0.3" + json-parse-better-errors "^1.0.2" + loader-runner "^2.4.0" + loader-utils "^1.2.3" + memory-fs "^0.4.1" + micromatch "^3.1.10" + mkdirp "^0.5.1" + neo-async "^2.6.1" + node-libs-browser "^2.2.1" + schema-utils "^1.0.0" + tapable "^1.1.3" + terser-webpack-plugin "^1.4.1" + watchpack "^1.6.0" + webpack-sources "^1.4.1" + +webpack@^4.33.0, webpack@^4.38.0: version "4.41.0" resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.0.tgz#db6a254bde671769f7c14e90a1a55e73602fc70b" integrity sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g==