From 50cd2a3f3076c29b2e4ffca9fda2bfb105efd5ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Wed, 29 Apr 2020 13:58:45 +0200 Subject: [PATCH 1/4] Fix Sitemap http to https --- src/routes/sitemap.xml.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/sitemap.xml.js b/src/routes/sitemap.xml.js index d776508..070ba54 100644 --- a/src/routes/sitemap.xml.js +++ b/src/routes/sitemap.xml.js @@ -46,7 +46,7 @@ const render = (pages, locations) => { // Get function export async function get (req, res, next) { // Define base url from request - baseURL = `http${(req.httpVersion >= 2) ? 's' : ''}://${req.headers.host}` + baseURL = `https://${req.headers.host}` // Get locations const locationsReq = await fetch(`${apiEndpoints.rest}/items/locations?fields=slug,country.slug,modified_on&status=published`) From c9e11d4f12043001b64914bef366e4622c17e29c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Wed, 29 Apr 2020 14:17:43 +0200 Subject: [PATCH 2/4] Pagination: Fix spacing for Newsletter --- src/style/molecules/_newsletter.scss | 4 ++-- src/style/organisms/_pagination.scss | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/style/molecules/_newsletter.scss b/src/style/molecules/_newsletter.scss index 49780d4..a3fd3fe 100644 --- a/src/style/molecules/_newsletter.scss +++ b/src/style/molecules/_newsletter.scss @@ -40,10 +40,10 @@ &--small { .newsletter__text { max-width: 344px; - margin-bottom: 56px; + margin-bottom: 32px; @include breakpoint (sm) { - margin-bottom: 72px; + margin-bottom: 48px; } } } diff --git a/src/style/organisms/_pagination.scss b/src/style/organisms/_pagination.scss index 156d315..820b8e0 100644 --- a/src/style/organisms/_pagination.scss +++ b/src/style/organisms/_pagination.scss @@ -99,16 +99,14 @@ // Message &__message { - padding: pxVW(40) 0; - h3 { font-family: $font-serif; font-size: rem(32px); color: $color-secondary; - margin-bottom: 24px; + margin-bottom: 16px; @include breakpoint (sm) { - margin-bottom: 32px; + margin-bottom: 24px; font-size: rem(40px); } } From acdc81cfc66fce315189534fe2352cae6e1340da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Wed, 29 Apr 2020 19:10:30 +0200 Subject: [PATCH 3/4] Bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5a60da2..42073a7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "housesof", - "version": "1.0.0", + "version": "1.1.0", "description": "Houses Of website", "author": { "name": "Flayks", From fd87c11232b9fe00b77e201c99b6dfa849c33920 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Wed, 6 May 2020 10:31:01 +0200 Subject: [PATCH 4/4] Fix Rollup config for ServiceWorker/Server, NPM packages updates --- package.json | 18 +- pnpm-lock.yaml | 811 ++++++++++++++++++++++++++--------------------- rollup.config.js | 40 +-- 3 files changed, 479 insertions(+), 390 deletions(-) diff --git a/package.json b/package.json index 42073a7..690a04c 100644 --- a/package.json +++ b/package.json @@ -25,15 +25,15 @@ "rellax": "^1.12.1", "scroll-out": "^2.2.8", "sirv": "^0.4.2", - "svelte-lazy": "^0.1.10", + "svelte-lazy": "^0.1.11", "swipe-listener": "^1.1.0" }, "devDependencies": { - "@babel/core": "^7.9.0", + "@babel/core": "^7.9.6", "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.9.0", - "@babel/preset-env": "^7.9.5", - "@babel/runtime": "^7.9.2", + "@babel/plugin-transform-runtime": "^7.9.6", + "@babel/preset-env": "^7.9.6", + "@babel/runtime": "^7.9.6", "@rollup/plugin-alias": "^3.1.0", "@rollup/plugin-babel": "^5.0.0", "@rollup/plugin-commonjs": "11.0.2", @@ -42,16 +42,16 @@ "autoprefixer": "^9.7.6", "dotenv": "^8.2.0", "node-fetch": "^2.6.0", - "node-sass": "^4.14.0", - "postcss": "^7.0.27", + "node-sass": "^4.14.1", + "postcss": "^7.0.29", "postcss-load-config": "^2.1.0", "postcss-preset-env": "^6.7.0", - "rollup": "^2.7.3", + "rollup": "^2.8.0", "rollup-plugin-glslify": "^1.2.0", "rollup-plugin-svelte": "^5.2.1", "rollup-plugin-terser": "^5.3.0", "sapper": "^0.27.12", - "svelte": "^3.21.0", + "svelte": "^3.22.2", "svelte-preprocess": "^3.7.4" }, "browserslist": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 790ffaf..9c5788d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,33 +8,33 @@ dependencies: rellax: 1.12.1 scroll-out: 2.2.8 sirv: 0.4.2 - svelte-lazy: 0.1.10 + svelte-lazy: 0.1.11 swipe-listener: 1.1.0 devDependencies: - '@babel/core': 7.9.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-runtime': 7.9.0_@babel+core@7.9.0 - '@babel/preset-env': 7.9.5_@babel+core@7.9.0 - '@babel/runtime': 7.9.2 - '@rollup/plugin-alias': 3.1.0_rollup@2.7.3 - '@rollup/plugin-babel': 5.0.0_@babel+core@7.9.0+rollup@2.7.3 - '@rollup/plugin-commonjs': 11.0.2_rollup@2.7.3 - '@rollup/plugin-node-resolve': 7.1.3_rollup@2.7.3 - '@rollup/plugin-replace': 2.3.2_rollup@2.7.3 + '@babel/core': 7.9.6 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-runtime': 7.9.6_@babel+core@7.9.6 + '@babel/preset-env': 7.9.6_@babel+core@7.9.6 + '@babel/runtime': 7.9.6 + '@rollup/plugin-alias': 3.1.0_rollup@2.8.0 + '@rollup/plugin-babel': 5.0.0_@babel+core@7.9.6+rollup@2.8.0 + '@rollup/plugin-commonjs': 11.0.2_rollup@2.8.0 + '@rollup/plugin-node-resolve': 7.1.3_rollup@2.8.0 + '@rollup/plugin-replace': 2.3.2_rollup@2.8.0 autoprefixer: 9.7.6 dotenv: 8.2.0 node-fetch: 2.6.0 - node-sass: 4.14.0 - postcss: 7.0.27 + node-sass: 4.14.1 + postcss: 7.0.29 postcss-load-config: 2.1.0 postcss-preset-env: 6.7.0 - rollup: 2.7.3 + rollup: 2.8.0 rollup-plugin-glslify: 1.2.0 - rollup-plugin-svelte: 5.2.1_rollup@2.7.3+svelte@3.21.0 - rollup-plugin-terser: 5.3.0_rollup@2.7.3 - sapper: 0.27.12_svelte@3.21.0 - svelte: 3.21.0 - svelte-preprocess: 3.7.4_44e9bd38b1a414594b4fcbf91839036f + rollup-plugin-svelte: 5.2.1_rollup@2.8.0+svelte@3.22.2 + rollup-plugin-terser: 5.3.0_rollup@2.8.0 + sapper: 0.27.12_svelte@3.22.2 + svelte: 3.22.2 + svelte-preprocess: 3.7.4_0f5e9935bde736cfabfb00c1d85a6ff4 lockfileVersion: 5.1 packages: /@babel/code-frame/7.8.3: @@ -43,24 +43,24 @@ packages: dev: true resolution: integrity: sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== - /@babel/compat-data/7.9.0: + /@babel/compat-data/7.9.6: dependencies: browserslist: 4.12.0 invariant: 2.2.4 semver: 5.7.1 dev: true resolution: - integrity: sha512-zeFQrr+284Ekvd9e7KAX954LkapWiOmQtsfHirhxqfdlX6MEC32iRE+pqUGlYIBchdevaCwvzxWGSy/YBNI85g== - /@babel/core/7.9.0: + integrity: sha512-5QPTrNen2bm7RBc7dsOmcA5hbrS4O2Vhmk5XOL4zWW/zD/hV0iinpefDlkm+tBBy8kDtFaaeEvmAqt+nURAV2g== + /@babel/core/7.9.6: dependencies: '@babel/code-frame': 7.8.3 - '@babel/generator': 7.9.5 + '@babel/generator': 7.9.6 '@babel/helper-module-transforms': 7.9.0 - '@babel/helpers': 7.9.2 - '@babel/parser': 7.9.4 + '@babel/helpers': 7.9.6 + '@babel/parser': 7.9.6 '@babel/template': 7.8.6 - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 + '@babel/traverse': 7.9.6 + '@babel/types': 7.9.6 convert-source-map: 1.7.0 debug: 4.1.1 gensync: 1.0.0-beta.1 @@ -73,33 +73,33 @@ packages: engines: node: '>=6.9.0' resolution: - integrity: sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w== - /@babel/generator/7.9.5: + integrity: sha512-nD3deLvbsApbHAHttzIssYqgb883yU/d9roe4RZymBCDaZryMJDbptVpEpeQuRh4BJ+SYI8le9YGxKvFEvl1Wg== + /@babel/generator/7.9.6: dependencies: - '@babel/types': 7.9.5 + '@babel/types': 7.9.6 jsesc: 2.5.2 lodash: 4.17.15 source-map: 0.5.7 dev: true resolution: - integrity: sha512-GbNIxVB3ZJe3tLeDm1HSn2AhuD/mVcyLDpgtLXa5tplmWrJdF/elxB56XNqCuD6szyNkDi6wuoKXln3QeBmCHQ== + integrity: sha512-+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ== /@babel/helper-annotate-as-pure/7.8.3: dependencies: - '@babel/types': 7.9.5 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw== /@babel/helper-builder-binary-assignment-operator-visitor/7.8.3: dependencies: '@babel/helper-explode-assignable-expression': 7.8.3 - '@babel/types': 7.9.5 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw== - /@babel/helper-compilation-targets/7.8.7_@babel+core@7.9.0: + /@babel/helper-compilation-targets/7.9.6_@babel+core@7.9.6: dependencies: - '@babel/compat-data': 7.9.0 - '@babel/core': 7.9.0 + '@babel/compat-data': 7.9.6 + '@babel/core': 7.9.6 browserslist: 4.12.0 invariant: 2.2.4 levenary: 1.1.1 @@ -108,10 +108,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0 resolution: - integrity: sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw== - /@babel/helper-create-regexp-features-plugin/7.8.8_@babel+core@7.9.0: + integrity: sha512-x2Nvu0igO0ejXzx09B/1fGBxY9NXQlBW2kZsSxCJft+KHN8t9XWzIvFxtPHnBOAXpVsdxZKZFbRUC8TsNKajMw== + /@babel/helper-create-regexp-features-plugin/7.8.8_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-annotate-as-pure': 7.8.3 '@babel/helper-regex': 7.8.3 regexpu-core: 4.7.0 @@ -123,15 +123,15 @@ packages: /@babel/helper-define-map/7.8.3: dependencies: '@babel/helper-function-name': 7.9.5 - '@babel/types': 7.9.5 + '@babel/types': 7.9.6 lodash: 4.17.15 dev: true resolution: integrity: sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g== /@babel/helper-explode-assignable-expression/7.8.3: dependencies: - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 + '@babel/traverse': 7.9.6 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw== @@ -139,25 +139,25 @@ packages: dependencies: '@babel/helper-get-function-arity': 7.8.3 '@babel/template': 7.8.6 - '@babel/types': 7.9.5 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw== /@babel/helper-get-function-arity/7.8.3: dependencies: - '@babel/types': 7.9.5 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA== /@babel/helper-hoist-variables/7.8.3: dependencies: - '@babel/types': 7.9.5 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg== /@babel/helper-member-expression-to-functions/7.8.3: dependencies: - '@babel/types': 7.9.5 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA== @@ -174,14 +174,14 @@ packages: '@babel/helper-simple-access': 7.8.3 '@babel/helper-split-export-declaration': 7.8.3 '@babel/template': 7.8.6 - '@babel/types': 7.9.5 + '@babel/types': 7.9.6 lodash: 4.17.15 dev: true resolution: integrity: sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA== /@babel/helper-optimise-call-expression/7.8.3: dependencies: - '@babel/types': 7.9.5 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ== @@ -200,8 +200,8 @@ packages: '@babel/helper-annotate-as-pure': 7.8.3 '@babel/helper-wrap-function': 7.8.3 '@babel/template': 7.8.6 - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 + '@babel/traverse': 7.9.6 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA== @@ -209,21 +209,21 @@ packages: dependencies: '@babel/helper-member-expression-to-functions': 7.8.3 '@babel/helper-optimise-call-expression': 7.8.3 - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 + '@babel/traverse': 7.9.6 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA== /@babel/helper-simple-access/7.8.3: dependencies: '@babel/template': 7.8.6 - '@babel/types': 7.9.5 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw== /@babel/helper-split-export-declaration/7.8.3: dependencies: - '@babel/types': 7.9.5 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA== @@ -235,19 +235,19 @@ packages: dependencies: '@babel/helper-function-name': 7.9.5 '@babel/template': 7.8.6 - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 + '@babel/traverse': 7.9.6 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ== - /@babel/helpers/7.9.2: + /@babel/helpers/7.9.6: dependencies: '@babel/template': 7.8.6 - '@babel/traverse': 7.9.5 - '@babel/types': 7.9.5 + '@babel/traverse': 7.9.6 + '@babel/types': 7.9.6 dev: true resolution: - integrity: sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA== + integrity: sha512-tI4bUbldloLcHWoRUMAj4g1bF313M/o6fBKhIsb3QnGVPwRm9JsNf/gqMkQ7zjqReABiffPV6RWj7hEglID5Iw== /@babel/highlight/7.9.0: dependencies: '@babel/helper-validator-identifier': 7.9.5 @@ -256,99 +256,99 @@ packages: dev: true resolution: integrity: sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ== - /@babel/parser/7.9.4: + /@babel/parser/7.9.6: dev: true engines: node: '>=6.0.0' hasBin: true resolution: - integrity: sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA== - /@babel/plugin-proposal-async-generator-functions/7.8.3_@babel+core@7.9.0: + integrity: sha512-AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q== + /@babel/plugin-proposal-async-generator-functions/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 '@babel/helper-remap-async-to-generator': 7.8.3 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.0 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.6 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw== - /@babel/plugin-proposal-dynamic-import/7.8.3_@babel+core@7.9.0: + /@babel/plugin-proposal-dynamic-import/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.6 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w== - /@babel/plugin-proposal-json-strings/7.8.3_@babel+core@7.9.0: + /@babel/plugin-proposal-json-strings/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.0 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.6 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q== - /@babel/plugin-proposal-nullish-coalescing-operator/7.8.3_@babel+core@7.9.0: + /@babel/plugin-proposal-nullish-coalescing-operator/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.6 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== - /@babel/plugin-proposal-numeric-separator/7.8.3_@babel+core@7.9.0: + /@babel/plugin-proposal-numeric-separator/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-numeric-separator': 7.8.3_@babel+core@7.9.0 + '@babel/plugin-syntax-numeric-separator': 7.8.3_@babel+core@7.9.6 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ== - /@babel/plugin-proposal-object-rest-spread/7.9.5_@babel+core@7.9.0: + /@babel/plugin-proposal-object-rest-spread/7.9.6_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-parameters': 7.9.5_@babel+core@7.9.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-parameters': 7.9.5_@babel+core@7.9.6 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-VP2oXvAf7KCYTthbUHwBlewbl1Iq059f6seJGsxMizaCdgHIeczOr7FBqELhSqfkIl04Fi8okzWzl63UKbQmmg== - /@babel/plugin-proposal-optional-catch-binding/7.8.3_@babel+core@7.9.0: + integrity: sha512-Ga6/fhGqA9Hj+y6whNpPv8psyaK5xzrQwSPsGPloVkvmH+PqW1ixdnfJ9uIO06OjQNYol3PMnfmJ8vfZtkzF+A== + /@babel/plugin-proposal-optional-catch-binding/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.6 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw== - /@babel/plugin-proposal-optional-chaining/7.9.0_@babel+core@7.9.0: + /@babel/plugin-proposal-optional-chaining/7.9.0_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.6 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== - /@babel/plugin-proposal-unicode-property-regex/7.8.8_@babel+core@7.9.0: + /@babel/plugin-proposal-unicode-property-regex/7.8.8_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.9.0 + '@babel/core': 7.9.6 + '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true engines: @@ -357,99 +357,99 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A== - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.9.0: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.9.0: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.9.0: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.9.0: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - /@babel/plugin-syntax-numeric-separator/7.8.3_@babel+core@7.9.0: + /@babel/plugin-syntax-numeric-separator/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw== - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.9.0: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.9.0: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.9.0: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - /@babel/plugin-syntax-top-level-await/7.8.3_@babel+core@7.9.0: + /@babel/plugin-syntax-top-level-await/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g== - /@babel/plugin-transform-arrow-functions/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-arrow-functions/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg== - /@babel/plugin-transform-async-to-generator/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-async-to-generator/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-module-imports': 7.8.3 '@babel/helper-plugin-utils': 7.8.3 '@babel/helper-remap-async-to-generator': 7.8.3 @@ -458,18 +458,18 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ== - /@babel/plugin-transform-block-scoped-functions/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-block-scoped-functions/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg== - /@babel/plugin-transform-block-scoping/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-block-scoping/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 lodash: 4.17.15 dev: true @@ -477,9 +477,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w== - /@babel/plugin-transform-classes/7.9.5_@babel+core@7.9.0: + /@babel/plugin-transform-classes/7.9.5_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-annotate-as-pure': 7.8.3 '@babel/helper-define-map': 7.8.3 '@babel/helper-function-name': 7.9.5 @@ -493,46 +493,46 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg== - /@babel/plugin-transform-computed-properties/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-computed-properties/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA== - /@babel/plugin-transform-destructuring/7.9.5_@babel+core@7.9.0: + /@babel/plugin-transform-destructuring/7.9.5_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q== - /@babel/plugin-transform-dotall-regex/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-dotall-regex/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.9.0 + '@babel/core': 7.9.6 + '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw== - /@babel/plugin-transform-duplicate-keys/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-duplicate-keys/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ== - /@babel/plugin-transform-exponentiation-operator/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-exponentiation-operator/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-builder-binary-assignment-operator-visitor': 7.8.3 '@babel/helper-plugin-utils': 7.8.3 dev: true @@ -540,18 +540,18 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ== - /@babel/plugin-transform-for-of/7.9.0_@babel+core@7.9.0: + /@babel/plugin-transform-for-of/7.9.0_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ== - /@babel/plugin-transform-function-name/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-function-name/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-function-name': 7.9.5 '@babel/helper-plugin-utils': 7.8.3 dev: true @@ -559,27 +559,27 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ== - /@babel/plugin-transform-literals/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-literals/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A== - /@babel/plugin-transform-member-expression-literals/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-member-expression-literals/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA== - /@babel/plugin-transform-modules-amd/7.9.0_@babel+core@7.9.0: + /@babel/plugin-transform-modules-amd/7.9.6_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-module-transforms': 7.9.0 '@babel/helper-plugin-utils': 7.8.3 babel-plugin-dynamic-import-node: 2.3.3 @@ -587,10 +587,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-vZgDDF003B14O8zJy0XXLnPH4sg+9X5hFBBGN1V+B2rgrB+J2xIypSN6Rk9imB2hSTHQi5OHLrFWsZab1GMk+Q== - /@babel/plugin-transform-modules-commonjs/7.9.0_@babel+core@7.9.0: + integrity: sha512-zoT0kgC3EixAyIAU+9vfaUVKTv9IxBDSabgHoUCBP6FqEJ+iNiN7ip7NBKcYqbfUDfuC2mFCbM7vbu4qJgOnDw== + /@babel/plugin-transform-modules-commonjs/7.9.6_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-module-transforms': 7.9.0 '@babel/helper-plugin-utils': 7.8.3 '@babel/helper-simple-access': 7.8.3 @@ -599,10 +599,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g== - /@babel/plugin-transform-modules-systemjs/7.9.0_@babel+core@7.9.0: + integrity: sha512-7H25fSlLcn+iYimmsNe3uK1at79IE6SKW9q0/QeEHTMC9MdOZ+4bA+T1VFB5fgOqBWoqlifXRzYD0JPdmIrgSQ== + /@babel/plugin-transform-modules-systemjs/7.9.6_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-hoist-variables': 7.8.3 '@babel/helper-module-transforms': 7.9.0 '@babel/helper-plugin-utils': 7.8.3 @@ -611,10 +611,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-FsiAv/nao/ud2ZWy4wFacoLOm5uxl0ExSQ7ErvP7jpoihLR6Cq90ilOFyX9UXct3rbtKsAiZ9kFt5XGfPe/5SQ== - /@babel/plugin-transform-modules-umd/7.9.0_@babel+core@7.9.0: + integrity: sha512-NW5XQuW3N2tTHim8e1b7qGy7s0kZ2OH3m5octc49K1SdAKGxYxeIx7hiIz05kS1R2R+hOWcsr1eYwcGhrdHsrg== + /@babel/plugin-transform-modules-umd/7.9.0_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-module-transforms': 7.9.0 '@babel/helper-plugin-utils': 7.8.3 dev: true @@ -622,27 +622,27 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ== - /@babel/plugin-transform-named-capturing-groups-regex/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-named-capturing-groups-regex/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.9.0 + '@babel/core': 7.9.6 + '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.9.6 dev: true peerDependencies: '@babel/core': ^7.0.0 resolution: integrity: sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw== - /@babel/plugin-transform-new-target/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-new-target/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw== - /@babel/plugin-transform-object-super/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-object-super/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 '@babel/helper-replace-supers': 7.8.6 dev: true @@ -650,9 +650,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ== - /@babel/plugin-transform-parameters/7.9.5_@babel+core@7.9.0: + /@babel/plugin-transform-parameters/7.9.5_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-get-function-arity': 7.8.3 '@babel/helper-plugin-utils': 7.8.3 dev: true @@ -660,36 +660,36 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA== - /@babel/plugin-transform-property-literals/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-property-literals/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg== - /@babel/plugin-transform-regenerator/7.8.7_@babel+core@7.9.0: + /@babel/plugin-transform-regenerator/7.8.7_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 regenerator-transform: 0.14.4 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA== - /@babel/plugin-transform-reserved-words/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-reserved-words/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A== - /@babel/plugin-transform-runtime/7.9.0_@babel+core@7.9.0: + /@babel/plugin-transform-runtime/7.9.6_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-module-imports': 7.8.3 '@babel/helper-plugin-utils': 7.8.3 resolve: 1.17.0 @@ -698,28 +698,28 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw== - /@babel/plugin-transform-shorthand-properties/7.8.3_@babel+core@7.9.0: + integrity: sha512-qcmiECD0mYOjOIt8YHNsAP1SxPooC/rDmfmiSK9BNY72EitdSc7l44WTEklaWuFtbOEBjNhWWyph/kOImbNJ4w== + /@babel/plugin-transform-shorthand-properties/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w== - /@babel/plugin-transform-spread/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-spread/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g== - /@babel/plugin-transform-sticky-regex/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-sticky-regex/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 '@babel/helper-regex': 7.8.3 dev: true @@ -727,9 +727,9 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw== - /@babel/plugin-transform-template-literals/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-template-literals/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-annotate-as-pure': 7.8.3 '@babel/helper-plugin-utils': 7.8.3 dev: true @@ -737,83 +737,83 @@ packages: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ== - /@babel/plugin-transform-typeof-symbol/7.8.4_@babel+core@7.9.0: + /@babel/plugin-transform-typeof-symbol/7.8.4_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg== - /@babel/plugin-transform-unicode-regex/7.8.3_@babel+core@7.9.0: + /@babel/plugin-transform-unicode-regex/7.8.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.9.0 + '@babel/core': 7.9.6 + '@babel/helper-create-regexp-features-plugin': 7.8.8_@babel+core@7.9.6 '@babel/helper-plugin-utils': 7.8.3 dev: true peerDependencies: '@babel/core': ^7.0.0-0 resolution: integrity: sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw== - /@babel/preset-env/7.9.5_@babel+core@7.9.0: + /@babel/preset-env/7.9.6_@babel+core@7.9.6: dependencies: - '@babel/compat-data': 7.9.0 - '@babel/core': 7.9.0 - '@babel/helper-compilation-targets': 7.8.7_@babel+core@7.9.0 + '@babel/compat-data': 7.9.6 + '@babel/core': 7.9.6 + '@babel/helper-compilation-targets': 7.9.6_@babel+core@7.9.6 '@babel/helper-module-imports': 7.8.3 '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-proposal-async-generator-functions': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-dynamic-import': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-json-strings': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-numeric-separator': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-object-rest-spread': 7.9.5_@babel+core@7.9.0 - '@babel/plugin-proposal-optional-catch-binding': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-proposal-optional-chaining': 7.9.0_@babel+core@7.9.0 - '@babel/plugin-proposal-unicode-property-regex': 7.8.8_@babel+core@7.9.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-numeric-separator': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-syntax-top-level-await': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-arrow-functions': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-async-to-generator': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-block-scoped-functions': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-block-scoping': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-classes': 7.9.5_@babel+core@7.9.0 - '@babel/plugin-transform-computed-properties': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-destructuring': 7.9.5_@babel+core@7.9.0 - '@babel/plugin-transform-dotall-regex': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-duplicate-keys': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-exponentiation-operator': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-for-of': 7.9.0_@babel+core@7.9.0 - '@babel/plugin-transform-function-name': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-literals': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-member-expression-literals': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-modules-amd': 7.9.0_@babel+core@7.9.0 - '@babel/plugin-transform-modules-commonjs': 7.9.0_@babel+core@7.9.0 - '@babel/plugin-transform-modules-systemjs': 7.9.0_@babel+core@7.9.0 - '@babel/plugin-transform-modules-umd': 7.9.0_@babel+core@7.9.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-new-target': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-object-super': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-parameters': 7.9.5_@babel+core@7.9.0 - '@babel/plugin-transform-property-literals': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-regenerator': 7.8.7_@babel+core@7.9.0 - '@babel/plugin-transform-reserved-words': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-shorthand-properties': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-spread': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-sticky-regex': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-template-literals': 7.8.3_@babel+core@7.9.0 - '@babel/plugin-transform-typeof-symbol': 7.8.4_@babel+core@7.9.0 - '@babel/plugin-transform-unicode-regex': 7.8.3_@babel+core@7.9.0 - '@babel/preset-modules': 0.1.3_@babel+core@7.9.0 - '@babel/types': 7.9.5 + '@babel/plugin-proposal-async-generator-functions': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-proposal-dynamic-import': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-proposal-json-strings': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-proposal-numeric-separator': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-proposal-object-rest-spread': 7.9.6_@babel+core@7.9.6 + '@babel/plugin-proposal-optional-catch-binding': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-proposal-optional-chaining': 7.9.0_@babel+core@7.9.6 + '@babel/plugin-proposal-unicode-property-regex': 7.8.8_@babel+core@7.9.6 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.6 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-syntax-numeric-separator': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-syntax-top-level-await': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-arrow-functions': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-async-to-generator': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-block-scoped-functions': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-block-scoping': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-classes': 7.9.5_@babel+core@7.9.6 + '@babel/plugin-transform-computed-properties': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-destructuring': 7.9.5_@babel+core@7.9.6 + '@babel/plugin-transform-dotall-regex': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-duplicate-keys': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-exponentiation-operator': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-for-of': 7.9.0_@babel+core@7.9.6 + '@babel/plugin-transform-function-name': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-literals': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-member-expression-literals': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-modules-amd': 7.9.6_@babel+core@7.9.6 + '@babel/plugin-transform-modules-commonjs': 7.9.6_@babel+core@7.9.6 + '@babel/plugin-transform-modules-systemjs': 7.9.6_@babel+core@7.9.6 + '@babel/plugin-transform-modules-umd': 7.9.0_@babel+core@7.9.6 + '@babel/plugin-transform-named-capturing-groups-regex': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-new-target': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-object-super': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-parameters': 7.9.5_@babel+core@7.9.6 + '@babel/plugin-transform-property-literals': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-regenerator': 7.8.7_@babel+core@7.9.6 + '@babel/plugin-transform-reserved-words': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-shorthand-properties': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-spread': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-sticky-regex': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-template-literals': 7.8.3_@babel+core@7.9.6 + '@babel/plugin-transform-typeof-symbol': 7.8.4_@babel+core@7.9.6 + '@babel/plugin-transform-unicode-regex': 7.8.3_@babel+core@7.9.6 + '@babel/preset-modules': 0.1.3_@babel+core@7.9.6 + '@babel/types': 7.9.6 browserslist: 4.12.0 core-js-compat: 3.6.5 invariant: 2.2.4 @@ -823,14 +823,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 resolution: - integrity: sha512-eWGYeADTlPJH+wq1F0wNfPbVS1w1wtmMJiYk55Td5Yu28AsdR9AsC97sZ0Qq8fHqQuslVSIYSGJMcblr345GfQ== - /@babel/preset-modules/0.1.3_@babel+core@7.9.0: + integrity: sha512-0gQJ9RTzO0heXOhzftog+a/WyOuqMrAIugVYxMYf83gh1CQaQDjMtsOpqOwXyDL/5JcWsrCm8l4ju8QC97O7EQ== + /@babel/preset-modules/0.1.3_@babel+core@7.9.6: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 - '@babel/plugin-proposal-unicode-property-regex': 7.8.8_@babel+core@7.9.0 - '@babel/plugin-transform-dotall-regex': 7.8.3_@babel+core@7.9.0 - '@babel/types': 7.9.5 + '@babel/plugin-proposal-unicode-property-regex': 7.8.8_@babel+core@7.9.6 + '@babel/plugin-transform-dotall-regex': 7.8.3_@babel+core@7.9.6 + '@babel/types': 7.9.6 esutils: 2.0.3 dev: true peerDependencies: @@ -843,28 +843,34 @@ packages: dev: true resolution: integrity: sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q== + /@babel/runtime/7.9.6: + dependencies: + regenerator-runtime: 0.13.5 + dev: true + resolution: + integrity: sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ== /@babel/template/7.8.6: dependencies: '@babel/code-frame': 7.8.3 - '@babel/parser': 7.9.4 - '@babel/types': 7.9.5 + '@babel/parser': 7.9.6 + '@babel/types': 7.9.6 dev: true resolution: integrity: sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg== - /@babel/traverse/7.9.5: + /@babel/traverse/7.9.6: dependencies: '@babel/code-frame': 7.8.3 - '@babel/generator': 7.9.5 + '@babel/generator': 7.9.6 '@babel/helper-function-name': 7.9.5 '@babel/helper-split-export-declaration': 7.8.3 - '@babel/parser': 7.9.4 - '@babel/types': 7.9.5 + '@babel/parser': 7.9.6 + '@babel/types': 7.9.6 debug: 4.1.1 globals: 11.12.0 lodash: 4.17.15 dev: true resolution: - integrity: sha512-c4gH3jsvSuGUezlP6rzSJ6jf8fYjLj3hsMZRx/nX0h+fmHN0w+ekubRrHPqnMec0meycA2nwCsJ7dC8IPem2FQ== + integrity: sha512-b3rAHSjbxy6VEAvlxM8OV/0X4XrG72zoxme6q1MOoe2vd0bEc+TwayhuC1+Dfgqh1QEG+pj7atQqvUprHIccsg== /@babel/types/7.9.5: dependencies: '@babel/helper-validator-identifier': 7.9.5 @@ -873,6 +879,14 @@ packages: dev: true resolution: integrity: sha512-XjnvNqenk818r5zMaba+sLQjnbda31UfUURv3ei0qPQw4u+j2jMyJ5b11y8ZHYTRSI3NnInQkkkRT4fLqqPdHg== + /@babel/types/7.9.6: + dependencies: + '@babel/helper-validator-identifier': 7.9.5 + lodash: 4.17.15 + to-fast-properties: 2.0.0 + dev: true + resolution: + integrity: sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA== /@choojs/findup/0.2.1: dependencies: commander: 2.20.3 @@ -894,9 +908,9 @@ packages: dev: false resolution: integrity: sha512-3NsZsJIA/22P3QUyrEDNA2D133H4j224twJrdipXN38dpnIOzAbUDtOwkcJ5pXmn75w7LSQDjA4tO9dm1XlqlA== - /@rollup/plugin-alias/3.1.0_rollup@2.7.3: + /@rollup/plugin-alias/3.1.0_rollup@2.8.0: dependencies: - rollup: 2.7.3 + rollup: 2.8.0 slash: 3.0.0 dev: true engines: @@ -905,12 +919,12 @@ packages: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-IzoejtAqdfwAvx4D0bztAJFoL5Js36kJgnbO00zfI1B9jf9G80vWysyG0C4+E6w5uG5hz0EeetPpoBWKdNktCQ== - /@rollup/plugin-babel/5.0.0_@babel+core@7.9.0+rollup@2.7.3: + /@rollup/plugin-babel/5.0.0_@babel+core@7.9.6+rollup@2.8.0: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@babel/helper-module-imports': 7.8.3 - '@rollup/pluginutils': 3.0.9_rollup@2.7.3 - rollup: 2.7.3 + '@rollup/pluginutils': 3.0.9_rollup@2.8.0 + rollup: 2.8.0 dev: true engines: node: '>= 10.0.0' @@ -919,14 +933,14 @@ packages: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-YpVnwdUeVj/fDFN75Y3CAzJTMYNcqbH05SJs551wqj+BSwLT9pS3dqJrVDPYl3eH4OrI8ueiEseX5VgUn+0HLA== - /@rollup/plugin-commonjs/11.0.2_rollup@2.7.3: + /@rollup/plugin-commonjs/11.0.2_rollup@2.8.0: dependencies: - '@rollup/pluginutils': 3.0.9_rollup@2.7.3 + '@rollup/pluginutils': 3.0.10_rollup@2.8.0 estree-walker: 1.0.1 is-reference: 1.1.4 magic-string: 0.25.7 resolve: 1.17.0 - rollup: 2.7.3 + rollup: 2.8.0 dev: true engines: node: '>= 8.0.0' @@ -934,14 +948,14 @@ packages: rollup: ^1.20.0 resolution: integrity: sha512-MPYGZr0qdbV5zZj8/2AuomVpnRVXRU5XKXb3HVniwRoRCreGlf5kOE081isNWeiLIi6IYkwTX9zE0/c7V8g81g== - /@rollup/plugin-node-resolve/7.1.3_rollup@2.7.3: + /@rollup/plugin-node-resolve/7.1.3_rollup@2.8.0: dependencies: - '@rollup/pluginutils': 3.0.9_rollup@2.7.3 + '@rollup/pluginutils': 3.0.9_rollup@2.8.0 '@types/resolve': 0.0.8 builtin-modules: 3.1.0 is-module: 1.0.0 resolve: 1.17.0 - rollup: 2.7.3 + rollup: 2.8.0 dev: true engines: node: '>= 8.0.0' @@ -949,22 +963,35 @@ packages: rollup: ^1.20.0||^2.0.0 resolution: integrity: sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q== - /@rollup/plugin-replace/2.3.2_rollup@2.7.3: + /@rollup/plugin-replace/2.3.2_rollup@2.8.0: dependencies: - '@rollup/pluginutils': 3.0.9_rollup@2.7.3 + '@rollup/pluginutils': 3.0.9_rollup@2.8.0 magic-string: 0.25.7 - rollup: 2.7.3 + rollup: 2.8.0 dev: true peerDependencies: rollup: ^1.20.0 || ^2.0.0 resolution: integrity: sha512-KEEL7V2tMNOsbAoNMKg91l1sNXBDoiP31GFlqXVOuV5691VQKzKBh91+OKKOG4uQWYqcFskcjFyh1d5YnZd0Zw== - /@rollup/pluginutils/3.0.9_rollup@2.7.3: + /@rollup/pluginutils/3.0.10_rollup@2.8.0: + dependencies: + '@types/estree': 0.0.39 + estree-walker: 1.0.1 + picomatch: 2.2.2 + rollup: 2.8.0 + dev: true + engines: + node: '>= 8.0.0' + peerDependencies: + rollup: ^1.20.0||^2.0.0 + resolution: + integrity: sha512-d44M7t+PjmMrASHbhgpSbVgtL6EFyX7J4mYxwQ/c5eoaE6N2VgCgEcWVzNnwycIloti+/MpwFr8qfw+nRw00sw== + /@rollup/pluginutils/3.0.9_rollup@2.8.0: dependencies: '@types/estree': 0.0.39 estree-walker: 1.0.1 micromatch: 4.0.2 - rollup: 2.7.3 + rollup: 2.8.0 dev: true engines: node: '>= 8.0.0' @@ -1041,6 +1068,12 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + /ansi-regex/4.1.0: + dev: true + engines: + node: '>=6' + resolution: + integrity: sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== /ansi-styles/2.2.1: dev: true engines: @@ -1237,12 +1270,12 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= - /camelcase/3.0.0: + /camelcase/5.3.1: dev: true engines: - node: '>=0.10.0' + node: '>=6' resolution: - integrity: sha1-MvxLn82vhF/N9+c7uXysImHwqwo= + integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== /caniuse-lite/1.0.30001048: dev: true resolution: @@ -1281,14 +1314,14 @@ packages: node: '>= 4.0' resolution: integrity: sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA== - /cliui/3.2.0: + /cliui/5.0.0: dependencies: - string-width: 1.0.2 - strip-ansi: 3.0.1 - wrap-ansi: 2.1.0 + string-width: 3.1.0 + strip-ansi: 5.2.0 + wrap-ansi: 5.1.0 dev: true resolution: - integrity: sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= + integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== /code-point-at/1.1.0: dev: true engines: @@ -1527,6 +1560,10 @@ packages: dev: true resolution: integrity: sha512-ogxgmvHGfDuLA+GtgfK0jkFWlBb4MCZK2U1MM+l98sf4U3Ixtrfw1iC9w4mQqNvo+lHgM4pR62TqoT4QrvKJCw== + /emoji-regex/7.0.3: + dev: true + resolution: + integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== /end-of-stream/1.4.4: dependencies: once: 1.4.0 @@ -1654,6 +1691,14 @@ packages: node: '>=4' resolution: integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c= + /find-up/3.0.0: + dependencies: + locate-path: 3.0.0 + dev: true + engines: + node: '>=6' + resolution: + integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== /flatten/1.0.3: dev: true resolution: @@ -1738,10 +1783,12 @@ packages: node: '>=6.9.0' resolution: integrity: sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== - /get-caller-file/1.0.3: + /get-caller-file/2.0.5: dev: true + engines: + node: 6.* || 8.* || >= 10.* resolution: - integrity: sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== /get-stdin/4.0.1: dev: true engines: @@ -2043,12 +2090,6 @@ packages: dev: true resolution: integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== - /invert-kv/1.0.0: - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-EEqOSqym09jNFXqO+L+rLXo//bY= /is-arrayish/0.2.1: dev: true resolution: @@ -2073,6 +2114,12 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + /is-fullwidth-code-point/2.0.0: + dev: true + engines: + node: '>=4' + resolution: + integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= /is-module/1.0.0: dev: true resolution: @@ -2198,14 +2245,6 @@ packages: dev: false resolution: integrity: sha512-931KnHwsdCm7U7/S0GDj6FSkPvQ3ugGw65J5Plp2Mq1gBTPl9VShU+cIIX6uRr+dit+APDLmvx1FwjDll5bHLQ== - /lcid/1.0.0: - dependencies: - invert-kv: 1.0.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= /leven/3.1.0: dev: true engines: @@ -2250,6 +2289,15 @@ packages: node: '>=4' resolution: integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= + /locate-path/3.0.0: + dependencies: + p-locate: 3.0.0 + path-exists: 3.0.0 + dev: true + engines: + node: '>=6' + resolution: + integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== /lodash._reinterpolate/3.0.0: dev: true resolution: @@ -2446,7 +2494,7 @@ packages: dev: true resolution: integrity: sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ== - /node-sass/4.14.0: + /node-sass/4.14.1: dependencies: async-foreach: 0.1.3 chalk: 1.1.3 @@ -2462,7 +2510,7 @@ packages: node-gyp: 3.8.0 npmlog: 4.1.2 request: 2.88.2 - sass-graph: 2.2.4 + sass-graph: 2.2.5 stdout-stream: 1.4.1 true-case-path: 1.0.3 dev: true @@ -2471,7 +2519,7 @@ packages: hasBin: true requiresBuild: true resolution: - integrity: sha512-AxqU+DFpk0lEz95sI6jO0hU0Rwyw7BXVEv6o9OItoXLyeygPeaSpiV4rwQb10JiTghHaa0gZeD21sz+OsQluaw== + integrity: sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g== /nopt/3.0.6: dependencies: abbrev: 1.1.1 @@ -2581,14 +2629,6 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-/7xJiDNuDoM94MFox+8VISGqf7M= - /os-locale/1.4.0: - dependencies: - lcid: 1.0.0 - dev: true - engines: - node: '>=0.10.0' - resolution: - integrity: sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= /os-tmpdir/1.0.2: dev: true engines: @@ -2610,6 +2650,14 @@ packages: node: '>=4' resolution: integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== + /p-limit/2.3.0: + dependencies: + p-try: 2.2.0 + dev: true + engines: + node: '>=6' + resolution: + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== /p-locate/2.0.0: dependencies: p-limit: 1.3.0 @@ -2618,12 +2666,26 @@ packages: node: '>=4' resolution: integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= + /p-locate/3.0.0: + dependencies: + p-limit: 2.3.0 + dev: true + engines: + node: '>=6' + resolution: + integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== /p-try/1.0.0: dev: true engines: node: '>=4' resolution: integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= + /p-try/2.2.0: + dev: true + engines: + node: '>=6' + resolution: + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== /param-case/2.1.1: dependencies: no-case: 2.3.2 @@ -3064,6 +3126,16 @@ packages: node: '>=6.0.0' resolution: integrity: sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ== + /postcss/7.0.29: + dependencies: + chalk: 2.4.2 + source-map: 0.6.1 + supports-color: 6.1.0 + dev: true + engines: + node: '>=6.0.0' + resolution: + integrity: sha512-ba0ApvR3LxGvRMMiUa9n0WR4HjzcYm7tS+ht4/2Nd0NLtHpPIH77fuB9Xh1/yJVz9O/E/95Y/dn8ygWsyffXtw== /prelude-ls/1.1.2: dev: true engines: @@ -3254,10 +3326,10 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I= - /require-main-filename/1.0.1: + /require-main-filename/2.0.0: dev: true resolution: - integrity: sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= + integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== /require-relative/0.8.7: dev: true resolution: @@ -3292,24 +3364,24 @@ packages: dev: true resolution: integrity: sha512-EqUFINMICD9U3MJ4jsxBcCRhzWNZJBWyAK2ol+2ClWIPaIWOuz0OY/Ml8rdT81F4aufwxJN5I9N7QvCth0OrUQ== - /rollup-plugin-svelte/5.2.1_rollup@2.7.3+svelte@3.21.0: + /rollup-plugin-svelte/5.2.1_rollup@2.8.0+svelte@3.22.2: dependencies: require-relative: 0.8.7 - rollup: 2.7.3 + rollup: 2.8.0 rollup-pluginutils: 2.8.2 sourcemap-codec: 1.4.8 - svelte: 3.21.0 + svelte: 3.22.2 dev: true peerDependencies: rollup: '>=0.60.0' svelte: '*' resolution: integrity: sha512-wc93cN66sRpX6uFljVFqvWT6NU3V5ab/uLXKt2UiARuexFU/ctolzkmdXM7WM5iKdTX9scToS9sabJTJV4DUMA== - /rollup-plugin-terser/5.3.0_rollup@2.7.3: + /rollup-plugin-terser/5.3.0_rollup@2.8.0: dependencies: '@babel/code-frame': 7.8.3 jest-worker: 24.9.0 - rollup: 2.7.3 + rollup: 2.8.0 rollup-pluginutils: 2.8.2 serialize-javascript: 2.1.2 terser: 4.6.12 @@ -3324,7 +3396,7 @@ packages: dev: true resolution: integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== - /rollup/2.7.3: + /rollup/2.8.0: dev: true engines: node: '>=10.0.0' @@ -3332,7 +3404,7 @@ packages: optionalDependencies: fsevents: 2.1.3 resolution: - integrity: sha512-lAWJGZ5BQzcu/5fhMKGJrh5oy9LQUoaCid8cQV8k+E2vE9E/UWptzcM+bSBg+u8akORsvnybsqQUE/wVChIazg== + integrity: sha512-hyjpreMA0BTNrO68o4wCtcktwYTK8o1UtauOqsPniwDGzN2PvNaKmwa/RHmjNHJMrt6ItY2C7XjpT7TDf6WmJw== /safe-buffer/5.1.2: resolution: integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== @@ -3344,30 +3416,30 @@ packages: dev: true resolution: integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== - /sapper/0.27.12_svelte@3.21.0: + /sapper/0.27.12_svelte@3.22.2: dependencies: html-minifier: 4.0.0 http-link-header: 1.0.2 shimport: 1.0.1 sourcemap-codec: 1.4.8 string-hash: 1.1.3 - svelte: 3.21.0 + svelte: 3.22.2 dev: true hasBin: true peerDependencies: svelte: ^3.5.0 resolution: integrity: sha512-xTvPQMb9L3J34Jd+6jSFeiuT8eQZ2D5TXPeJI9VO7h8t5nB2w78ZNQ4IlEPHsCMT2LZNLozygTb2plE4qH2XeQ== - /sass-graph/2.2.4: + /sass-graph/2.2.5: dependencies: glob: 7.1.6 lodash: 4.17.15 scss-tokenizer: 0.2.3 - yargs: 7.1.0 + yargs: 13.3.2 dev: true hasBin: true resolution: - integrity: sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k= + integrity: sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag== /scroll-out/2.2.8: dev: false resolution: @@ -3537,6 +3609,16 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + /string-width/3.1.0: + dependencies: + emoji-regex: 7.0.3 + is-fullwidth-code-point: 2.0.0 + strip-ansi: 5.2.0 + dev: true + engines: + node: '>=6' + resolution: + integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== /string_decoder/0.10.31: dev: true resolution: @@ -3555,6 +3637,14 @@ packages: node: '>=0.10.0' resolution: integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + /strip-ansi/5.2.0: + dependencies: + ansi-regex: 4.1.0 + dev: true + engines: + node: '>=6' + resolution: + integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== /strip-bom/2.0.0: dependencies: is-utf8: 0.2.1 @@ -3602,21 +3692,21 @@ packages: node: '>=6' resolution: integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== - /svelte-lazy/0.1.10: + /svelte-lazy/0.1.11: dev: false resolution: - integrity: sha512-3MobAvIUe345ZNREDvy/3tsfZMzPcSW+fE7osCVtGOAFeQ25haqQoZhT2c6qxxnWB7oVlTXTHCfEatzAGJi0fQ== - /svelte-preprocess/3.7.4_44e9bd38b1a414594b4fcbf91839036f: + integrity: sha512-0QZWVAOsxIS53W/HaLw3/D8nzFKg7DDVwbIxKxzLZFytHr9kzGWMc0b+OqGMqwUUu0I3UDNOHYSjtGOh3pQHfQ== + /svelte-preprocess/3.7.4_0f5e9935bde736cfabfb00c1d85a6ff4: dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.9.6 '@types/pug': 2.0.4 '@types/sass': 1.16.0 detect-indent: 6.0.0 - node-sass: 4.14.0 - postcss: 7.0.27 + node-sass: 4.14.1 + postcss: 7.0.29 postcss-load-config: 2.1.0 strip-indent: 3.0.0 - svelte: 3.21.0 + svelte: 3.22.2 dev: true engines: node: '>= 7.6.0' @@ -3658,12 +3748,12 @@ packages: requiresBuild: true resolution: integrity: sha512-0nW7TIjbav2nmw1Y7EAFRRkhNVwJ3zKN85/eITLQMkPuhqHO2i2IK0O3y4YXsSXlc0VGI5jQDVXkcXpga6zzew== - /svelte/3.21.0: + /svelte/3.22.2: dev: true engines: node: '>= 8' resolution: - integrity: sha512-smh3LZKPCGJ+UXa0iZvUmuDctPYCwPY1opmClTWTm+l6e4y9FHLoCZMiue8YIeyc9JvlGT/EK0xry0diXjFDZQ== + integrity: sha512-DxumO0+vvHA6NSc2jtVty08I8lFI43q8P2zX6JxZL8J1kqK5NVjad6TRM/twhnWXC+QScnwkZ15O6X1aTsEKTA== /swipe-listener/1.1.0: dev: false resolution: @@ -3848,10 +3938,10 @@ packages: '0': node >=0.6.0 resolution: integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= - /which-module/1.0.0: + /which-module/2.0.0: dev: true resolution: - integrity: sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= + integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= /which/1.3.1: dependencies: isexe: 2.0.0 @@ -3871,15 +3961,16 @@ packages: node: '>=0.10.0' resolution: integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - /wrap-ansi/2.1.0: + /wrap-ansi/5.1.0: dependencies: - string-width: 1.0.2 - strip-ansi: 3.0.1 + ansi-styles: 3.2.1 + string-width: 3.1.0 + strip-ansi: 5.2.0 dev: true engines: - node: '>=0.10.0' + node: '>=6' resolution: - integrity: sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= + integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== /wrappy/1.0.2: dev: true resolution: @@ -3896,44 +3987,42 @@ packages: node: '>=0.4' resolution: integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - /y18n/3.2.1: + /y18n/4.0.0: dev: true resolution: - integrity: sha1-bRX7qITAhnnA136I53WegR4H+kE= + integrity: sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== /yallist/2.1.2: dev: true resolution: integrity: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= - /yargs-parser/5.0.0: + /yargs-parser/13.1.2: dependencies: - camelcase: 3.0.0 - dev: true - resolution: - integrity: sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo= - /yargs/7.1.0: - dependencies: - camelcase: 3.0.0 - cliui: 3.2.0 + camelcase: 5.3.1 decamelize: 1.2.0 - get-caller-file: 1.0.3 - os-locale: 1.4.0 - read-pkg-up: 1.0.1 - require-directory: 2.1.1 - require-main-filename: 1.0.1 - set-blocking: 2.0.0 - string-width: 1.0.2 - which-module: 1.0.0 - y18n: 3.2.1 - yargs-parser: 5.0.0 dev: true resolution: - integrity: sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg= + integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== + /yargs/13.3.2: + dependencies: + cliui: 5.0.0 + find-up: 3.0.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + require-main-filename: 2.0.0 + set-blocking: 2.0.0 + string-width: 3.1.0 + which-module: 2.0.0 + y18n: 4.0.0 + yargs-parser: 13.1.2 + dev: true + resolution: + integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== specifiers: - '@babel/core': ^7.9.0 + '@babel/core': ^7.9.6 '@babel/plugin-syntax-dynamic-import': ^7.8.3 - '@babel/plugin-transform-runtime': ^7.9.0 - '@babel/preset-env': ^7.9.5 - '@babel/runtime': ^7.9.2 + '@babel/plugin-transform-runtime': ^7.9.6 + '@babel/preset-env': ^7.9.6 + '@babel/runtime': ^7.9.6 '@rollup/plugin-alias': ^3.1.0 '@rollup/plugin-babel': ^5.0.0 '@rollup/plugin-commonjs': 11.0.2 @@ -3946,21 +4035,21 @@ specifiers: imagesloaded: ^4.1.4 lazysizes: ^5.2.0 node-fetch: ^2.6.0 - node-sass: ^4.14.0 + node-sass: ^4.14.1 normalize.css: ^8.0.1 polka: ^1.0.0-next.11 - postcss: ^7.0.27 + postcss: ^7.0.29 postcss-load-config: ^2.1.0 postcss-preset-env: ^6.7.0 rellax: ^1.12.1 - rollup: ^2.7.3 + rollup: ^2.8.0 rollup-plugin-glslify: ^1.2.0 rollup-plugin-svelte: ^5.2.1 rollup-plugin-terser: ^5.3.0 sapper: ^0.27.12 scroll-out: ^2.2.8 sirv: ^0.4.2 - svelte: ^3.21.0 - svelte-lazy: ^0.1.10 + svelte: ^3.22.2 + svelte-lazy: ^0.1.11 svelte-preprocess: ^3.7.4 swipe-listener: ^1.1.0 diff --git a/rollup.config.js b/rollup.config.js index a4376b3..6978afc 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -105,14 +105,13 @@ export default { ...replaceOptions }), svelte({ + generate: 'ssr', dev, - preprocess, - generate: 'ssr' + preprocess }), aliases, glslify(), resolve({ - browser: true, extensions: resolveExtensions, dedupe: ['svelte'] }), @@ -128,21 +127,22 @@ export default { /* ** Service worker */ - // ...(!dev && { - // serviceworker: { - // input: sapperConfig.serviceworker.input(), - // output: sapperConfig.serviceworker.output(), - // plugins: [ - // resolve(), - // aliases, - // replace({ - // 'process.browser': true, - // ...replaceOptions - // }), - // commonjs(), - // !dev && terser() - // ], - // onwarn, - // } - // }) + ...(!dev && { + serviceworker: { + input: sapperConfig.serviceworker.input(), + output: sapperConfig.serviceworker.output(), + plugins: [ + resolve(), + replace({ + 'process.browser': false, + ...replaceOptions + }), + aliases, + glslify(), + commonjs(), + !dev && terser() + ], + onwarn, + } + }) }