summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2022-04-14 09:51:53 -0400
committerGravatar GitHub <noreply@github.com> 2022-04-14 09:51:53 -0400
commit4ac0d5d4e73aa41cb2269f1428c4eed5e69b5947 (patch)
treef0ad5177beff41df32badc6535c74188ade9e026
parent1b6cb6cfeab973ec98e8d6bacf2835c28b5109dc (diff)
downloadastro-4ac0d5d4e73aa41cb2269f1428c4eed5e69b5947.tar.gz
astro-4ac0d5d4e73aa41cb2269f1428c4eed5e69b5947.tar.zst
astro-4ac0d5d4e73aa41cb2269f1428c4eed5e69b5947.zip
Support the Markdown component in SSR (#3036)
* Support the Markdown component in SSR * Adds a changeset * Support runtime markdown in Node.js * Remove option from test adapter
-rw-r--r--.changeset/blue-mayflies-cheat.md5
-rw-r--r--.changeset/wild-llamas-argue.md5
-rw-r--r--packages/astro/src/core/app/index.ts1
-rw-r--r--packages/astro/src/core/build/index.ts2
-rw-r--r--packages/astro/src/core/build/vite-plugin-ssr.ts7
-rw-r--r--packages/astro/src/core/config.ts4
-rw-r--r--packages/astro/test/fixtures/ssr-markdown/package.json8
-rw-r--r--packages/astro/test/fixtures/ssr-markdown/src/layouts/Base.astro8
-rw-r--r--packages/astro/test/fixtures/ssr-markdown/src/pages/page.astro14
-rw-r--r--packages/astro/test/fixtures/ssr-markdown/src/pages/post.md9
-rw-r--r--packages/astro/test/ssr-markdown.test.js41
-rw-r--r--packages/astro/test/test-adapter.js2
-rw-r--r--packages/integrations/node/src/index.ts2
-rw-r--r--pnpm-lock.yaml1111
14 files changed, 712 insertions, 507 deletions
diff --git a/.changeset/blue-mayflies-cheat.md b/.changeset/blue-mayflies-cheat.md
new file mode 100644
index 000000000..ca554fcad
--- /dev/null
+++ b/.changeset/blue-mayflies-cheat.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Support runtime markdown parsing
diff --git a/.changeset/wild-llamas-argue.md b/.changeset/wild-llamas-argue.md
new file mode 100644
index 000000000..862712c47
--- /dev/null
+++ b/.changeset/wild-llamas-argue.md
@@ -0,0 +1,5 @@
+---
+'astro': patch
+---
+
+Fixes usage of the Markdown component in SSR
diff --git a/packages/astro/src/core/app/index.ts b/packages/astro/src/core/app/index.ts
index 8f5113ca9..c2f5d9a2e 100644
--- a/packages/astro/src/core/app/index.ts
+++ b/packages/astro/src/core/app/index.ts
@@ -19,7 +19,6 @@ import {
createModuleScriptElementWithSrcSet,
} from '../render/ssr-element.js';
import { prependForwardSlash } from '../path.js';
-import { createRequest } from '../request.js';
export class App {
#manifest: Manifest;
diff --git a/packages/astro/src/core/build/index.ts b/packages/astro/src/core/build/index.ts
index 98c8f1e8d..de35cb66a 100644
--- a/packages/astro/src/core/build/index.ts
+++ b/packages/astro/src/core/build/index.ts
@@ -105,7 +105,7 @@ class AstroBuilder {
client: new URL('./client/', this.config.outDir),
server: new URL('./server/', this.config.outDir),
serverEntry: 'entry.mjs',
- staticMode: undefined,
+ staticMode: undefined
};
await runHookBuildStart({ config: this.config, buildConfig });
diff --git a/packages/astro/src/core/build/vite-plugin-ssr.ts b/packages/astro/src/core/build/vite-plugin-ssr.ts
index 3e7257f02..871c2ce08 100644
--- a/packages/astro/src/core/build/vite-plugin-ssr.ts
+++ b/packages/astro/src/core/build/vite-plugin-ssr.ts
@@ -13,6 +13,7 @@ import { BEFORE_HYDRATION_SCRIPT_ID } from '../../vite-plugin-scripts/index.js';
export const virtualModuleId = '@astrojs-ssr-virtual-entry';
const resolvedVirtualModuleId = '\0' + virtualModuleId;
const manifestReplace = '@@ASTRO_MANIFEST_REPLACE@@';
+const replaceExp = new RegExp(`['"](${manifestReplace})['"]`, 'g');
export function vitePluginSSR(
buildOpts: StaticBuildOptions,
@@ -64,18 +65,16 @@ if(_start in adapter) {
}
return void 0;
},
-
generateBundle(_opts, bundle) {
const manifest = buildManifest(buildOpts, internals);
for (const [_chunkName, chunk] of Object.entries(bundle)) {
if (chunk.type === 'asset') continue;
if (chunk.modules[resolvedVirtualModuleId]) {
- const exp = new RegExp(`['"]${manifestReplace}['"]`);
const code = chunk.code;
- chunk.code = code.replace(exp, () => {
+ chunk.code = code.replace(replaceExp, () => {
return JSON.stringify(manifest);
- });
+ })
}
}
},
diff --git a/packages/astro/src/core/config.ts b/packages/astro/src/core/config.ts
index dd33919d8..0160c76e1 100644
--- a/packages/astro/src/core/config.ts
+++ b/packages/astro/src/core/config.ts
@@ -196,7 +196,7 @@ export const AstroConfigSchema = z.object({
export async function validateConfig(
userConfig: any,
root: string,
- cmd: string
+ cmd: string,
): Promise<AstroConfig> {
const fileProtocolRoot = pathToFileURL(root + path.sep);
// Manual deprecation checks
@@ -433,7 +433,7 @@ export async function resolveConfig(
userConfig: AstroUserConfig,
root: string,
flags: CLIFlags = {},
- cmd: string
+ cmd: string,
): Promise<AstroConfig> {
const mergedConfig = mergeCLIFlags(userConfig, flags, cmd);
const validatedConfig = await validateConfig(mergedConfig, root, cmd);
diff --git a/packages/astro/test/fixtures/ssr-markdown/package.json b/packages/astro/test/fixtures/ssr-markdown/package.json
new file mode 100644
index 000000000..4c7638191
--- /dev/null
+++ b/packages/astro/test/fixtures/ssr-markdown/package.json
@@ -0,0 +1,8 @@
+{
+ "name": "@test/ssr-markdown",
+ "version": "0.0.0",
+ "private": true,
+ "dependencies": {
+ "astro": "workspace:*"
+ }
+}
diff --git a/packages/astro/test/fixtures/ssr-markdown/src/layouts/Base.astro b/packages/astro/test/fixtures/ssr-markdown/src/layouts/Base.astro
new file mode 100644
index 000000000..13feea6a6
--- /dev/null
+++ b/packages/astro/test/fixtures/ssr-markdown/src/layouts/Base.astro
@@ -0,0 +1,8 @@
+<html>
+<head>Testing</head>
+<body>
+ <article>
+ <slot />
+ </article>
+</body>
+</html>
diff --git a/packages/astro/test/fixtures/ssr-markdown/src/pages/page.astro b/packages/astro/test/fixtures/ssr-markdown/src/pages/page.astro
new file mode 100644
index 000000000..83ec88d9f
--- /dev/null
+++ b/packages/astro/test/fixtures/ssr-markdown/src/pages/page.astro
@@ -0,0 +1,14 @@
+---
+import { Markdown } from 'astro/components';
+---
+
+<html>
+<head><title>Testing</title></head>
+<body>
+ <Markdown>
+ # Something
+
+ else here
+ </Markdown>
+</body>
+</html>
diff --git a/packages/astro/test/fixtures/ssr-markdown/src/pages/post.md b/packages/astro/test/fixtures/ssr-markdown/src/pages/post.md
new file mode 100644
index 000000000..7c087fd04
--- /dev/null
+++ b/packages/astro/test/fixtures/ssr-markdown/src/pages/post.md
@@ -0,0 +1,9 @@
+---
+layout: ../layouts/Base.astro
+---
+
+# Hello world
+
+This is some test
+
+## Subheading
diff --git a/packages/astro/test/ssr-markdown.test.js b/packages/astro/test/ssr-markdown.test.js
new file mode 100644
index 000000000..700135476
--- /dev/null
+++ b/packages/astro/test/ssr-markdown.test.js
@@ -0,0 +1,41 @@
+import { expect } from 'chai';
+import { load as cheerioLoad } from 'cheerio';
+import { loadFixture } from './test-utils.js';
+import testAdapter from './test-adapter.js';
+
+describe('Markdown pages in SSR', () => {
+ /** @type {import('./test-utils').Fixture} */
+ let fixture;
+
+ before(async () => {
+ fixture = await loadFixture({
+ root: './fixtures/ssr-markdown/',
+ experimental: {
+ ssr: true,
+ },
+ adapter: testAdapter(),
+ });
+ await fixture.build();
+ });
+
+ async function fetchHTML(path) {
+ const app = await fixture.loadTestAdapterApp();
+ const request = new Request('http://example.com' + path);
+ const response = await app.render(request);
+ const html = await response.text();
+ return html;
+ }
+
+
+ it('Renders markdown pages correctly', async () => {
+ const html = await fetchHTML('/post');
+ const $ = cheerioLoad(html);
+ expect($('#subheading').text()).to.equal('Subheading');
+ });
+
+ it('Renders the Markdown component correctly', async () => {
+ const html = await fetchHTML('/page');
+ const $ = cheerioLoad(html);
+ expect($('#something')).to.have.lengthOf(1);
+ });
+});
diff --git a/packages/astro/test/test-adapter.js b/packages/astro/test/test-adapter.js
index 99ab34e5d..2f4868568 100644
--- a/packages/astro/test/test-adapter.js
+++ b/packages/astro/test/test-adapter.js
@@ -37,7 +37,7 @@ export default function () {
serverEntrypoint: '@my-ssr',
exports: ['manifest', 'createApp'],
});
- },
+ }
},
};
}
diff --git a/packages/integrations/node/src/index.ts b/packages/integrations/node/src/index.ts
index b90cd9d2e..fc0f6cfd4 100644
--- a/packages/integrations/node/src/index.ts
+++ b/packages/integrations/node/src/index.ts
@@ -14,7 +14,7 @@ export default function createIntegration(): AstroIntegration {
hooks: {
'astro:config:done': ({ setAdapter }) => {
setAdapter(getAdapter());
- },
+ }
},
};
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 21dc090aa..bfa399a2d 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -28,10 +28,10 @@ importers:
'@changesets/changelog-github': 0.4.4
'@changesets/cli': 2.22.0
'@octokit/action': 3.18.0
- '@typescript-eslint/eslint-plugin': 5.18.0_0dd9be2ba5ed9805045f3fec8be848f5
- '@typescript-eslint/parser': 5.18.0_eslint@8.13.0+typescript@4.6.3
+ '@typescript-eslint/eslint-plugin': 5.19.0_f34adc8488d2e4f014fe61432d70cbf2
+ '@typescript-eslint/parser': 5.19.0_eslint@8.13.0+typescript@4.6.3
del: 6.0.0
- esbuild: 0.14.34
+ esbuild: 0.14.36
eslint: 8.13.0
eslint-config-prettier: 8.5.0_eslint@8.13.0
eslint-plugin-prettier: 4.0.0_1815ac95b7fb26c13c7d48a8eef62d0f
@@ -40,7 +40,7 @@ importers:
prettier: 2.6.2
pretty-bytes: 6.0.0
tiny-glob: 0.2.9
- turbo: 1.2.1
+ turbo: 1.2.3
typescript: 4.6.3
examples/blog:
@@ -555,7 +555,7 @@ importers:
diff: 5.0.0
eol: 0.9.1
es-module-lexer: 0.10.5
- esbuild: 0.14.34
+ esbuild: 0.14.36
estree-walker: 3.0.1
execa: 6.1.0
fast-glob: 3.2.11
@@ -581,7 +581,7 @@ importers:
rehype-slug: 5.0.1
resolve: 1.22.0
rollup: 2.70.1
- semver: 7.3.6
+ semver: 7.3.7
serialize-javascript: 6.0.0
shiki: 0.10.1
shorthash: 0.0.2
@@ -1097,6 +1097,12 @@ importers:
'@astrojs/solid-js': link:../../../../integrations/solid
astro: link:../../..
+ packages/astro/test/fixtures/ssr-markdown:
+ specifiers:
+ astro: workspace:*
+ dependencies:
+ astro: link:../../..
+
packages/astro/test/fixtures/static-build:
specifiers:
'@astrojs/preact': workspace:*
@@ -1350,7 +1356,7 @@ importers:
dependencies:
'@sveltejs/vite-plugin-svelte': 1.0.0-next.41_svelte@3.47.0
postcss-load-config: 3.1.4
- svelte-preprocess: 4.10.5_1402eb22fee660bb6c891bb9c1bca0d1
+ svelte-preprocess: 4.10.6_752b810ab855973626d4335cb0788eac
devDependencies:
astro: link:../../astro
astro-scripts: link:../../../scripts
@@ -1394,7 +1400,7 @@ importers:
esbuild: ^0.14.34
dependencies:
'@astrojs/webapi': link:../../webapi
- esbuild: 0.14.34
+ esbuild: 0.14.36
devDependencies:
astro: link:../../astro
astro-scripts: link:../../../scripts
@@ -1496,7 +1502,7 @@ importers:
'@rollup/plugin-alias': 3.1.9_rollup@2.70.1
'@rollup/plugin-inject': 4.0.4_rollup@2.70.1
'@rollup/plugin-node-resolve': 13.1.3_rollup@2.70.1
- '@rollup/plugin-typescript': 8.3.1_8fb0118e9d69f3600cbb8f144f7d456c
+ '@rollup/plugin-typescript': 8.3.1_rollup@2.70.1+tslib@2.3.1
'@types/chai': 4.3.0
'@types/mocha': 9.1.0
'@types/node': 14.18.12
@@ -1529,7 +1535,7 @@ importers:
'@astrojs/webapi': link:../packages/webapi
adm-zip: 0.5.9
arg: 5.0.1
- esbuild: 0.14.34
+ esbuild: 0.14.36
globby: 12.2.0
kleur: 4.1.4
svelte: 3.47.0
@@ -1667,8 +1673,8 @@ packages:
'@types/throttle-debounce': 2.1.0
dev: true
- /@antfu/utils/0.5.1:
- resolution: {integrity: sha512-8Afo0+xvYe1K8Wm4xHTymfTkpzy36aaqDvhXIayUwl+mecMG9Xzl3XjXa6swG6Bk8FBeQ646RyvmsYt6+2Be9g==}
+ /@antfu/utils/0.5.0:
+ resolution: {integrity: sha512-MrAQ/MrPSxbh1bBrmwJjORfJymw4IqSHFBXqvxaga3ZdDM+/zokYF8DjyJpSjY2QmpmgQrajDUBJOWrYeARfzA==}
dev: true
/@apideck/better-ajv-errors/0.3.3_ajv@8.11.0:
@@ -1712,7 +1718,7 @@ packages:
resolution: {integrity: sha512-O6LYL9igYSzxCxDHYWUqEquuuUlMG0UL1SliZ7rF/vx9GwU71TCpsRe4iHZ0bcemM5ju9ihoTzGCmLXzYrNw0g==}
dependencies:
svelte: 3.47.0
- svelte2tsx: 0.5.8_svelte@3.47.0+typescript@4.6.3
+ svelte2tsx: 0.5.6_svelte@3.47.0+typescript@4.6.3
transitivePeerDependencies:
- typescript
dev: false
@@ -1721,12 +1727,35 @@ packages:
resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/highlight': 7.17.9
+ '@babel/highlight': 7.16.10
/@babel/compat-data/7.17.7:
resolution: {integrity: sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==}
engines: {node: '>=6.9.0'}
+ /@babel/core/7.17.8:
+ resolution: {integrity: sha512-OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.1.2
+ '@babel/code-frame': 7.16.7
+ '@babel/generator': 7.17.7
+ '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.8
+ '@babel/helper-module-transforms': 7.17.7
+ '@babel/helpers': 7.17.8
+ '@babel/parser': 7.17.8
+ '@babel/template': 7.16.7
+ '@babel/traverse': 7.17.3
+ '@babel/types': 7.17.0
+ convert-source-map: 1.8.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.2
+ json5: 2.2.1
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/core/7.17.9:
resolution: {integrity: sha512-5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw==}
engines: {node: '>=6.9.0'}
@@ -1748,6 +1777,15 @@ packages:
semver: 6.3.0
transitivePeerDependencies:
- supports-color
+ dev: false
+
+ /@babel/generator/7.17.7:
+ resolution: {integrity: sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.17.0
+ jsesc: 2.5.2
+ source-map: 0.5.7
/@babel/generator/7.17.9:
resolution: {integrity: sha512-rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ==}
@@ -1756,6 +1794,7 @@ packages:
'@babel/types': 7.17.0
jsesc: 2.5.2
source-map: 0.5.7
+ dev: false
/@babel/helper-annotate-as-pure/7.16.7:
resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
@@ -1771,6 +1810,22 @@ packages:
'@babel/types': 7.17.0
dev: true
+ /@babel/helper-compilation-targets/7.17.7_@babel+core@7.17.8:
+ resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/compat-data': 7.17.7
+ '@babel/core': 7.17.8
+ '@babel/helper-validator-option': 7.16.7
+ browserslist: 4.20.2
+ semver: 6.3.0
+ dev: true
+
/@babel/helper-compilation-targets/7.17.7_@babel+core@7.17.9:
resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
engines: {node: '>=6.9.0'}
@@ -1785,9 +1840,10 @@ packages:
'@babel/helper-validator-option': 7.16.7
browserslist: 4.20.2
semver: 6.3.0
+ dev: false
- /@babel/helper-create-class-features-plugin/7.17.9_@babel+core@7.17.9:
- resolution: {integrity: sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==}
+ /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.17.8:
+ resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1795,10 +1851,10 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.17.9
+ '@babel/helper-function-name': 7.16.7
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
'@babel/helper-replace-supers': 7.16.7
@@ -1807,7 +1863,7 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.17.9:
+ /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.17.8:
resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1816,12 +1872,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.16.7
regexpu-core: 5.0.1
dev: true
- /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.17.9:
+ /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.17.8:
resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==}
peerDependencies:
'@babel/core': ^7.4.0-0
@@ -1829,11 +1885,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.8
'@babel/helper-module-imports': 7.16.7
'@babel/helper-plugin-utils': 7.16.7
- '@babel/traverse': 7.17.9
+ '@babel/traverse': 7.17.3
debug: 4.3.4
lodash.debounce: 4.0.8
resolve: 1.22.0
@@ -1855,12 +1911,27 @@ packages:
'@babel/types': 7.17.0
dev: true
+ /@babel/helper-function-name/7.16.7:
+ resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-get-function-arity': 7.16.7
+ '@babel/template': 7.16.7
+ '@babel/types': 7.17.0
+
/@babel/helper-function-name/7.17.9:
resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.16.7
'@babel/types': 7.17.0
+ dev: false
+
+ /@babel/helper-get-function-arity/7.16.7:
+ resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.17.0
/@babel/helper-hoist-variables/7.16.7:
resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==}
@@ -1898,7 +1969,7 @@ packages:
'@babel/helper-split-export-declaration': 7.16.7
'@babel/helper-validator-identifier': 7.16.7
'@babel/template': 7.16.7
- '@babel/traverse': 7.17.9
+ '@babel/traverse': 7.17.3
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
@@ -1932,7 +2003,7 @@ packages:
'@babel/helper-environment-visitor': 7.16.7
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
- '@babel/traverse': 7.17.9
+ '@babel/traverse': 7.17.3
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
@@ -1969,9 +2040,20 @@ packages:
resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-function-name': 7.17.9
+ '@babel/helper-function-name': 7.16.7
'@babel/template': 7.16.7
- '@babel/traverse': 7.17.9
+ '@babel/traverse': 7.17.3
+ '@babel/types': 7.17.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helpers/7.17.8:
+ resolution: {integrity: sha512-QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.16.7
+ '@babel/traverse': 7.17.3
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
@@ -1986,21 +2068,27 @@ packages:
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
+ dev: false
- /@babel/highlight/7.17.9:
- resolution: {integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==}
+ /@babel/highlight/7.16.10:
+ resolution: {integrity: sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.16.7
chalk: 2.4.2
js-tokens: 4.0.0
+ /@babel/parser/7.17.8:
+ resolution: {integrity: sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
/@babel/parser/7.17.9:
resolution: {integrity: sha512-vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg==}
engines: {node: '>=6.0.0'}
hasBin: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2009,11 +2097,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2022,13 +2110,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.9
+ '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.9:
+ /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.8:
resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2037,15 +2125,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-remap-async-to-generator': 7.16.8
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.9
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.8
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2054,14 +2142,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
- '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.16.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.9:
+ /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.8:
resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2070,15 +2158,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
- '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.9
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.8
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2087,12 +2175,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.9
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2101,12 +2189,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.9
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.8
dev: true
- /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2115,12 +2203,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.9
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.8
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2129,12 +2217,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.9
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.8
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2143,12 +2231,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.9
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.8
dev: true
- /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2157,12 +2245,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.9
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.8
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.17.9:
+ /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.17.8:
resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2172,14 +2260,14 @@ packages:
optional: true
dependencies:
'@babel/compat-data': 7.17.7
- '@babel/core': 7.17.9
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.9
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.9
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.8
+ '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2188,12 +2276,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.9
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.8
dev: true
- /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2202,13 +2290,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.9
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8
dev: true
- /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.9:
+ /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.8:
resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2217,14 +2305,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
- '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.16.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2233,16 +2321,16 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.9
+ '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.9
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.8
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
engines: {node: '>=4'}
peerDependencies:
@@ -2251,12 +2339,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.9:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.8:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2264,11 +2352,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.9:
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.8:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2276,11 +2364,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.17.9:
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.17.8:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2289,11 +2377,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.9:
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.8:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2301,11 +2389,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.17.9:
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.17.8:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2313,11 +2401,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.9:
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.8:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2325,7 +2413,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
@@ -2341,7 +2429,7 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.9:
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.8:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2349,11 +2437,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.9:
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.8:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2361,11 +2449,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.9:
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.8:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2373,11 +2461,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.9:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.8:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2385,11 +2473,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.9:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.8:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2397,11 +2485,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.9:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.8:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2409,11 +2497,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.17.9:
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.17.8:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2422,11 +2510,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.9:
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.8:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2435,11 +2523,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2448,11 +2536,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.17.9:
+ /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.17.8:
resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2461,7 +2549,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-module-imports': 7.16.7
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-remap-async-to-generator': 7.16.8
@@ -2469,7 +2557,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2478,11 +2566,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2491,11 +2579,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-classes/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-classes/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2504,10 +2592,10 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-function-name': 7.17.9
+ '@babel/helper-function-name': 7.16.7
'@babel/helper-optimise-call-expression': 7.16.7
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-replace-supers': 7.16.7
@@ -2517,7 +2605,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2526,11 +2614,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.17.8:
resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2539,11 +2627,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2552,12 +2640,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2566,11 +2654,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2579,12 +2667,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2593,11 +2681,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2606,13 +2694,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.9
- '@babel/helper-function-name': 7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.8
+ '@babel/helper-function-name': 7.16.7
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-literals/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-literals/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2621,11 +2709,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2634,11 +2722,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2647,7 +2735,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-module-transforms': 7.17.7
'@babel/helper-plugin-utils': 7.16.7
babel-plugin-dynamic-import-node: 2.3.3
@@ -2655,8 +2743,8 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.17.9_@babel+core@7.17.9:
- resolution: {integrity: sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==}
+ /@babel/plugin-transform-modules-commonjs/7.17.7_@babel+core@7.17.8:
+ resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2664,7 +2752,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-module-transforms': 7.17.7
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-simple-access': 7.17.7
@@ -2673,7 +2761,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.17.9:
+ /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.17.8:
resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2682,7 +2770,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-hoist-variables': 7.16.7
'@babel/helper-module-transforms': 7.17.7
'@babel/helper-plugin-utils': 7.16.7
@@ -2692,7 +2780,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2701,14 +2789,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-module-transforms': 7.17.7
'@babel/helper-plugin-utils': 7.16.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.17.9:
+ /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.17.8:
resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2717,11 +2805,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.8
dev: true
- /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2730,11 +2818,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2743,14 +2831,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-replace-supers': 7.16.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2759,11 +2847,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2772,7 +2860,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
@@ -2792,8 +2880,8 @@ packages:
'@babel/types': 7.17.0
dev: false
- /@babel/plugin-transform-regenerator/7.17.9_@babel+core@7.17.9:
- resolution: {integrity: sha512-Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ==}
+ /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.17.8:
+ resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2801,11 +2889,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
- regenerator-transform: 0.15.0
+ '@babel/core': 7.17.8
+ regenerator-transform: 0.14.5
dev: true
- /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2814,11 +2902,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2827,11 +2915,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-spread/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-spread/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2840,12 +2928,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
dev: true
- /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2854,11 +2942,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2867,11 +2955,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2880,11 +2968,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2893,11 +2981,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.17.9:
+ /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2906,12 +2994,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
- '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/preset-env/7.16.11_@babel+core@7.17.9:
+ /@babel/preset-env/7.16.11_@babel+core@7.17.8:
resolution: {integrity: sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2921,85 +3009,85 @@ packages:
optional: true
dependencies:
'@babel/compat-data': 7.17.7
- '@babel/core': 7.17.9
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.16.7
'@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.9
- '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.17.9
- '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.9
- '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.9
- '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.9
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.9
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.9
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.9
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.9
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.9
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.9
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.9
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.9
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.9
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.9
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.9
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.9
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.9
- '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.9
- '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.9
- '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.17.9
- '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.17.9
- '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.17.9
- '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-regenerator': 7.17.9_@babel+core@7.17.9
- '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.9
- '@babel/preset-modules': 0.1.5_@babel+core@7.17.9
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.8
+ '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.17.8
+ '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8
+ '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8
+ '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.8
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.8
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.8
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.8
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.8
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.8
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.8
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.8
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.8
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.8
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.8
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.8
+ '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.8
+ '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8
+ '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.8
+ '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.17.8
+ '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.17.8
+ '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.8
+ '@babel/preset-modules': 0.1.5_@babel+core@7.17.8
'@babel/types': 7.17.0
- babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.9
- babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.9
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.9
+ babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.8
+ babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.8
+ babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.8
core-js-compat: 3.21.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.17.9:
+ /@babel/preset-modules/0.1.5_@babel+core@7.17.8:
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3007,16 +3095,16 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.9
- '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.9
+ '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.8
+ '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.8
'@babel/types': 7.17.0
esutils: 2.0.3
dev: true
- /@babel/runtime/7.17.9:
- resolution: {integrity: sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==}
+ /@babel/runtime/7.17.8:
+ resolution: {integrity: sha512-dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.9
@@ -3027,9 +3115,26 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.16.7
- '@babel/parser': 7.17.9
+ '@babel/parser': 7.17.8
'@babel/types': 7.17.0
+ /@babel/traverse/7.17.3:
+ resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.16.7
+ '@babel/generator': 7.17.7
+ '@babel/helper-environment-visitor': 7.16.7
+ '@babel/helper-function-name': 7.16.7
+ '@babel/helper-hoist-variables': 7.16.7
+ '@babel/helper-split-export-declaration': 7.16.7
+ '@babel/parser': 7.17.8
+ '@babel/types': 7.17.0
+ debug: 4.3.4
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
/@babel/traverse/7.17.9:
resolution: {integrity: sha512-PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw==}
engines: {node: '>=6.9.0'}
@@ -3046,6 +3151,7 @@ packages:
globals: 11.12.0
transitivePeerDependencies:
- supports-color
+ dev: false
/@babel/types/7.17.0:
resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==}
@@ -3062,7 +3168,7 @@ packages:
/@changesets/apply-release-plan/6.0.0:
resolution: {integrity: sha512-gp6nIdVdfYdwKww2+f8whckKmvfE4JEm4jJgBhTmooi0uzHWhnxvk6JIzQi89qEAMINN0SeVNnXiAtbFY0Mj3w==}
dependencies:
- '@babel/runtime': 7.17.9
+ '@babel/runtime': 7.17.8
'@changesets/config': 2.0.0
'@changesets/get-version-range-type': 0.3.2
'@changesets/git': 1.3.2
@@ -3080,7 +3186,7 @@ packages:
/@changesets/assemble-release-plan/5.1.2:
resolution: {integrity: sha512-nOFyDw4APSkY/vh5WNwGEtThPgEjVShp03PKVdId6wZTJALVcAALCSLmDRfeqjE2z9EsGJb7hZdDlziKlnqZgw==}
dependencies:
- '@babel/runtime': 7.17.9
+ '@babel/runtime': 7.17.8
'@changesets/errors': 0.1.4
'@changesets/get-dependents-graph': 1.3.2
'@changesets/types': 5.0.0
@@ -3108,7 +3214,7 @@ packages:
resolution: {integrity: sha512-4bA3YoBkd5cm5WUxmrR2N9WYE7EeQcM+R3bVYMUj2NvffkQVpU3ckAI+z8UICoojq+HRl2OEwtz+S5UBmYY4zw==}
hasBin: true
dependencies:
- '@babel/runtime': 7.17.9
+ '@babel/runtime': 7.17.8
'@changesets/apply-release-plan': 6.0.0
'@changesets/assemble-release-plan': 5.1.2
'@changesets/changelog-git': 0.1.11
@@ -3182,7 +3288,7 @@ packages:
/@changesets/get-release-plan/3.0.8:
resolution: {integrity: sha512-TJYiWNuP0Lzu2dL/KHuk75w7TkiE5HqoYirrXF7SJIxkhlgH9toQf2C7IapiFTObtuF1qDN8HJAX1CuIOwXldg==}
dependencies:
- '@babel/runtime': 7.17.9
+ '@babel/runtime': 7.17.8
'@changesets/assemble-release-plan': 5.1.2
'@changesets/config': 2.0.0
'@changesets/pre': 1.0.11
@@ -3198,7 +3304,7 @@ packages:
/@changesets/git/1.3.2:
resolution: {integrity: sha512-p5UL+urAg0Nnpt70DLiBe2iSsMcDubTo9fTOD/61krmcJ466MGh71OHwdAwu1xG5+NKzeysdy1joRTg8CXcEXA==}
dependencies:
- '@babel/runtime': 7.17.9
+ '@babel/runtime': 7.17.8
'@changesets/errors': 0.1.4
'@changesets/types': 5.0.0
'@manypkg/get-packages': 1.1.3
@@ -3222,7 +3328,7 @@ packages:
/@changesets/pre/1.0.11:
resolution: {integrity: sha512-CXZnt4SV9waaC9cPLm7818+SxvLKIDHUxaiTXnJYDp1c56xIexx1BNfC1yMuOdzO2a3rAIcZua5Odxr3dwSKfg==}
dependencies:
- '@babel/runtime': 7.17.9
+ '@babel/runtime': 7.17.8
'@changesets/errors': 0.1.4
'@changesets/types': 5.0.0
'@manypkg/get-packages': 1.1.3
@@ -3232,7 +3338,7 @@ packages:
/@changesets/read/0.5.5:
resolution: {integrity: sha512-bzonrPWc29Tsjvgh+8CqJ0apQOwWim0zheeD4ZK44ApSa/GudnZJTODtA3yNOOuQzeZmL0NUebVoHIurtIkA7w==}
dependencies:
- '@babel/runtime': 7.17.9
+ '@babel/runtime': 7.17.8
'@changesets/git': 1.3.2
'@changesets/logger': 0.0.5
'@changesets/parse': 0.3.13
@@ -3253,7 +3359,7 @@ packages:
/@changesets/write/0.1.8:
resolution: {integrity: sha512-oIHeFVMuP6jf0TPnKPpaFpvvAf3JBc+s2pmVChbeEgQTBTALoF51Z9kqxQfG4XONZPHZnqkmy564c7qohhhhTQ==}
dependencies:
- '@babel/runtime': 7.17.9
+ '@babel/runtime': 7.17.8
'@changesets/types': 5.0.0
fs-extra: 7.0.1
human-id: 1.0.2
@@ -3338,7 +3444,7 @@ packages:
resolution: {integrity: sha512-m+rnw7qKHq/XF7DAi4BcFoEAcXBfqqMgQJh8brGEHeqE/RUvgDMjmxsHgWnVpFsG+VmjGyAiI7nwXdliCwEU0Q==}
dependencies:
'@antfu/install-pkg': 0.1.0
- '@antfu/utils': 0.5.1
+ '@antfu/utils': 0.5.0
'@iconify/types': 1.1.0
debug: 4.3.4
kolorist: 1.5.1
@@ -3370,7 +3476,7 @@ packages:
dependencies:
'@lit/reactive-element': 1.3.1
lit: 2.2.2
- lit-html: 2.2.2
+ lit-html: 2.2.1
dev: false
/@lit-labs/ssr/2.1.0:
@@ -3382,7 +3488,7 @@ packages:
'@types/node': 16.11.26
lit: 2.2.2
lit-element: 3.2.0
- lit-html: 2.2.2
+ lit-html: 2.2.1
node-fetch: 2.6.7
parse5: 6.0.1
resolve: 1.22.0
@@ -3394,14 +3500,14 @@ packages:
resolution: {integrity: sha512-nOJARIr3pReqK3hfFCSW2Zg/kFcFsSAlIE7z4a0C9D2dPrgD/YSn3ZP2ET/rxKB65SXyG7jJbkynBRm+tGlacw==}
dev: false
- /@ljharb/has-package-exports-patterns/0.0.2:
- resolution: {integrity: sha512-4/RWEeXDO6bocPONheFe6gX/oQdP/bEpv0oL4HqjPP5DCenBSt0mHgahppY49N0CpsaqffdwPq+TlX9CYOq2Dw==}
+ /@ljharb/has-package-exports-patterns/0.0.1:
+ resolution: {integrity: sha512-J4HxcjHI8EzVwXj2HKfZrwnWv4wmOhGxSHyxDQLhiL4ibwRoIkYBqsacZUXFUWQzJtW6QC+FKSNy8HqKjkEqaQ==}
dev: false
/@manypkg/find-root/1.1.0:
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
dependencies:
- '@babel/runtime': 7.17.9
+ '@babel/runtime': 7.17.8
'@types/node': 12.20.47
find-up: 4.1.0
fs-extra: 8.1.0
@@ -3410,7 +3516,7 @@ packages:
/@manypkg/get-packages/1.1.3:
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
dependencies:
- '@babel/runtime': 7.17.9
+ '@babel/runtime': 7.17.8
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -3620,7 +3726,7 @@ packages:
slash: 3.0.0
dev: true
- /@rollup/plugin-babel/5.3.1_@babel+core@7.17.9+rollup@2.70.1:
+ /@rollup/plugin-babel/5.3.1_@babel+core@7.17.8+rollup@2.70.1:
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
peerDependencies:
@@ -3633,7 +3739,7 @@ packages:
'@types/babel__core':
optional: true
dependencies:
- '@babel/core': 7.17.9
+ '@babel/core': 7.17.8
'@babel/helper-module-imports': 7.16.7
'@rollup/pluginutils': 3.1.0_rollup@2.70.1
rollup: 2.70.1
@@ -3690,7 +3796,7 @@ packages:
rollup: 2.70.1
dev: true
- /@rollup/plugin-typescript/8.3.1_8fb0118e9d69f3600cbb8f144f7d456c:
+ /@rollup/plugin-typescript/8.3.1_rollup@2.70.1+tslib@2.3.1:
resolution: {integrity: sha512-84rExe3ICUBXzqNX48WZV2Jp3OddjTMX97O2Py6D1KJaGSwWp0mDHXj+bCGNJqWHIEKDIT2U0sDjhP4czKi6cA==}
engines: {node: '>=8.0.0'}
peerDependencies:
@@ -3702,7 +3808,6 @@ packages:
resolve: 1.22.0
rollup: 2.70.1
tslib: 2.3.1
- typescript: 4.6.3
dev: true
/@rollup/pluginutils/3.1.0_rollup@2.70.1:
@@ -3955,8 +4060,8 @@ packages:
'@types/node': 17.0.23
dev: false
- /@types/prop-types/15.7.5:
- resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
+ /@types/prop-types/15.7.4:
+ resolution: {integrity: sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==}
/@types/pug/2.0.6:
resolution: {integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==}
@@ -3971,7 +4076,7 @@ packages:
/@types/react/17.0.44:
resolution: {integrity: sha512-Ye0nlw09GeMp2Suh8qoOv0odfgCoowfM/9MG6WeRD60Gq9wS90bdkdRtYbRkNhXOpG4H+YXGvj4wOWhAC0LJ1g==}
dependencies:
- '@types/prop-types': 15.7.5
+ '@types/prop-types': 15.7.4
'@types/scheduler': 0.16.2
csstype: 3.0.11
@@ -4035,8 +4140,8 @@ packages:
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
dev: true
- /@typescript-eslint/eslint-plugin/5.18.0_0dd9be2ba5ed9805045f3fec8be848f5:
- resolution: {integrity: sha512-tzrmdGMJI/uii9/V6lurMo4/o+dMTKDH82LkNjhJ3adCW22YQydoRs5MwTiqxGF9CSYxPxQ7EYb4jLNlIs+E+A==}
+ /@typescript-eslint/eslint-plugin/5.19.0_f34adc8488d2e4f014fe61432d70cbf2:
+ resolution: {integrity: sha512-w59GpFqDYGnWFim9p6TGJz7a3qWeENJuAKCqjGSx+Hq/bwq3RZwXYqy98KIfN85yDqz9mq6QXiY5h0FjGQLyEg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -4046,24 +4151,24 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.18.0_eslint@8.13.0+typescript@4.6.3
- '@typescript-eslint/scope-manager': 5.18.0
- '@typescript-eslint/type-utils': 5.18.0_eslint@8.13.0+typescript@4.6.3
- '@typescript-eslint/utils': 5.18.0_eslint@8.13.0+typescript@4.6.3
+ '@typescript-eslint/parser': 5.19.0_eslint@8.13.0+typescript@4.6.3
+ '@typescript-eslint/scope-manager': 5.19.0
+ '@typescript-eslint/type-utils': 5.19.0_eslint@8.13.0+typescript@4.6.3
+ '@typescript-eslint/utils': 5.19.0_eslint@8.13.0+typescript@4.6.3
debug: 4.3.4
eslint: 8.13.0
functional-red-black-tree: 1.0.1
ignore: 5.2.0
regexpp: 3.2.0
- semver: 7.3.6
+ semver: 7.3.7
tsutils: 3.21.0_typescript@4.6.3
typescript: 4.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser/5.18.0_eslint@8.13.0+typescript@4.6.3:
- resolution: {integrity: sha512-+08nYfurBzSSPndngnHvFw/fniWYJ5ymOrn/63oMIbgomVQOvIDhBoJmYZ9lwQOCnQV9xHGvf88ze3jFGUYooQ==}
+ /@typescript-eslint/parser/5.19.0_eslint@8.13.0+typescript@4.6.3:
+ resolution: {integrity: sha512-yhktJjMCJX8BSBczh1F/uY8wGRYrBeyn84kH6oyqdIJwTGKmzX5Qiq49LRQ0Jh0LXnWijEziSo6BRqny8nqLVQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -4072,9 +4177,9 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.18.0
- '@typescript-eslint/types': 5.18.0
- '@typescript-eslint/typescript-estree': 5.18.0_typescript@4.6.3
+ '@typescript-eslint/scope-manager': 5.19.0
+ '@typescript-eslint/types': 5.19.0
+ '@typescript-eslint/typescript-estree': 5.19.0_typescript@4.6.3
debug: 4.3.4
eslint: 8.13.0
typescript: 4.6.3
@@ -4082,16 +4187,16 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/scope-manager/5.18.0:
- resolution: {integrity: sha512-C0CZML6NyRDj+ZbMqh9FnPscg2PrzSaVQg3IpTmpe0NURMVBXlghGZgMYqBw07YW73i0MCqSDqv2SbywnCS8jQ==}
+ /@typescript-eslint/scope-manager/5.19.0:
+ resolution: {integrity: sha512-Fz+VrjLmwq5fbQn5W7cIJZ066HxLMKvDEmf4eu1tZ8O956aoX45jAuBB76miAECMTODyUxH61AQM7q4/GOMQ5g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.18.0
- '@typescript-eslint/visitor-keys': 5.18.0
+ '@typescript-eslint/types': 5.19.0
+ '@typescript-eslint/visitor-keys': 5.19.0
dev: true
- /@typescript-eslint/type-utils/5.18.0_eslint@8.13.0+typescript@4.6.3:
- resolution: {integrity: sha512-vcn9/6J5D6jtHxpEJrgK8FhaM8r6J1/ZiNu70ZUJN554Y3D9t3iovi6u7JF8l/e7FcBIxeuTEidZDR70UuCIfA==}
+ /@typescript-eslint/type-utils/5.19.0_eslint@8.13.0+typescript@4.6.3:
+ resolution: {integrity: sha512-O6XQ4RI4rQcBGshTQAYBUIGsKqrKeuIOz9v8bckXZnSeXjn/1+BDZndHLe10UplQeJLXDNbaZYrAytKNQO2T4Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -4100,7 +4205,7 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/utils': 5.18.0_eslint@8.13.0+typescript@4.6.3
+ '@typescript-eslint/utils': 5.19.0_eslint@8.13.0+typescript@4.6.3
debug: 4.3.4
eslint: 8.13.0
tsutils: 3.21.0_typescript@4.6.3
@@ -4109,13 +4214,13 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/types/5.18.0:
- resolution: {integrity: sha512-bhV1+XjM+9bHMTmXi46p1Led5NP6iqQcsOxgx7fvk6gGiV48c6IynY0apQb7693twJDsXiVzNXTflhplmaiJaw==}
+ /@typescript-eslint/types/5.19.0:
+ resolution: {integrity: sha512-zR1ithF4Iyq1wLwkDcT+qFnhs8L5VUtjgac212ftiOP/ZZUOCuuF2DeGiZZGQXGoHA50OreZqLH5NjDcDqn34w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/5.18.0_typescript@4.6.3:
- resolution: {integrity: sha512-wa+2VAhOPpZs1bVij9e5gyVu60ReMi/KuOx4LKjGx2Y3XTNUDJgQ+5f77D49pHtqef/klglf+mibuHs9TrPxdQ==}
+ /@typescript-eslint/typescript-estree/5.19.0_typescript@4.6.3:
+ resolution: {integrity: sha512-dRPuD4ocXdaE1BM/dNR21elSEUPKaWgowCA0bqJ6YbYkvtrPVEvZ+zqcX5a8ECYn3q5iBSSUcBBD42ubaOp0Hw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -4123,28 +4228,28 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.18.0
- '@typescript-eslint/visitor-keys': 5.18.0
+ '@typescript-eslint/types': 5.19.0
+ '@typescript-eslint/visitor-keys': 5.19.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.3.6
+ semver: 7.3.7
tsutils: 3.21.0_typescript@4.6.3
typescript: 4.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils/5.18.0_eslint@8.13.0+typescript@4.6.3:
- resolution: {integrity: sha512-+hFGWUMMri7OFY26TsOlGa+zgjEy1ssEipxpLjtl4wSll8zy85x0GrUSju/FHdKfVorZPYJLkF3I4XPtnCTewA==}
+ /@typescript-eslint/utils/5.19.0_eslint@8.13.0+typescript@4.6.3:
+ resolution: {integrity: sha512-ZuEckdupXpXamKvFz/Ql8YnePh2ZWcwz7APICzJL985Rp5C2AYcHO62oJzIqNhAMtMK6XvrlBTZeNG8n7gS3lQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@types/json-schema': 7.0.11
- '@typescript-eslint/scope-manager': 5.18.0
- '@typescript-eslint/types': 5.18.0
- '@typescript-eslint/typescript-estree': 5.18.0_typescript@4.6.3
+ '@typescript-eslint/scope-manager': 5.19.0
+ '@typescript-eslint/types': 5.19.0
+ '@typescript-eslint/typescript-estree': 5.19.0_typescript@4.6.3
eslint: 8.13.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@8.13.0
@@ -4153,11 +4258,11 @@ packages:
- typescript
dev: true
- /@typescript-eslint/visitor-keys/5.18.0:
- resolution: {integrity: sha512-Hf+t+dJsjAKpKSkg3EHvbtEpFFb/1CiOHnvI8bjHgOD4/wAw3gKrA0i94LrbekypiZVanJu3McWJg7rWDMzRTg==}
+ /@typescript-eslint/visitor-keys/5.19.0:
+ resolution: {integrity: sha512-Ym7zZoMDZcAKWsULi2s7UMLREdVQdScPQ/fKWMYefarCztWlHPFVJo8racf8R0Gc8FAEJ2eD4of8As1oFtnQlQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.18.0
+ '@typescript-eslint/types': 5.19.0
eslint-visitor-keys: 3.3.0
dev: true
@@ -4286,7 +4391,7 @@ packages:
/@vue/compiler-core/3.2.31:
resolution: {integrity: sha512-aKno00qoA4o+V/kR6i/pE+aP+esng5siNAVQ422TkBNM6qA4veXiZbSe8OTXHXquEi/f6Akc+nLfB4JGfe4/WQ==}
dependencies:
- '@babel/parser': 7.17.9
+ '@babel/parser': 7.17.8
'@vue/shared': 3.2.31
estree-walker: 2.0.2
source-map: 0.6.1
@@ -4300,7 +4405,7 @@ packages:
/@vue/compiler-sfc/3.2.31:
resolution: {integrity: sha512-748adc9msSPGzXgibHiO6T7RWgfnDcVQD+VVwYgSsyyY8Ans64tALHZANrKtOzvkwznV/F4H7OAod/jIlp/dkQ==}
dependencies:
- '@babel/parser': 7.17.9
+ '@babel/parser': 7.17.8
'@vue/compiler-core': 3.2.31
'@vue/compiler-dom': 3.2.31
'@vue/compiler-ssr': 3.2.31
@@ -4320,7 +4425,7 @@ packages:
/@vue/reactivity-transform/3.2.31:
resolution: {integrity: sha512-uS4l4z/W7wXdI+Va5pgVxBJ345wyGFKvpPYtdSgvfJfX/x2Ymm6ophQlXXB6acqGHtXuBqNyyO3zVp9b1r0MOA==}
dependencies:
- '@babel/parser': 7.17.9
+ '@babel/parser': 7.17.8
'@vue/compiler-core': 3.2.31
'@vue/shared': 3.2.31
estree-walker: 2.0.2
@@ -4624,7 +4729,7 @@ packages:
postcss: ^8.1.0
dependencies:
browserslist: 4.20.2
- caniuse-lite: 1.0.30001327
+ caniuse-lite: 1.0.30001324
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -4653,7 +4758,7 @@ packages:
- '@babel/core'
dev: false
- /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.17.9:
+ /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.17.8:
resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4662,14 +4767,14 @@ packages:
optional: true
dependencies:
'@babel/compat-data': 7.17.7
- '@babel/core': 7.17.9
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.8
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.17.9:
+ /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.17.8:
resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4677,14 +4782,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.8
core-js-compat: 3.21.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.17.9:
+ /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.17.8:
resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4692,8 +4797,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.17.9
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.9
+ '@babel/core': 7.17.8
+ '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.8
transitivePeerDependencies:
- supports-color
dev: true
@@ -4793,8 +4898,8 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001327
- electron-to-chromium: 1.4.106
+ caniuse-lite: 1.0.30001324
+ electron-to-chromium: 1.4.103
escalade: 3.1.1
node-releases: 2.0.2
picocolors: 1.0.0
@@ -4868,8 +4973,8 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- /caniuse-lite/1.0.30001327:
- resolution: {integrity: sha512-1/Cg4jlD9qjZzhbzkzEaAC2JHsP0WrOc8Rd/3a3LuajGzGWR/hD7TVyvq99VqmTy99eVh8Zkmdq213OgvgXx7w==}
+ /caniuse-lite/1.0.30001324:
+ resolution: {integrity: sha512-/eYp1J6zYh1alySQB4uzYFkLmxxI8tk0kxldbNHXp8+v+rdMKdUBNjRLz7T7fz6Iox+1lIdYpc7rq6ZcXfTukg==}
/canvas-confetti/1.5.1:
resolution: {integrity: sha512-Ncz+oZJP6OvY7ti4E1slxVlyAV/3g7H7oQtcCDXgwGgARxPnwYY9PW5Oe+I8uvspYNtuHviAdgA0LfcKFWJfpg==}
@@ -4949,7 +5054,7 @@ packages:
dependencies:
css-select: 4.3.0
css-what: 6.1.0
- domelementtype: 2.3.0
+ domelementtype: 2.2.0
domhandler: 4.3.1
domutils: 2.8.0
dev: true
@@ -4959,7 +5064,7 @@ packages:
engines: {node: '>= 6'}
dependencies:
cheerio-select: 1.6.0
- dom-serializer: 1.4.1
+ dom-serializer: 1.3.2
domhandler: 4.3.1
htmlparser2: 6.1.0
parse5: 6.0.1
@@ -5068,8 +5173,8 @@ packages:
simple-swizzle: 0.2.2
dev: true
- /color/4.2.3:
- resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ /color/4.2.1:
+ resolution: {integrity: sha512-MFJr0uY4RvTQUKvPq7dh9grVOTYSFeXja2mBXioCGjnjJoXrAp9jJ1NQTDR73c9nwBSAQiNKloKl5zq9WB9UPw==}
engines: {node: '>=12.5.0'}
dependencies:
color-convert: 2.0.1
@@ -5367,7 +5472,7 @@ packages:
engines: {node: '>=10'}
dependencies:
globby: 11.1.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.9
is-glob: 4.0.3
is-path-cwd: 2.2.0
is-path-inside: 3.0.3
@@ -5444,27 +5549,27 @@ packages:
esutils: 2.0.3
dev: true
- /dom-serializer/1.4.1:
- resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
+ /dom-serializer/1.3.2:
+ resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==}
dependencies:
- domelementtype: 2.3.0
+ domelementtype: 2.2.0
domhandler: 4.3.1
entities: 2.2.0
- /domelementtype/2.3.0:
- resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
+ /domelementtype/2.2.0:
+ resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==}
/domhandler/4.3.1:
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
dependencies:
- domelementtype: 2.3.0
+ domelementtype: 2.2.0
/domutils/2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
- dom-serializer: 1.4.1
- domelementtype: 2.3.0
+ dom-serializer: 1.3.2
+ domelementtype: 2.2.0
domhandler: 4.3.1
/dotenv/8.6.0:
@@ -5488,8 +5593,8 @@ packages:
jake: 10.8.4
dev: true
- /electron-to-chromium/1.4.106:
- resolution: {integrity: sha512-ZYfpVLULm67K7CaaGP7DmjyeMY4naxsbTy+syVVxT6QHI1Ww8XbJjmr9fDckrhq44WzCrcC5kH3zGpdusxwwqg==}
+ /electron-to-chromium/1.4.103:
+ resolution: {integrity: sha512-c/uKWR1Z/W30Wy/sx3dkZoj4BijbXX85QKWu9jJfjho3LBAXNEGAEW3oWiGb+dotA6C6BzCTxL2/aLes7jlUeg==}
/emmet/2.3.6:
resolution: {integrity: sha512-pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A==}
@@ -5580,192 +5685,192 @@ packages:
resolution: {integrity: sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM=}
dev: false
- /esbuild-android-64/0.14.34:
- resolution: {integrity: sha512-XfxcfJqmMYsT/LXqrptzFxmaR3GWzXHDLdFNIhm6S00zPaQF1TBBWm+9t0RZ6LRR7iwH57DPjaOeW20vMqI4Yw==}
+ /esbuild-android-64/0.14.36:
+ resolution: {integrity: sha512-jwpBhF1jmo0tVCYC/ORzVN+hyVcNZUWuozGcLHfod0RJCedTDTvR4nwlTXdx1gtncDqjk33itjO+27OZHbiavw==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
optional: true
- /esbuild-android-arm64/0.14.34:
- resolution: {integrity: sha512-T02+NXTmSRL1Mc6puz+R9CB54rSPICkXKq6+tw8B6vxZFnCPzbJxgwIX4kcluz9p8nYBjF3+lSilTGWb7+Xgew==}
+ /esbuild-android-arm64/0.14.36:
+ resolution: {integrity: sha512-/hYkyFe7x7Yapmfv4X/tBmyKnggUmdQmlvZ8ZlBnV4+PjisrEhAvC3yWpURuD9XoB8Wa1d5dGkTsF53pIvpjsg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /esbuild-darwin-64/0.14.34:
- resolution: {integrity: sha512-pLRip2Bh4Ng7Bf6AMgCrSp3pPe/qZyf11h5Qo2mOfJqLWzSVjxrXW+CFRJfrOVP7TCnh/gmZSM2AFdCPB72vtw==}
+ /esbuild-darwin-64/0.14.36:
+ resolution: {integrity: sha512-kkl6qmV0dTpyIMKagluzYqlc1vO0ecgpviK/7jwPbRDEv5fejRTaBBEE2KxEQbTHcLhiiDbhG7d5UybZWo/1zQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /esbuild-darwin-arm64/0.14.34:
- resolution: {integrity: sha512-vpidSJEBxx6lf1NWgXC+DCmGqesJuZ5Y8aQVVsaoO4i8tRXbXb0whChRvop/zd3nfNM4dIl5EXAky0knRX5I6w==}
+ /esbuild-darwin-arm64/0.14.36:
+ resolution: {integrity: sha512-q8fY4r2Sx6P0Pr3VUm//eFYKVk07C5MHcEinU1BjyFnuYz4IxR/03uBbDwluR6ILIHnZTE7AkTUWIdidRi1Jjw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /esbuild-freebsd-64/0.14.34:
- resolution: {integrity: sha512-m0HBjePhe0hAQJgtMRMNV9kMgIyV4/qSnzPx42kRMQBcPhgjAq1JRu4Il26czC+9FgpMbFkUktb07f/Lwnc6CA==}
+ /esbuild-freebsd-64/0.14.36:
+ resolution: {integrity: sha512-Hn8AYuxXXRptybPqoMkga4HRFE7/XmhtlQjXFHoAIhKUPPMeJH35GYEUWGbjteai9FLFvBAjEAlwEtSGxnqWww==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
optional: true
- /esbuild-freebsd-arm64/0.14.34:
- resolution: {integrity: sha512-cpRc2B94L1KvMPPYB4D6G39jLqpKlD3noAMY4/e86iXXXkhUYJJEtTuyNFTa9JRpWM0xCAp4mxjHjoIiLuoCLA==}
+ /esbuild-freebsd-arm64/0.14.36:
+ resolution: {integrity: sha512-S3C0attylLLRiCcHiJd036eDEMOY32+h8P+jJ3kTcfhJANNjP0TNBNL30TZmEdOSx/820HJFgRrqpNAvTbjnDA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
optional: true
- /esbuild-linux-32/0.14.34:
- resolution: {integrity: sha512-8nQaEaoW7MH/K/RlozJa+lE1ejHIr8fuPIHhc513UebRav7HtXgQvxHQ6VZRUkWtep23M6dd7UqhwO1tMOfzQQ==}
+ /esbuild-linux-32/0.14.36:
+ resolution: {integrity: sha512-Eh9OkyTrEZn9WGO4xkI3OPPpUX7p/3QYvdG0lL4rfr73Ap2HAr6D9lP59VMF64Ex01LhHSXwIsFG/8AQjh6eNw==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-64/0.14.34:
- resolution: {integrity: sha512-Y3of4qQoLLlAgf042MlrY1P+7PnN9zWj8nVtw9XQG5hcLOZLz7IKpU35oeu7n4wvyaZHwvQqDJ93gRLqdJekcQ==}
+ /esbuild-linux-64/0.14.36:
+ resolution: {integrity: sha512-vFVFS5ve7PuwlfgoWNyRccGDi2QTNkQo/2k5U5ttVD0jRFaMlc8UQee708fOZA6zTCDy5RWsT5MJw3sl2X6KDg==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-arm/0.14.34:
- resolution: {integrity: sha512-9lpq1NcJqssAF7alCO6zL3gvBVVt/lKw4oetUM7OgNnRX0OWpB+ZIO9FwCrSj/dMdmgDhPLf+119zB8QxSMmAg==}
+ /esbuild-linux-arm/0.14.36:
+ resolution: {integrity: sha512-NhgU4n+NCsYgt7Hy61PCquEz5aevI6VjQvxwBxtxrooXsxt5b2xtOUXYZe04JxqQo+XZk3d1gcr7pbV9MAQ/Lg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-arm64/0.14.34:
- resolution: {integrity: sha512-IlWaGtj9ir7+Nrume1DGcyzBDlK8GcnJq0ANKwcI9pVw8tqr+6GD0eqyF9SF1mR8UmAp+odrx1H5NdR2cHdFHA==}
+ /esbuild-linux-arm64/0.14.36:
+ resolution: {integrity: sha512-24Vq1M7FdpSmaTYuu1w0Hdhiqkbto1I5Pjyi+4Cdw5fJKGlwQuw+hWynTcRI/cOZxBcBpP21gND7W27gHAiftw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-mips64le/0.14.34:
- resolution: {integrity: sha512-k3or+01Rska1AjUyNjA4buEwB51eyN/xPQAoOx1CjzAQC3l8rpjUDw55kXyL63O/1MUi4ISvtNtl8gLwdyEcxw==}
+ /esbuild-linux-mips64le/0.14.36:
+ resolution: {integrity: sha512-hZUeTXvppJN+5rEz2EjsOFM9F1bZt7/d2FUM1lmQo//rXh1RTFYzhC0txn7WV0/jCC7SvrGRaRz0NMsRPf8SIA==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-ppc64le/0.14.34:
- resolution: {integrity: sha512-+qxb8M9FfM2CJaVU7GgYpJOHM1ngQOx+/VrtBjb4C8oVqaPcESCeg2anjl+HRZy8VpYc71q/iBYausPPbJ+Keg==}
+ /esbuild-linux-ppc64le/0.14.36:
+ resolution: {integrity: sha512-1Bg3QgzZjO+QtPhP9VeIBhAduHEc2kzU43MzBnMwpLSZ890azr4/A9Dganun8nsqD/1TBcqhId0z4mFDO8FAvg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-riscv64/0.14.34:
- resolution: {integrity: sha512-Y717ltBdQ5j5sZIHdy1DV9kieo0wMip0dCmVSTceowCPYSn1Cg33Kd6981+F/3b9FDMzNWldZFOBRILViENZSA==}
+ /esbuild-linux-riscv64/0.14.36:
+ resolution: {integrity: sha512-dOE5pt3cOdqEhaufDRzNCHf5BSwxgygVak9UR7PH7KPVHwSTDAZHDoEjblxLqjJYpc5XaU9+gKJ9F8mp9r5I4A==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-s390x/0.14.34:
- resolution: {integrity: sha512-bDDgYO4LhL4+zPs+WcBkXph+AQoPcQRTv18FzZS0WhjfH8TZx2QqlVPGhmhZ6WidrY+jKthUqO6UhGyIb4MpmA==}
+ /esbuild-linux-s390x/0.14.36:
+ resolution: {integrity: sha512-g4FMdh//BBGTfVHjF6MO7Cz8gqRoDPzXWxRvWkJoGroKA18G9m0wddvPbEqcQf5Tbt2vSc1CIgag7cXwTmoTXg==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-netbsd-64/0.14.34:
- resolution: {integrity: sha512-cfaFGXdRt0+vHsjNPyF0POM4BVSHPSbhLPe8mppDc7GDDxjIl08mV1Zou14oDWMp/XZMjYN1kWYRSfftiD0vvQ==}
+ /esbuild-netbsd-64/0.14.36:
+ resolution: {integrity: sha512-UB2bVImxkWk4vjnP62ehFNZ73lQY1xcnL5ZNYF3x0AG+j8HgdkNF05v67YJdCIuUJpBuTyCK8LORCYo9onSW+A==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
optional: true
- /esbuild-openbsd-64/0.14.34:
- resolution: {integrity: sha512-vmy9DxXVnRiI14s8GKuYBtess+EVcDALkbpTqd5jw4XITutIzyB7n4x0Tj5utAkKsgZJB22lLWGekr0ABnSLow==}
+ /esbuild-openbsd-64/0.14.36:
+ resolution: {integrity: sha512-NvGB2Chf8GxuleXRGk8e9zD3aSdRO5kLt9coTQbCg7WMGXeX471sBgh4kSg8pjx0yTXRt0MlrUDnjVYnetyivg==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
optional: true
- /esbuild-sunos-64/0.14.34:
- resolution: {integrity: sha512-eNPVatNET1F7tRMhii7goL/eptfxc0ALRjrj9SPFNqp0zmxrehBFD6BaP3R4LjMn6DbMO0jOAnTLFKr8NqcJAA==}
+ /esbuild-sunos-64/0.14.36:
+ resolution: {integrity: sha512-VkUZS5ftTSjhRjuRLp+v78auMO3PZBXu6xl4ajomGenEm2/rGuWlhFSjB7YbBNErOchj51Jb2OK8lKAo8qdmsQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
optional: true
- /esbuild-windows-32/0.14.34:
- resolution: {integrity: sha512-EFhpXyHEcnqWYe2rAHFd8dRw8wkrd9U+9oqcyoEL84GbanAYjiiIjBZsnR8kl0sCQ5w6bLpk7vCEIA2VS32Vcg==}
+ /esbuild-windows-32/0.14.36:
+ resolution: {integrity: sha512-bIar+A6hdytJjZrDxfMBUSEHHLfx3ynoEZXx/39nxy86pX/w249WZm8Bm0dtOAByAf4Z6qV0LsnTIJHiIqbw0w==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /esbuild-windows-64/0.14.34:
- resolution: {integrity: sha512-a8fbl8Ky7PxNEjf1aJmtxdDZj32/hC7S1OcA2ckEpCJRTjiKslI9vAdPpSjrKIWhws4Galpaawy0nB7fjHYf5Q==}
+ /esbuild-windows-64/0.14.36:
+ resolution: {integrity: sha512-+p4MuRZekVChAeueT1Y9LGkxrT5x7YYJxYE8ZOTcEfeUUN43vktSn6hUNsvxzzATrSgq5QqRdllkVBxWZg7KqQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /esbuild-windows-arm64/0.14.34:
- resolution: {integrity: sha512-EYvmKbSa2B3sPnpC28UEu9jBK5atGV4BaVRE7CYGUci2Hlz4AvtV/LML+TcDMT6gBgibnN2gcltWclab3UutMg==}
+ /esbuild-windows-arm64/0.14.36:
+ resolution: {integrity: sha512-fBB4WlDqV1m18EF/aheGYQkQZHfPHiHJSBYzXIo8yKehek+0BtBwo/4PNwKGJ5T0YK0oc8pBKjgwPbzSrPLb+Q==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /esbuild/0.14.34:
- resolution: {integrity: sha512-QIWdPT/gFF6hCaf4m7kP0cJ+JIuFkdHibI7vVFvu3eJS1HpVmYHWDulyN5WXwbRA0SX/7ZDaJ/1DH8SdY9xOJg==}
+ /esbuild/0.14.36:
+ resolution: {integrity: sha512-HhFHPiRXGYOCRlrhpiVDYKcFJRdO0sBElZ668M4lh2ER0YgnkLxECuFe7uWCf23FrcLc59Pqr7dHkTqmRPDHmw==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- esbuild-android-64: 0.14.34
- esbuild-android-arm64: 0.14.34
- esbuild-darwin-64: 0.14.34
- esbuild-darwin-arm64: 0.14.34
- esbuild-freebsd-64: 0.14.34
- esbuild-freebsd-arm64: 0.14.34
- esbuild-linux-32: 0.14.34
- esbuild-linux-64: 0.14.34
- esbuild-linux-arm: 0.14.34
- esbuild-linux-arm64: 0.14.34
- esbuild-linux-mips64le: 0.14.34
- esbuild-linux-ppc64le: 0.14.34
- esbuild-linux-riscv64: 0.14.34
- esbuild-linux-s390x: 0.14.34
- esbuild-netbsd-64: 0.14.34
- esbuild-openbsd-64: 0.14.34
- esbuild-sunos-64: 0.14.34
- esbuild-windows-32: 0.14.34
- esbuild-windows-64: 0.14.34
- esbuild-windows-arm64: 0.14.34
+ esbuild-android-64: 0.14.36
+ esbuild-android-arm64: 0.14.36
+ esbuild-darwin-64: 0.14.36
+ esbuild-darwin-arm64: 0.14.36
+ esbuild-freebsd-64: 0.14.36
+ esbuild-freebsd-arm64: 0.14.36
+ esbuild-linux-32: 0.14.36
+ esbuild-linux-64: 0.14.36
+ esbuild-linux-arm: 0.14.36
+ esbuild-linux-arm64: 0.14.36
+ esbuild-linux-mips64le: 0.14.36
+ esbuild-linux-ppc64le: 0.14.36
+ esbuild-linux-riscv64: 0.14.36
+ esbuild-linux-s390x: 0.14.36
+ esbuild-netbsd-64: 0.14.36
+ esbuild-openbsd-64: 0.14.36
+ esbuild-sunos-64: 0.14.36
+ esbuild-windows-32: 0.14.36
+ esbuild-windows-64: 0.14.36
+ esbuild-windows-arm64: 0.14.36
/escalade/3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
@@ -6169,7 +6274,7 @@ packages:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.9
jsonfile: 4.0.0
universalify: 0.1.2
dev: true
@@ -6178,7 +6283,7 @@ packages:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.9
jsonfile: 4.0.0
universalify: 0.1.2
dev: true
@@ -6188,7 +6293,7 @@ packages:
engines: {node: '>=10'}
dependencies:
at-least-node: 1.0.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.9
jsonfile: 6.1.0
universalify: 2.0.0
dev: true
@@ -6359,8 +6464,8 @@ packages:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
dev: true
- /graceful-fs/4.2.10:
- resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
+ /graceful-fs/4.2.9:
+ resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==}
/grapheme-splitter/1.0.4:
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
@@ -6404,10 +6509,10 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- /has-package-exports/1.3.0:
- resolution: {integrity: sha512-e9OeXPQnmPhYoJ63lXC4wWe34TxEGZDZ3OQX9XRqp2VwsfLl3bQBy7VehLnd34g3ef8CmYlBLGqEMKXuz8YazQ==}
+ /has-package-exports/1.2.3:
+ resolution: {integrity: sha512-lkLLwrNNaRsmwj+TylZJh1o3YlzLfgrl9fZKOAMj4MHjbvt7wy1J0icE6jD36dzkA0aQGoNuqY0hVN2uuPfPBA==}
dependencies:
- '@ljharb/has-package-exports-patterns': 0.0.2
+ '@ljharb/has-package-exports-patterns': 0.0.1
dev: false
/has-symbols/1.0.3:
@@ -6583,7 +6688,7 @@ packages:
/htmlparser2/6.1.0:
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
dependencies:
- domelementtype: 2.3.0
+ domelementtype: 2.2.0
domhandler: 4.3.1
domutils: 2.8.0
entities: 2.2.0
@@ -6592,7 +6697,7 @@ packages:
/htmlparser2/7.2.0:
resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==}
dependencies:
- domelementtype: 2.3.0
+ domelementtype: 2.2.0
domhandler: 4.3.1
domutils: 2.8.0
entities: 3.0.1
@@ -7091,7 +7196,7 @@ packages:
/jsonfile/4.0.0:
resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=}
optionalDependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.9
dev: true
/jsonfile/6.1.0:
@@ -7099,7 +7204,7 @@ packages:
dependencies:
universalify: 2.0.0
optionalDependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.9
dev: true
/jsonpointer/5.0.0:
@@ -7114,7 +7219,7 @@ packages:
/klaw-sync/6.0.0:
resolution: {integrity: sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.9
dev: true
/kleur/3.0.3:
@@ -7166,11 +7271,11 @@ packages:
resolution: {integrity: sha512-HbE7yt2SnUtg5DCrWt028oaU4D5F4k/1cntAFHTkzY8ZIa8N0Wmu92PxSxucsQSOXlODFrICkQ5x/tEshKi13g==}
dependencies:
'@lit/reactive-element': 1.3.1
- lit-html: 2.2.2
+ lit-html: 2.2.1
dev: false
- /lit-html/2.2.2:
- resolution: {integrity: sha512-cJofCRXuizwyaiGt9pJjJOcauezUlSB6t87VBXsPwRhbzF29MgD8GH6fZ0BuZdXAAC02IRONZBd//VPUuU8QbQ==}
+ /lit-html/2.2.1:
+ resolution: {integrity: sha512-AiJ/Rs0awjICs2FioTnHSh+Np5dhYSkyRczKy3wKjp8qjLhr1Ov+GiHrUQNdX8ou1LMuznpIME990AZsa/tR8g==}
dependencies:
'@types/trusted-types': 2.0.2
dev: false
@@ -7180,14 +7285,14 @@ packages:
dependencies:
'@lit/reactive-element': 1.3.1
lit-element: 3.2.0
- lit-html: 2.2.2
+ lit-html: 2.2.1
dev: false
/load-yaml-file/0.2.0:
resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==}
engines: {node: '>=6'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.9
js-yaml: 3.14.1
pify: 4.0.1
strip-bom: 3.0.0
@@ -7279,9 +7384,11 @@ packages:
yallist: 3.1.1
dev: true
- /lru-cache/7.8.1:
- resolution: {integrity: sha512-E1v547OCgJvbvevfjgK9sNKIVXO96NnsTsFPBlg4ZxjhsJSODoH9lk8Bm0OxvHNm6Vm5Yqkl/1fErDxhYL8Skg==}
- engines: {node: '>=12'}
+ /lru-cache/6.0.0:
+ resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
+ engines: {node: '>=10'}
+ dependencies:
+ yallist: 4.0.0
/magic-string/0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
@@ -7977,7 +8084,7 @@ packages:
resolution: {integrity: sha512-tzua9qWWi7iW4I42vUPKM+SfaF0vQSLAm4yO5J83mSwB7GeoWrDKC/K+8YCnYNwqP5duwazbw2X9l4m8SC2cUw==}
engines: {node: '>=10'}
dependencies:
- semver: 7.3.6
+ semver: 7.3.5
dev: true
/node-addon-api/4.3.0:
@@ -8660,7 +8767,7 @@ packages:
resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
engines: {node: '>=6'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.9
js-yaml: 3.14.1
pify: 4.0.1
strip-bom: 3.0.0
@@ -8734,10 +8841,10 @@ packages:
resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
dev: true
- /regenerator-transform/0.15.0:
- resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
+ /regenerator-transform/0.14.5:
+ resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==}
dependencies:
- '@babel/runtime': 7.17.9
+ '@babel/runtime': 7.17.8
dev: true
/regexp.prototype.flags/1.4.1:
@@ -9009,7 +9116,7 @@ packages:
resolution: {integrity: sha1-dB4kXiMfB8r7b98PEzrfohalAq0=}
dependencies:
es6-promise: 3.3.1
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.9
mkdirp: 0.5.6
rimraf: 2.7.1
dev: false
@@ -9054,12 +9161,20 @@ packages:
hasBin: true
dev: true
- /semver/7.3.6:
- resolution: {integrity: sha512-HZWqcgwLsjaX1HBD31msI/rXktuIhS+lWvdE4kN9z+8IVT4Itc7vqU2WvYsyD6/sjYCt4dEKH/m1M3dwI9CC5w==}
- engines: {node: ^10.0.0 || ^12.0.0 || ^14.0.0 || >=16.0.0}
+ /semver/7.3.5:
+ resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==}
+ engines: {node: '>=10'}
hasBin: true
dependencies:
- lru-cache: 7.8.1
+ lru-cache: 6.0.0
+ dev: true
+
+ /semver/7.3.7:
+ resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ lru-cache: 6.0.0
/serialize-javascript/4.0.0:
resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
@@ -9085,11 +9200,11 @@ packages:
engines: {node: '>=12.13.0'}
requiresBuild: true
dependencies:
- color: 4.2.3
+ color: 4.2.1
detect-libc: 1.0.3
node-addon-api: 4.3.0
prebuild-install: 7.0.1
- semver: 7.3.6
+ semver: 7.3.5
simple-get: 4.0.1
tar-fs: 2.1.1
tunnel-agent: 0.6.0
@@ -9241,6 +9356,10 @@ packages:
smart-buffer: 4.2.0
dev: true
+ /solid-js/1.3.13:
+ resolution: {integrity: sha512-1EBEIW9u2yqT5QNjFdvz/tMAoKsDdaRA2Jbgykd2Dt13Ia0D4mV+BFvPkOaseSyu7DsMKS23+ZZofV8BVKmpuQ==}
+ dev: false
+
/solid-js/1.3.14:
resolution: {integrity: sha512-eSLm3DTTAWvFnPJT4/PuHC1TAGSNF/aFG+dyuVRPfPepT7wV2SXllA1gf9gr5kBpuloqFxzLcqXy6B9VLSgCkQ==}
@@ -9248,7 +9367,7 @@ packages:
resolution: {integrity: sha512-iwbgdBzQSxBKoxkzaZgC9MGGUsHWJ74at9i7FF0naoqtwGuKdLYOgOJ9QRlA353DHDS/ttH2e0SRS6s3gz8NLQ==}
dependencies:
nanostores: 0.5.12
- solid-js: 1.3.14
+ solid-js: 1.3.13
dev: false
/sorcery/0.10.0:
@@ -9527,7 +9646,7 @@ packages:
/supports-esm/1.0.0:
resolution: {integrity: sha512-96Am8CDqUaC0I2+C/swJ0yEvM8ZnGn4unoers/LSdE4umhX7mELzqyLzx3HnZAluq5PXIsGMKqa7NkqaeHMPcg==}
dependencies:
- has-package-exports: 1.3.0
+ has-package-exports: 1.2.3
dev: false
/supports-preserve-symlinks-flag/1.0.0:
@@ -9543,8 +9662,8 @@ packages:
svelte: 3.47.0
dev: false
- /svelte-preprocess/4.10.5_1402eb22fee660bb6c891bb9c1bca0d1:
- resolution: {integrity: sha512-VKXPRScCzAZqeBZOGq4LLwtNrAu++mVn7XvQox3eFDV7Ciq0Lg70Q8QWjH9iXF7J+pMlXhPsSFwpCb2E+hoeyA==}
+ /svelte-preprocess/4.10.6_752b810ab855973626d4335cb0788eac:
+ resolution: {integrity: sha512-I2SV1w/AveMvgIQlUF/ZOO3PYVnhxfcpNyGt8pxpUVhPfyfL/CZBkkw/KPfuFix5FJ9TnnNYMhACK3DtSaYVVQ==}
engines: {node: '>= 9.11.2'}
requiresBuild: true
peerDependencies:
@@ -9592,15 +9711,14 @@ packages:
sorcery: 0.10.0
strip-indent: 3.0.0
svelte: 3.47.0
- typescript: 4.6.3
dev: false
/svelte/3.47.0:
resolution: {integrity: sha512-4JaJp3HEoTCGARRWZQIZDUanhYv0iyoHikklVHVLH9xFE9db22g4TDv7CPeNA8HD1JgjXI1vlhR1JZvvhaTu2Q==}
engines: {node: '>= 8'}
- /svelte2tsx/0.5.8_svelte@3.47.0+typescript@4.6.3:
- resolution: {integrity: sha512-z5Mfpmy/jkpFIiePAocgWxGRJg+Ka0zlxyvFlpP2X1BoQuXjFC6pnIR9CGebOTmi+W1JnSUAdxrCCj/sEMXZ8Q==}
+ /svelte2tsx/0.5.6_svelte@3.47.0+typescript@4.6.3:
+ resolution: {integrity: sha512-B4WZUtoTdVD+F73H1RQEH3Hrv7m2/ahThmAUkjT5CTWRigQaJqYQpSjisCH1Pzfi9B37YikDnAi4u4uxwYM+iw==}
peerDependencies:
svelte: ^3.24
typescript: ^4.1.2
@@ -9794,7 +9912,7 @@ packages:
engines: {node: '>=12'}
hasBin: true
dependencies:
- esbuild: 0.14.34
+ esbuild: 0.14.36
dev: false
/tsutils/3.21.0_typescript@4.6.3:
@@ -9826,119 +9944,119 @@ packages:
safe-buffer: 5.2.1
dev: true
- /turbo-darwin-64/1.2.1:
- resolution: {integrity: sha512-NZgrrFF4xJ73CRbIqQXwAfKF5AFEOeM79palpPjJJUXWX8o3KxW/VcrheAryh+aAaEBitaDy8stKgViI/6l1SQ==}
+ /turbo-darwin-64/1.2.3:
+ resolution: {integrity: sha512-lJRPC9SJtWzEkqbjYROJ7MD/kki+y1hAGoEujC9gb6zoAAxY7qBN+N30EkfyFIfAiZUQ6RRydETIdeUTnvZ0jw==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /turbo-darwin-arm64/1.2.1:
- resolution: {integrity: sha512-NzWeE+rZJLEkbMpRpnHNn7R/qqamCRRUUxPWD2z4uuZFXkpMzUVX/PCqy05wPT2IVbcJQn20rojEMwr+oJRxHg==}
+ /turbo-darwin-arm64/1.2.3:
+ resolution: {integrity: sha512-ff7jYMDmreZJ89E0xaL508TrI0afpLa3aQGLkuLEHBqY6AlC68LvrBo99BkQu1q2PEu5DE/0EX0cGDsBPLacdQ==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /turbo-freebsd-64/1.2.1:
- resolution: {integrity: sha512-Y/V8swwuiesAWYU9pu7yPhTQhHnrZEFQq/oCDNQVkUK7SEHAu+UmMaDzSBwk+sg6JWVTkpcXX1yMUFDpfF43cg==}
+ /turbo-freebsd-64/1.2.3:
+ resolution: {integrity: sha512-JtQeKI52cMFc7KwmpjE+xULG21+UhQDk580Azg7sei53cp8ko5xIsoguvR49OqdGLoc79cRO4XVYOarrIlTGrg==}
cpu: [x64]
os: [freebsd]
requiresBuild: true
dev: true
optional: true
- /turbo-freebsd-arm64/1.2.1:
- resolution: {integrity: sha512-ielxsQ0nM6/XCzopNk55rNryFCr3tHowhukteTmfOpgWsT2bDyP/PZUyMTIEtLoaoy2pDr4R+9Wf+db9xDtWQw==}
+ /turbo-freebsd-arm64/1.2.3:
+ resolution: {integrity: sha512-LKtVqgyqjuCX66mJn/xDHyS33OZEd8lTst6TlCmkMNPpncewgU+SqARkrg/+m7oTKpQx2B9/7jLBsFLxnwRyBw==}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-32/1.2.1:
- resolution: {integrity: sha512-xQunD8jrkhzPq4miY8p65elUJIqRpyCrJSWukX73m3SpibQPVSQ8BNELEQzeJBjPTcEI2dFSsoAI7Z1NHDX/Pw==}
+ /turbo-linux-32/1.2.3:
+ resolution: {integrity: sha512-I1Az2kqiT3EHHGLisY4LfbHExaXbhrARDsTUGl56kbsJR3icXb0Jg2SfIyp6xkRfiBl95n2vMYpcB9kY9gNz7A==}
cpu: [ia32]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-64/1.2.1:
- resolution: {integrity: sha512-vae1Y7VxumzityRH4ddaj0VEjIg3qbq6tV3TylOaacXvwIijrCVquG5otx9KXEajqzcwuu9+yp5348fUGA/Vxg==}
+ /turbo-linux-64/1.2.3:
+ resolution: {integrity: sha512-b00mPL4Q0Z+mLx14zfO9J43l2DrhhTwV/NDs9KqYCAJwJFf4FLqw0Gy7HfZPm4QCTcLpYHjV8IDAKvf5rXZyGw==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-arm/1.2.1:
- resolution: {integrity: sha512-8eKOw1OvD4e+vg9jg02gI9Y+rrJQfwMLaiUkIZTqvWjs7PytfmhtneaA08QkfMY/rksD5uPSx9sPE9MPYJtfxw==}
+ /turbo-linux-arm/1.2.3:
+ resolution: {integrity: sha512-o1MytyLe7/thVrUSu52U6hxnydMR4ia63gEVsWyBuqnjrKUL7UNqTMqgxPYhFujsMxm9UWYHQL+6TYGJB/kpEA==}
cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-arm64/1.2.1:
- resolution: {integrity: sha512-cNRboXg4kbuoj7J4q3yje+COravXlga7FFZsM0onZNhSai0dYTGXayxOOCVKdN/IfxSG37A0jL0fk7vDyerRZg==}
+ /turbo-linux-arm64/1.2.3:
+ resolution: {integrity: sha512-T1bAEKDKrGGeu8o6oJ8p5EPUJ8yYM6W49MJRjyrcjbJrzMe/BC4z0dIizJ39p+8/5iDWUzDVcLoHTwUTnbEPBQ==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-mips64le/1.2.1:
- resolution: {integrity: sha512-q4gXn09AriapgANzFgIdUzqB45CB6VqqvEAf8uZ4y8I91dEP562op4pp/D59bFAx7GgCZdFfvEc0KCE/5I+0UA==}
+ /turbo-linux-mips64le/1.2.3:
+ resolution: {integrity: sha512-H78+1t7N1fWUeD52cRtCAgW713tGxs9lPPEoxCq02snA7pfdFsuvk85c3UUDXxSl0sNk3VBZNsIw/XrPjb2DNw==}
cpu: [mips64el]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-ppc64le/1.2.1:
- resolution: {integrity: sha512-xWaPfFNU/x2SqDkeQTwh7qJt0Ev/YUiKxcCTZDQbUykjVTC/6beD+DvqcFqsispYqZyRY5U/71EhlZLnHcIbFw==}
+ /turbo-linux-ppc64le/1.2.3:
+ resolution: {integrity: sha512-c0Epw0CX7f6B6rv6uscBFa7PIJMfOeYCltH5s/iWl06lTt0X9wJppQXDhe9KiKaf2WxBk9+mNtIu0Zhw/npwMw==}
cpu: [ppc64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-windows-32/1.2.1:
- resolution: {integrity: sha512-BHu0qRKVHztgvzNc3Nq1B8/psYaldY3y0aYVRb1Kb+RNrmhyeYVfC5+4L4ez0AxuLlb2bc0BOrvPjiEkgv/uLA==}
+ /turbo-windows-32/1.2.3:
+ resolution: {integrity: sha512-0WPIQA+wEPwOziQB+L+GOYkgbSRx/RC6bpPgizugNKzzJIn9A33UBb5165TYPXmxrQwBp4jRxu70nJYtXPejiQ==}
cpu: [ia32]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /turbo-windows-64/1.2.1:
- resolution: {integrity: sha512-/l5j4pdKek1Q1qSj5xidVCDsU26hTo23oMmck/XEcbTOcnde9D+Y7pf5+RsmhtWEhP/yLGv3zUTYyRMf1Ahumw==}
+ /turbo-windows-64/1.2.3:
+ resolution: {integrity: sha512-o2DGj/I6Dwwxjbe6/37oM74M0difCMdAi1mT7dhfE+I/GiB/k5wdYKzzYvHJ/2paFcRhm0OFOjCxA6q+bYMTkg==}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /turbo/1.2.1:
- resolution: {integrity: sha512-k9j1xMGqNoSkeaCkbPOlGJFxsgYKG9TMg82o6LuiUerJtJ5sCwDwBD7QVy/RkngMGOAKeMLhx+OuzLFwa5nHgQ==}
+ /turbo/1.2.3:
+ resolution: {integrity: sha512-UGyOLjzV8Ojyrckhk8HFfvaWT2a4sKUB7N1bLlhBctXnXgJ6ne0PHu9qbqgPMi2t/YI7O16HXwMhXMDnAo85hA==}
hasBin: true
requiresBuild: true
optionalDependencies:
- turbo-darwin-64: 1.2.1
- turbo-darwin-arm64: 1.2.1
- turbo-freebsd-64: 1.2.1
- turbo-freebsd-arm64: 1.2.1
- turbo-linux-32: 1.2.1
- turbo-linux-64: 1.2.1
- turbo-linux-arm: 1.2.1
- turbo-linux-arm64: 1.2.1
- turbo-linux-mips64le: 1.2.1
- turbo-linux-ppc64le: 1.2.1
- turbo-windows-32: 1.2.1
- turbo-windows-64: 1.2.1
+ turbo-darwin-64: 1.2.3
+ turbo-darwin-arm64: 1.2.3
+ turbo-freebsd-64: 1.2.3
+ turbo-freebsd-arm64: 1.2.3
+ turbo-linux-32: 1.2.3
+ turbo-linux-64: 1.2.3
+ turbo-linux-arm: 1.2.3
+ turbo-linux-arm64: 1.2.3
+ turbo-linux-mips64le: 1.2.3
+ turbo-linux-ppc64le: 1.2.3
+ turbo-windows-32: 1.2.3
+ turbo-windows-64: 1.2.3
dev: true
/turbolinks/5.2.0:
@@ -10305,7 +10423,7 @@ packages:
stylus:
optional: true
dependencies:
- esbuild: 0.14.34
+ esbuild: 0.14.36
postcss: 8.4.12
resolve: 1.22.0
rollup: 2.70.1
@@ -10513,10 +10631,10 @@ packages:
engines: {node: '>=10.0.0'}
dependencies:
'@apideck/better-ajv-errors': 0.3.3_ajv@8.11.0
- '@babel/core': 7.17.9
- '@babel/preset-env': 7.16.11_@babel+core@7.17.9
- '@babel/runtime': 7.17.9
- '@rollup/plugin-babel': 5.3.1_@babel+core@7.17.9+rollup@2.70.1
+ '@babel/core': 7.17.8
+ '@babel/preset-env': 7.16.11_@babel+core@7.17.8
+ '@babel/runtime': 7.17.8
+ '@rollup/plugin-babel': 5.3.1_@babel+core@7.17.8+rollup@2.70.1
'@rollup/plugin-node-resolve': 11.2.1_rollup@2.70.1
'@rollup/plugin-replace': 2.4.2_rollup@2.70.1
'@surma/rollup-plugin-off-main-thread': 2.2.3
@@ -10702,7 +10820,6 @@ packages:
/yallist/4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- dev: false
/yaml/1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}