diff --git a/.changeset/grumpy-days-yell.md b/.changeset/grumpy-days-yell.md
new file mode 100644
index 0000000000000..5cc00ff54b7ec
--- /dev/null
+++ b/.changeset/grumpy-days-yell.md
@@ -0,0 +1,9 @@
+---
+'astro': major
+---
+
+Removes support for astroFlavoredMarkdown
+
+In 1.0 Astro moved the old Astro Flavored Markdown (also sometimes called Components in Markdown) to a legacy feature. This change removes the `legacy.astroFlavoredMarkdown` option completely.
+
+In 2.0 this feature will not be available in Astro at all. We recommend migration to MDX for those were still using this feature in 1.x.
diff --git a/.changeset/lovely-worms-invite.md b/.changeset/lovely-worms-invite.md
new file mode 100644
index 0000000000000..d081d2b799339
--- /dev/null
+++ b/.changeset/lovely-worms-invite.md
@@ -0,0 +1,8 @@
+---
+'@astrojs/deno': major
+'@astrojs/netlify': major
+'@astrojs/image': minor
+'astro': major
+---
+
+Builds chunks into the `assets` folder. This simplifies configuring immutable caching with your adapter provider as all files are now in the same `assets` folder.
diff --git a/.changeset/thick-walls-smell.md b/.changeset/thick-walls-smell.md
new file mode 100644
index 0000000000000..d343fe7efee3e
--- /dev/null
+++ b/.changeset/thick-walls-smell.md
@@ -0,0 +1,6 @@
+---
+'astro': major
+'@astrojs/tailwind': major
+---
+
+Remove `style.postcss` Astro config. Refactor tailwind integration to configure through `vite` instead. Also disables `autoprefixer` in dev.
diff --git a/packages/astro/e2e/fixtures/preact-compat-component/astro.config.mjs b/packages/astro/e2e/fixtures/preact-compat-component/astro.config.mjs
index 2cd3777637531..7d2c8a855d1d5 100644
--- a/packages/astro/e2e/fixtures/preact-compat-component/astro.config.mjs
+++ b/packages/astro/e2e/fixtures/preact-compat-component/astro.config.mjs
@@ -3,8 +3,5 @@ import preact from '@astrojs/preact';
// https://astro.build/config
export default defineConfig({
- legacy: {
- astroFlavoredMarkdown: true,
- },
integrations: [preact({ compat: true })],
});
diff --git a/packages/astro/e2e/fixtures/preact-compat-component/src/pages/markdown.md b/packages/astro/e2e/fixtures/preact-compat-component/src/pages/markdown.md
deleted file mode 100644
index 7c521de772fbb..0000000000000
--- a/packages/astro/e2e/fixtures/preact-compat-component/src/pages/markdown.md
+++ /dev/null
@@ -1,32 +0,0 @@
----
-layout: ../components/Layout.astro
-setup: |
- import Counter from '../components/Counter.jsx';
- import PreactComponent from '../components/JSXComponent.jsx';
-
- const someProps = {
- count: 0,
- };
----
-
-
{children}
-nospace
around it.
diff --git a/packages/astro/test/fixtures/legacy-astro-flavored-markdown/src/imported-md/plain.md b/packages/astro/test/fixtures/legacy-astro-flavored-markdown/src/imported-md/plain.md
deleted file mode 100644
index d548b3356b650..0000000000000
--- a/packages/astro/test/fixtures/legacy-astro-flavored-markdown/src/imported-md/plain.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
----
-
-## Plain jane
-
-I am plain markdown!
diff --git a/packages/astro/test/fixtures/legacy-astro-flavored-markdown/src/imported-md/with-components.md b/packages/astro/test/fixtures/legacy-astro-flavored-markdown/src/imported-md/with-components.md
deleted file mode 100644
index dc6c23bf9c198..0000000000000
--- a/packages/astro/test/fixtures/legacy-astro-flavored-markdown/src/imported-md/with-components.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-setup: |
- import Counter from '../components/Counter.jsx'
- import Hello from '../components/Hello.jsx'
- import SvelteButton from '../components/SvelteButton.svelte'
----
-
-## With components
-
-### Non-hydrated
-
-2: Paragraph in fragmentSlot
-5: Paragraph in fragment in default slot
3: p with title as pSlot
-2: pSlot
-4: nested pSlot
- 5: nested text in default slot -{{ count }}- -
{{ greeting }}
- - - diff --git a/packages/astro/test/fixtures/legacy-build/src/components/InlineHoisted.astro b/packages/astro/test/fixtures/legacy-build/src/components/InlineHoisted.astro deleted file mode 100644 index ba6c0ab4d4e0b..0000000000000 --- a/packages/astro/test/fixtures/legacy-build/src/components/InlineHoisted.astro +++ /dev/null @@ -1,13 +0,0 @@ - - diff --git a/packages/astro/test/fixtures/legacy-build/src/pages/[pokemon].astro b/packages/astro/test/fixtures/legacy-build/src/pages/[pokemon].astro deleted file mode 100644 index bb3372123533b..0000000000000 --- a/packages/astro/test/fixtures/legacy-build/src/pages/[pokemon].astro +++ /dev/null @@ -1,18 +0,0 @@ ---- -import Greeting from '../components/Greeting.vue'; - -export async function getStaticPaths() { - const allPokemon = [{name: 'Charmander'}, {name: 'Charmander'}, {name: 'Charizard'}]; - return allPokemon.map(pokemon => ({params: {pokemon: pokemon.name}, props: {pokemon}})); -} ---- - - -` in the codeblock
- expect($('pre')[0].children).to.have.lengthOf(1);
-
- // test 2: The empty `` failed to render
- expect($('pre')[1].children).to.have.lengthOf(0);
- });
-
- it('Can render markdown with --- for horizontal rule', async () => {
- const html = await fixture.readFile('/dash/index.html');
- expect(!!html).to.equal(true);
- });
-
- it('Exposes raw markdown content', async () => {
- const { raw } = JSON.parse(await fixture.readFile('/raw-content.json'));
-
- expect(fixLineEndings(raw)).to.equal(
- `\n## With components\n\n### Non-hydrated\n\n \n\n### Hydrated\n\n \n \n`
- );
- });
-
- it('Exposes compiled HTML content', async () => {
- const { compiled } = JSON.parse(await fixture.readFile('/raw-content.json'));
-
- expect(fixLineEndings(compiled)).to.equal(
- `With components
\nNon-hydrated
\n \nHydrated
\n \n `
- );
- });
-
- it('Allows referencing Vite env var names in markdown (#3412)', async () => {
- const html = await fixture.readFile('/vite-env-vars/index.html');
- const $ = cheerio.load(html);
-
- // test 1: referencing an existing var name
- expect($('code').eq(0).text()).to.equal('import.meta.env.SITE');
- expect($('li').eq(0).text()).to.equal('import.meta.env.SITE');
- expect($('code').eq(3).text()).to.contain('site: import.meta.env.SITE');
- expect($('blockquote').text()).to.contain('import.meta.env.SITE');
-
- // test 2: referencing a non-existing var name
- expect($('code').eq(1).text()).to.equal('import.meta.env.TITLE');
- expect($('li').eq(1).text()).to.equal('import.meta.env.TITLE');
- expect($('code').eq(3).text()).to.contain('title: import.meta.env.TITLE');
- expect($('blockquote').text()).to.contain('import.meta.env.TITLE');
-
- // test 3: referencing `import.meta.env` itself (without any var name)
- expect($('code').eq(2).text()).to.equal('import.meta.env');
- expect($('li').eq(2).text()).to.equal('import.meta.env');
- expect($('code').eq(3).text()).to.contain('// Use Vite env vars with import.meta.env');
- expect($('blockquote').text()).to.match(/import\.meta\.env\s*$/);
- });
-
- it('Escapes HTML tags in code blocks', async () => {
- const html = await fixture.readFile('/code-in-md/index.html');
- const $ = cheerio.load(html);
-
- expect($('code').eq(0).html()).to.equal('<script>');
- expect($('blockquote').length).to.equal(1);
- expect($('code').eq(1).html()).to.equal('</script>');
- expect($('pre').html()).to.contain('>This should also work without any problems.<');
- });
-
- it('Allows defining slot contents in component children', async () => {
- const html = await fixture.readFile('/slots/index.html');
- const $ = cheerio.load(html);
-
- const slots = $('article').eq(0);
- expect(slots.find('> .fragmentSlot > div').text()).to.contain('1:');
- expect(slots.find('> .fragmentSlot > div + p').text()).to.contain('2:');
- expect(slots.find('> .pSlot > p[title="hello"]').text()).to.contain('3:');
- expect(slots.find('> .defaultSlot').html()).to.match(
- new RegExp(
- `4: Div in default slot` +
- // Optional extra paragraph due to the line breaks between components
- `()?` +
- `5: Paragraph in fragment in default slot
` +
- // Optional whitespace due to the line breaks between components
- `[\s\n]*` +
- `6: Regular text in default slot`
- )
- );
-
- const nestedSlots = $('article').eq(1);
- expect(nestedSlots.find('> .fragmentSlot').html()).to.contain('1:');
- expect(nestedSlots.find('> .pSlot > p').text()).to.contain('2:');
- expect(nestedSlots.find('> .defaultSlot > article').text().replace(/\s+/g, ' ')).to.equal(
- `
- 3: nested fragmentSlot
- 4: nested pSlot
- 5: nested text in default slot
- `.replace(/\s+/g, ' ')
- );
-
- expect($('article').eq(3).text().replace(/[^❌]/g, '')).to.equal('❌❌❌');
-
- expect($('article').eq(4).text().replace(/[^❌]/g, '')).to.equal('❌❌❌');
- });
-
- it('Generate the right props for the layout', async () => {
- const html = await fixture.readFile('/layout-props/index.html');
- const $ = cheerio.load(html);
-
- expect($('#title').text()).to.equal('Hello world!');
- expect($('#url').text()).to.equal('/layout-props');
- expect($('#file').text()).to.match(/.*\/layout-props.md$/);
- });
-});
diff --git a/packages/astro/test/slots-preact.test.js b/packages/astro/test/slots-preact.test.js
index b7330a18242d1..893c2dd8a9803 100644
--- a/packages/astro/test/slots-preact.test.js
+++ b/packages/astro/test/slots-preact.test.js
@@ -34,26 +34,6 @@ describe('Slots: Preact', () => {
expect($('#dash-case').text().trim()).to.equal('Fallback / Dash Case');
});
- describe('For Markdown Pages', () => {
- it('Renders default slot', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#content').text().trim()).to.equal('Hello world!');
- });
-
- it('Renders named slot', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#named').text().trim()).to.equal('Fallback / Named');
- });
-
- it('Converts dash-case slot to camelCase', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#dash-case').text().trim()).to.equal('Fallback / Dash Case');
- });
- });
-
describe('For MDX Pages', () => {
it('Renders default slot', async () => {
const html = await fixture.readFile('/mdx/index.html');
diff --git a/packages/astro/test/slots-react.test.js b/packages/astro/test/slots-react.test.js
index a5ac46ab30345..64644515720be 100644
--- a/packages/astro/test/slots-react.test.js
+++ b/packages/astro/test/slots-react.test.js
@@ -34,26 +34,6 @@ describe('Slots: React', () => {
expect($('#dash-case').text().trim()).to.equal('Fallback / Dash Case');
});
- describe('For Markdown Pages', () => {
- it('Renders default slot', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#content').text().trim()).to.equal('Hello world!');
- });
-
- it('Renders named slot', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#named').text().trim()).to.equal('Fallback / Named');
- });
-
- it('Converts dash-case slot to camelCase', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#dash-case').text().trim()).to.equal('Fallback / Dash Case');
- });
- });
-
describe('For MDX Pages', () => {
it('Renders default slot', async () => {
const html = await fixture.readFile('/mdx/index.html');
diff --git a/packages/astro/test/slots-solid.test.js b/packages/astro/test/slots-solid.test.js
index 60e3231c9fa0b..c7bbda434beba 100644
--- a/packages/astro/test/slots-solid.test.js
+++ b/packages/astro/test/slots-solid.test.js
@@ -34,26 +34,6 @@ describe('Slots: Solid', () => {
expect($('#dash-case').text().trim()).to.equal('Fallback / Dash Case');
});
- describe('For Markdown Pages', () => {
- it('Renders default slot', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#content').text().trim()).to.equal('Hello world!');
- });
-
- it('Renders named slot', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#named').text().trim()).to.equal('Fallback / Named');
- });
-
- it('Converts dash-case slot to camelCase', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#dash-case').text().trim()).to.equal('Fallback / Dash Case');
- });
- });
-
describe('For MDX Pages', () => {
it('Renders default slot', async () => {
const html = await fixture.readFile('/mdx/index.html');
diff --git a/packages/astro/test/slots-svelte.test.js b/packages/astro/test/slots-svelte.test.js
index a96a397e3e5d3..9aeb4c106a8a5 100644
--- a/packages/astro/test/slots-svelte.test.js
+++ b/packages/astro/test/slots-svelte.test.js
@@ -34,26 +34,6 @@ describe('Slots: Svelte', () => {
expect($('#dash-case').text().trim()).to.equal('Fallback / Dash Case');
});
- describe('For Markdown Pages', () => {
- it('Renders default slot', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#content').text().trim()).to.equal('Hello world!');
- });
-
- it('Renders named slot', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#named').text().trim()).to.equal('Fallback / Named');
- });
-
- it('Converts dash-case slot to camelCase', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#dash-case').text().trim()).to.equal('Fallback / Dash Case');
- });
- });
-
describe('For MDX Pages', () => {
it('Renders default slot', async () => {
const html = await fixture.readFile('/mdx/index.html');
diff --git a/packages/astro/test/slots-vue.test.js b/packages/astro/test/slots-vue.test.js
index 2999904b75550..2193c77726740 100644
--- a/packages/astro/test/slots-vue.test.js
+++ b/packages/astro/test/slots-vue.test.js
@@ -34,26 +34,6 @@ describe('Slots: Vue', () => {
expect($('#dash-case').text().trim()).to.equal('Fallback / Dash Case');
});
- describe('For Markdown Pages', () => {
- it('Renders default slot', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#content').text().trim()).to.equal('Hello world!');
- });
-
- it('Renders named slot', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#named').text().trim()).to.equal('Fallback / Named');
- });
-
- it('Converts dash-case slot to camelCase', async () => {
- const html = await fixture.readFile('/markdown/index.html');
- const $ = cheerio.load(html);
- expect($('#dash-case').text().trim()).to.equal('Fallback / Dash Case');
- });
- });
-
describe('For MDX Pages', () => {
it('Renders default slot', async () => {
const html = await fixture.readFile('/mdx/index.html');
@@ -68,7 +48,7 @@ describe('Slots: Vue', () => {
});
it('Converts dash-case slot to camelCase', async () => {
- const html = await fixture.readFile('/markdown/index.html');
+ const html = await fixture.readFile('/mdx/index.html');
const $ = cheerio.load(html);
expect($('#dash-case').text().trim()).to.equal('Fallback / Dash Case');
});
diff --git a/packages/astro/test/sourcemap.test.js b/packages/astro/test/sourcemap.test.js
index c24d7f3f0d25b..4937e22364486 100644
--- a/packages/astro/test/sourcemap.test.js
+++ b/packages/astro/test/sourcemap.test.js
@@ -10,7 +10,7 @@ describe('Sourcemap', async () => {
});
it('Builds sourcemap', async () => {
- const dir = await fixture.readdir('.');
+ const dir = await fixture.readdir('./assets');
const counterMap = dir.find((file) => file.match(/^Counter\.\w+\.js\.map$/));
expect(counterMap).to.be.ok;
});
diff --git a/packages/integrations/deno/src/index.ts b/packages/integrations/deno/src/index.ts
index 8907c489da019..68452be94a33e 100644
--- a/packages/integrations/deno/src/index.ts
+++ b/packages/integrations/deno/src/index.ts
@@ -86,7 +86,7 @@ export default function createIntegration(args?: Options): AstroIntegration {
// Remove chunks, if they exist. Since we have bundled via esbuild these chunks are trash.
try {
const chunkFileNames =
- _vite?.build?.rollupOptions?.output?.chunkFileNames ?? 'chunks/chunk.[hash].mjs';
+ _vite?.build?.rollupOptions?.output?.chunkFileNames ?? 'assets/chunks/chunk.[hash].mjs';
const chunkPath = npath.dirname(chunkFileNames);
const chunksDirUrl = new URL(chunkPath + '/', _buildConfig.server);
await fs.promises.rm(chunksDirUrl, { recursive: true, force: true });
diff --git a/packages/integrations/image/src/index.ts b/packages/integrations/image/src/index.ts
index c30ee31ede4b7..cc8093981d24c 100644
--- a/packages/integrations/image/src/index.ts
+++ b/packages/integrations/image/src/index.ts
@@ -146,7 +146,7 @@ export default function integration(options: IntegrationOptions = {}): AstroInte
// For the Squoosh service, copy all wasm files to dist/chunks.
// Because the default loader is dynamically imported (above),
// Vite will bundle squoosh to dist/chunks and expect to find the wasm files there
- await copyWasmFiles(new URL('./chunks', dir));
+ await copyWasmFiles(new URL('./assets/chunks', dir));
}
if (loader && 'transform' in loader && staticImages.size > 0) {
@@ -166,7 +166,7 @@ export default function integration(options: IntegrationOptions = {}): AstroInte
},
'astro:build:ssr': async () => {
if (resolvedOptions.serviceEntryPoint === '@astrojs/image/squoosh') {
- await copyWasmFiles(new URL('./chunks/', _buildConfig.server));
+ await copyWasmFiles(new URL('./assets/chunks/', _buildConfig.server));
}
},
},
diff --git a/packages/integrations/netlify/src/integration-edge-functions.ts b/packages/integrations/netlify/src/integration-edge-functions.ts
index 35b660e2cdd2f..48be316d9d188 100644
--- a/packages/integrations/netlify/src/integration-edge-functions.ts
+++ b/packages/integrations/netlify/src/integration-edge-functions.ts
@@ -100,7 +100,7 @@ async function bundleServerEntry({ serverEntry, server }: BuildConfig, vite: any
// Remove chunks, if they exist. Since we have bundled via esbuild these chunks are trash.
try {
const chunkFileNames =
- vite?.build?.rollupOptions?.output?.chunkFileNames ?? 'chunks/chunk.[hash].mjs';
+ vite?.build?.rollupOptions?.output?.chunkFileNames ?? 'assets/chunks/chunk.[hash].mjs';
const chunkPath = npath.dirname(chunkFileNames);
const chunksDirUrl = new URL(chunkPath + '/', server);
await fs.promises.rm(chunksDirUrl, { recursive: true, force: true });
diff --git a/packages/integrations/tailwind/README.md b/packages/integrations/tailwind/README.md
index fa5532b854b9c..3d333a95f66a5 100644
--- a/packages/integrations/tailwind/README.md
+++ b/packages/integrations/tailwind/README.md
@@ -68,6 +68,8 @@ export default defineConfig({
When you install the integration, Tailwind's utility classes should be ready to go right away. Head to the [Tailwind docs](https://tailwindcss.com/docs/utility-first) to learn how to use Tailwind, and if you see a utility class you want to try, add it to any HTML element to your project!
+[Autoprefixer](https://github.com/postcss/autoprefixer) is also setup automatically for production builds so Tailwind classes will work in older browsers.
+
https://user-images.githubusercontent.com/4033662/169918388-8ed153b2-0ba0-4b24-b861-d6e1cc800b6c.mp4
## Configuration
diff --git a/packages/integrations/tailwind/src/index.ts b/packages/integrations/tailwind/src/index.ts
index 28def50c757fa..951868e9f2f7b 100644
--- a/packages/integrations/tailwind/src/index.ts
+++ b/packages/integrations/tailwind/src/index.ts
@@ -66,6 +66,20 @@ async function getUserConfig(root: URL, configPath?: string, isRestart = false)
}
}
+function getViteConfiguration(isBuild: boolean, tailwindConfig: TailwindConfig) {
+ const postcssPlugins = [tailwindPlugin(tailwindConfig)];
+ if (isBuild) {
+ postcssPlugins.push(autoprefixerPlugin());
+ }
+ return {
+ css: {
+ postcss: {
+ plugins: postcssPlugins,
+ },
+ },
+ };
+}
+
type TailwindOptions =
| {
config?: {
@@ -92,7 +106,14 @@ export default function tailwindIntegration(options?: TailwindOptions): AstroInt
return {
name: '@astrojs/tailwind',
hooks: {
- 'astro:config:setup': async ({ config, injectScript, addWatchFile, isRestart }) => {
+ 'astro:config:setup': async ({
+ command,
+ config,
+ updateConfig,
+ injectScript,
+ addWatchFile,
+ isRestart,
+ }) => {
// Inject the Tailwind postcss plugin
const userConfig = await getUserConfig(config.root, customConfigPath, isRestart);
@@ -108,10 +129,9 @@ export default function tailwindIntegration(options?: TailwindOptions): AstroInt
addWatchFile(userConfig.filePath);
}
- const tailwindConfig: TailwindConfig =
+ const tailwindConfig =
(userConfig?.value as TailwindConfig) ?? getDefaultTailwindConfig(config.srcDir);
- config.style.postcss.plugins.push(tailwindPlugin(tailwindConfig));
- config.style.postcss.plugins.push(autoprefixerPlugin);
+ updateConfig({ vite: getViteConfiguration(command === 'build', tailwindConfig) });
if (applyBaseStyles) {
// Inject the Tailwind base import
diff --git a/packages/markdown/component/test/astro-markdown.test.js b/packages/markdown/component/test/astro-markdown.test.js
index e5a1382a59c60..d2b156334535e 100644
--- a/packages/markdown/component/test/astro-markdown.test.js
+++ b/packages/markdown/component/test/astro-markdown.test.js
@@ -25,25 +25,6 @@ describe('Astro Markdown', () => {
expect($('#test').length).to.be.ok;
});
- it('Can parse JSX expressions in markdown pages', async () => {
- const html = await fixture.readFile('/jsx-expressions/index.html');
- const $ = cheerio.load(html);
-
- expect($('h2').html()).to.equal('Blog Post with JSX expressions');
-
- expect(html).to.contain('JSX at the start of the line!');
- for (let listItem of ['test-1', 'test-2', 'test-3']) {
- expect($(`#${listItem}`).html()).to.equal(`${listItem}`);
- }
- });
-
- it('Can handle slugs with JSX expressions in markdown pages', async () => {
- const html = await fixture.readFile('/slug/index.html');
- const $ = cheerio.load(html);
-
- expect($('h1').attr('id')).to.equal('my-blog-post');
- });
-
it('Can handle code elements without extra spacing', async () => {
const html = await fixture.readFile('/code-element/index.html');
const $ = cheerio.load(html);
@@ -53,14 +34,6 @@ describe('Astro Markdown', () => {
});
});
- it('Can handle namespaced components in markdown', async () => {
- const html = await fixture.readFile('/namespace/index.html');
- const $ = cheerio.load(html);
-
- expect($('h1').text()).to.equal('Hello Namespace!');
- expect($('button').length).to.equal(1);
- });
-
it('Correctly handles component children in markdown pages (#3319)', async () => {
const html = await fixture.readFile('/children/index.html');
@@ -95,12 +68,6 @@ describe('Astro Markdown', () => {
expect($('pre > code').text()).to.equal('');
});
- // https://github.com/withastro/astro/issues/3254
- it('Can handle scripts in markdown pages', async () => {
- const html = await fixture.readFile('/script/index.html');
- expect(html).not.to.match(new RegExp('/src/scripts/test.js'));
- });
-
it('Can load more complex jsxy stuff', async () => {
const html = await fixture.readFile('/complex/index.html');
const $ = cheerio.load(html);
@@ -256,45 +223,6 @@ describe('Astro Markdown', () => {
expect($('#target > ol > li > ol > li').text()).to.equal('nested hello');
});
- it('Exposes raw markdown content', async () => {
- const { raw } = JSON.parse(await fixture.readFile('/raw-content.json'));
-
- expect(fixLineEndings(raw)).to.equal(
- `\n## With components\n\n### Non-hydrated\n\n \n\n### Hydrated\n\n \n \n`
- );
- });
-
- it('Exposes HTML parser for raw markdown content', async () => {
- const { compiled } = JSON.parse(await fixture.readFile('/raw-content.json'));
-
- expect(fixLineEndings(compiled)).to.equal(
- `With components
\nNon-hydrated
\n \nHydrated
\n \n `
- );
- });
-
- it('Allows referencing Vite env var names in markdown (#3412)', async () => {
- const html = await fixture.readFile('/vite-env-vars/index.html');
- const $ = cheerio.load(html);
-
- // test 1: referencing an existing var name
- expect($('code').eq(0).text()).to.equal('import.meta.env.SITE');
- expect($('li').eq(0).text()).to.equal('import.meta.env.SITE');
- expect($('code').eq(3).text()).to.contain('site: import.meta.env.SITE');
- expect($('blockquote').text()).to.contain('import.meta.env.SITE');
-
- // test 2: referencing a non-existing var name
- expect($('code').eq(1).text()).to.equal('import.meta.env.TITLE');
- expect($('li').eq(1).text()).to.equal('import.meta.env.TITLE');
- expect($('code').eq(3).text()).to.contain('title: import.meta.env.TITLE');
- expect($('blockquote').text()).to.contain('import.meta.env.TITLE');
-
- // test 3: referencing `import.meta.env` itself (without any var name)
- expect($('code').eq(2).text()).to.equal('import.meta.env');
- expect($('li').eq(2).text()).to.equal('import.meta.env');
- expect($('code').eq(3).text()).to.contain('// Use Vite env vars with import.meta.env');
- expect($('blockquote').text()).to.match(/import\.meta\.env\s*$/);
- });
-
it('Escapes HTML tags in code blocks', async () => {
const html = await fixture.readFile('/code-in-md/index.html');
const $ = cheerio.load(html);
@@ -305,42 +233,6 @@ describe('Astro Markdown', () => {
expect($('pre').html()).to.contain('>This should also work without any problems.<');
});
- it('Allows defining slot contents in component children', async () => {
- const html = await fixture.readFile('/slots/index.html');
- const $ = cheerio.load(html);
-
- const slots = $('article').eq(0);
- expect(slots.find('> .fragmentSlot > div').text()).to.contain('1:');
- expect(slots.find('> .fragmentSlot > div + p').text()).to.contain('2:');
- expect(slots.find('> .pSlot > p[title="hello"]').text()).to.contain('3:');
- expect(slots.find('> .defaultSlot').html()).to.match(
- new RegExp(
- `4: Div in default slot` +
- // Optional extra paragraph due to the line breaks between components
- `()?` +
- `5: Paragraph in fragment in default slot
` +
- // Optional whitespace due to the line breaks between components
- `[\s\n]*` +
- `6: Regular text in default slot`
- )
- );
-
- const nestedSlots = $('article').eq(1);
- expect(nestedSlots.find('> .fragmentSlot').html()).to.contain('1:');
- expect(nestedSlots.find('> .pSlot > p').text()).to.contain('2:');
- expect(nestedSlots.find('> .defaultSlot > article').text().replace(/\s+/g, ' ')).to.equal(
- `
- 3: nested fragmentSlot
- 4: nested pSlot
- 5: nested text in default slot
- `.replace(/\s+/g, ' ')
- );
-
- expect($('article').eq(3).text().replace(/[^❌]/g, '')).to.equal('❌❌❌');
-
- expect($('article').eq(4).text().replace(/[^❌]/g, '')).to.equal('❌❌❌');
- });
-
it('Generate the right props for the layout', async () => {
const html = await fixture.readFile('/layout-props/index.html');
const $ = cheerio.load(html);
diff --git a/packages/markdown/component/test/fixtures/astro-markdown/astro.config.mjs b/packages/markdown/component/test/fixtures/astro-markdown/astro.config.mjs
index 405776c2bf0e8..be33a26cced0a 100644
--- a/packages/markdown/component/test/fixtures/astro-markdown/astro.config.mjs
+++ b/packages/markdown/component/test/fixtures/astro-markdown/astro.config.mjs
@@ -4,9 +4,6 @@ import svelte from "@astrojs/svelte";
// https://astro.build/config
export default defineConfig({
- legacy: {
- astroFlavoredMarkdown: true,
- },
integrations: [preact(), svelte()],
site: 'https://astro.build/',
});
diff --git a/packages/markdown/component/test/fixtures/astro-markdown/src/imported-md/with-components.md b/packages/markdown/component/test/fixtures/astro-markdown/src/imported-md/with-components.md
deleted file mode 100644
index dc6c23bf9c198..0000000000000
--- a/packages/markdown/component/test/fixtures/astro-markdown/src/imported-md/with-components.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-setup: |
- import Counter from '../components/Counter.jsx'
- import Hello from '../components/Hello.jsx'
- import SvelteButton from '../components/SvelteButton.svelte'
----
-
-## With components
-
-### Non-hydrated
-
-
-
-### Hydrated
-
-
-
diff --git a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/jsx-expressions.md b/packages/markdown/component/test/fixtures/astro-markdown/src/pages/jsx-expressions.md
deleted file mode 100644
index b87efbb2d8895..0000000000000
--- a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/jsx-expressions.md
+++ /dev/null
@@ -1,13 +0,0 @@
----
-title: Blog Post with JSX expressions
-paragraph: JSX at the start of the line!
-list: ['test-1', 'test-2', 'test-3']
----
-
-## {frontmatter.title}
-
-{frontmatter.paragraph}
-
-
- {frontmatter.list.map(item => - {item}
)}
-
diff --git a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/namespace.md b/packages/markdown/component/test/fixtures/astro-markdown/src/pages/namespace.md
deleted file mode 100644
index abbe26a3b0275..0000000000000
--- a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/namespace.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-setup: import ns from '../components/index.js';
----
-
-# Hello Namespace!
-
-Click me!
diff --git a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/raw-content.json.js b/packages/markdown/component/test/fixtures/astro-markdown/src/pages/raw-content.json.js
deleted file mode 100644
index 21be533e10208..0000000000000
--- a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/raw-content.json.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import { rawContent, compiledContent } from '../imported-md/with-components.md';
-
-export async function get() {
- return {
- body: JSON.stringify({
- raw: rawContent(),
- compiled: await compiledContent(),
- }),
- }
-}
diff --git a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/script.md b/packages/markdown/component/test/fixtures/astro-markdown/src/pages/script.md
deleted file mode 100644
index f2b8bca882930..0000000000000
--- a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/script.md
+++ /dev/null
@@ -1,7 +0,0 @@
-# Test
-
-## Let's try a script...
-
-This should work!
-
-
diff --git a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/slots.md b/packages/markdown/component/test/fixtures/astro-markdown/src/pages/slots.md
deleted file mode 100644
index c7e8367b82c0c..0000000000000
--- a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/slots.md
+++ /dev/null
@@ -1,38 +0,0 @@
----
-layout: ../layouts/content.astro
-setup: import SlotComponent from '../components/SlotComponent.astro';
----
-
-# Component with slot contents in children
-
-
- 4: Div in default slot
-
- 1: Div in fragmentSlot
- 2: Paragraph in fragmentSlot
-
- 5: Paragraph in fragment in default slot
- 6: Regular text in default slot
- 3: p with title as pSlot
-
-
-# Component with nested component in children
-
-
- 2: pSlot
-
- 4: nested pSlot
- 5: nested text in default slot
- 3: nested fragmentSlot
-
- 1: fragmentSlot
-
-
-# Missing content due to empty children
-
-
-
-
-# Missing content due to self-closing tag
-
-
diff --git a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/slug.md b/packages/markdown/component/test/fixtures/astro-markdown/src/pages/slug.md
deleted file mode 100644
index 77599b347d13a..0000000000000
--- a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/slug.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-title: My Blog Post
----
-
-# {frontmatter.title}
-
-Hello world
diff --git a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/vite-env-vars.md b/packages/markdown/component/test/fixtures/astro-markdown/src/pages/vite-env-vars.md
deleted file mode 100644
index 30a9ab177a038..0000000000000
--- a/packages/markdown/component/test/fixtures/astro-markdown/src/pages/vite-env-vars.md
+++ /dev/null
@@ -1,35 +0,0 @@
----
-title: Referencing Vite Env Vars like import.meta.env.SITE, import.meta.env.TITLE and import.meta.env
-layout: ../layouts/content.astro
----
-
-## Referencing the full name of Vite env vars
-
-You can get the configured site URL with `import.meta.env.SITE`.
-
-The variable `import.meta.env.TITLE` is not configured.
-
-You can reference all env vars through `import.meta.env`.
-
-This should also work outside of code blocks:
-- import.meta.env.SITE
-- import.meta.env.TITLE
-- import.meta.env
-
-## Usage in fenced code blocks with syntax highlighting
-
-```js
-// src/pages/rss.xml.js
-import rss from '@astrojs/rss';
-
-export const get = () => rss({
- // Use Vite env vars with import.meta.env
- site: import.meta.env.SITE,
- title: import.meta.env.TITLE,
- items: import.meta.glob('./**/*.md'),
-});
-```
-
-## Usage in frontmatter
-
-> frontmatter.title: {frontmatter.title}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 2a5e797768574..3058979536fcf 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -55,7 +55,7 @@ importers:
only-allow: 1.1.1
organize-imports-cli: 0.10.0
prettier: 2.8.1
- prettier-plugin-astro: 0.7.1
+ prettier-plugin-astro: 0.7.2
pretty-bytes: 6.0.0
tiny-glob: 0.2.9
turbo: 1.2.5
@@ -173,7 +173,7 @@ importers:
preact: 10.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- solid-js: 1.6.7
+ solid-js: 1.6.8
svelte: 3.55.0
vue: 3.2.45
@@ -213,7 +213,7 @@ importers:
dependencies:
'@astrojs/solid-js': link:../../packages/integrations/solid
astro: link:../../packages/astro
- solid-js: 1.6.7
+ solid-js: 1.6.8
examples/framework-svelte:
specifiers:
@@ -385,7 +385,7 @@ importers:
packages/astro:
specifiers:
- '@astrojs/compiler': ^0.31.0
+ '@astrojs/compiler': ^0.31.4
'@astrojs/language-server': ^0.28.3
'@astrojs/markdown-remark': ^2.0.0-beta.0
'@astrojs/telemetry': ^1.0.1
@@ -485,16 +485,16 @@ importers:
yargs-parser: ^21.0.1
zod: ^3.17.3
dependencies:
- '@astrojs/compiler': 0.31.3
+ '@astrojs/compiler': 0.31.4
'@astrojs/language-server': 0.28.3
'@astrojs/markdown-remark': link:../markdown/remark
'@astrojs/telemetry': link:../telemetry
'@astrojs/webapi': link:../webapi
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/generator': 7.20.7
'@babel/parser': 7.20.7
- '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.7
- '@babel/traverse': 7.20.10
+ '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12
+ '@babel/traverse': 7.20.12
'@babel/types': 7.20.7
'@proload/core': 0.3.3
'@proload/plugin-tsm': 0.2.1_@proload+core@0.3.3
@@ -668,7 +668,7 @@ importers:
preact: 10.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- solid-js: 1.6.7
+ solid-js: 1.6.8
svelte: 3.55.0
vue: 3.2.45
devDependencies:
@@ -727,7 +727,7 @@ importers:
preact: 10.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- solid-js: 1.6.7
+ solid-js: 1.6.8
svelte: 3.55.0
vue: 3.2.45
@@ -782,7 +782,7 @@ importers:
preact: 10.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- solid-js: 1.6.7
+ solid-js: 1.6.8
svelte: 3.55.0
vue: 3.2.45
devDependencies:
@@ -825,7 +825,7 @@ importers:
preact: 10.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- solid-js: 1.6.7
+ solid-js: 1.6.8
svelte: 3.55.0
vue: 3.2.45
devDependencies:
@@ -854,7 +854,7 @@ importers:
preact: 10.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- solid-js: 1.6.7
+ solid-js: 1.6.8
svelte: 3.55.0
vue: 3.2.45
devDependencies:
@@ -883,7 +883,7 @@ importers:
preact: 10.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- solid-js: 1.6.7
+ solid-js: 1.6.8
svelte: 3.55.0
vue: 3.2.45
devDependencies:
@@ -912,7 +912,7 @@ importers:
preact: 10.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- solid-js: 1.6.7
+ solid-js: 1.6.8
svelte: 3.55.0
vue: 3.2.45
devDependencies:
@@ -941,7 +941,7 @@ importers:
preact: 10.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- solid-js: 1.6.7
+ solid-js: 1.6.8
svelte: 3.55.0
vue: 3.2.45
devDependencies:
@@ -970,7 +970,7 @@ importers:
preact: 10.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- solid-js: 1.6.7
+ solid-js: 1.6.8
svelte: 3.55.0
vue: 3.2.45
devDependencies:
@@ -1046,7 +1046,7 @@ importers:
'@astrojs/mdx': link:../../../../integrations/mdx
'@astrojs/solid-js': link:../../../../integrations/solid
astro: link:../../..
- solid-js: 1.6.7
+ solid-js: 1.6.8
packages/astro/e2e/fixtures/solid-recurse:
specifiers:
@@ -1057,7 +1057,7 @@ importers:
'@astrojs/solid-js': link:../../../../integrations/solid
astro: link:../../..
devDependencies:
- solid-js: 1.6.7
+ solid-js: 1.6.8
packages/astro/e2e/fixtures/svelte-component:
specifiers:
@@ -1921,7 +1921,7 @@ importers:
preact: 10.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- solid-js: 1.6.7
+ solid-js: 1.6.8
svelte: 3.55.0
vue: 3.2.45
devDependencies:
@@ -1940,7 +1940,7 @@ importers:
dependencies:
'@astrojs/solid-js': link:../../../../integrations/solid
astro: link:../../..
- solid-js: 1.6.7
+ solid-js: 1.6.8
packages/astro/test/fixtures/lazy-layout:
specifiers:
@@ -2051,7 +2051,7 @@ importers:
astro: link:../../..
autoprefixer: 10.4.13_postcss@8.4.20
postcss: 8.4.20
- solid-js: 1.6.7
+ solid-js: 1.6.8
svelte: 3.55.0
vue: 3.2.45
devDependencies:
@@ -2107,7 +2107,7 @@ importers:
astro: link:../../..
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- solid-js: 1.6.7
+ solid-js: 1.6.8
packages/astro/test/fixtures/react-component:
specifiers:
@@ -2214,7 +2214,7 @@ importers:
'@astrojs/mdx': link:../../../../integrations/mdx
'@astrojs/solid-js': link:../../../../integrations/solid
astro: link:../../..
- solid-js: 1.6.7
+ solid-js: 1.6.8
packages/astro/test/fixtures/slots-svelte:
specifiers:
@@ -2249,16 +2249,16 @@ importers:
solid-js: ^1.5.6
dependencies:
'@astrojs/solid-js': link:../../../../integrations/solid
- '@solidjs/router': 0.5.1_solid-js@1.6.7
+ '@solidjs/router': 0.5.1_solid-js@1.6.8
'@test/solid-jsx-component': file:packages/astro/test/fixtures/solid-component/deps/solid-jsx-component
astro: link:../../..
- solid-js: 1.6.7
+ solid-js: 1.6.8
packages/astro/test/fixtures/solid-component/deps/solid-jsx-component:
specifiers:
solid-js: ^1.5.6
dependencies:
- solid-js: 1.6.7
+ solid-js: 1.6.8
packages/astro/test/fixtures/sourcemap:
specifiers:
@@ -3151,8 +3151,8 @@ importers:
preact: ^10.7.3
preact-render-to-string: ^5.2.4
dependencies:
- '@babel/core': 7.20.7
- '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12
'@preact/signals': 1.1.3_preact@10.11.3
babel-plugin-module-resolver: 4.1.0
preact-render-to-string: 5.2.6_preact@10.11.3
@@ -3209,8 +3209,8 @@ importers:
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
- '@babel/core': 7.20.7
- '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12
devDependencies:
'@types/react': 17.0.52
'@types/react-dom': 17.0.18
@@ -3259,7 +3259,7 @@ importers:
devDependencies:
astro: link:../../astro
astro-scripts: link:../../../scripts
- solid-js: 1.6.7
+ solid-js: 1.6.8
packages/integrations/svelte:
specifiers:
@@ -3881,8 +3881,8 @@ packages:
sisteransi: 1.0.5
dev: false
- /@astrojs/compiler/0.31.3:
- resolution: {integrity: sha512-WbA05QH5xkdaJ3XtzDuYOjtqsip2InW5rk156sSdaHs5qN2NroUHbzWZthHJwmNAAjQSGXVIj+O6jQj81zzX/Q==}
+ /@astrojs/compiler/0.31.4:
+ resolution: {integrity: sha512-6bBFeDTtPOn4jZaiD3p0f05MEGQL9pw2Zbfj546oFETNmjJFWO3nzHz6/m+P53calknCvyVzZ5YhoBLIvzn5iw==}
/@astrojs/language-server/0.28.3:
resolution: {integrity: sha512-fPovAX/X46eE2w03jNRMpQ7W9m2mAvNt4Ay65lD9wl1Z5vIQYxlg7Enp9qP225muTr4jSVB5QiLumFJmZMAaVA==}
@@ -3891,7 +3891,7 @@ packages:
'@vscode/emmet-helper': 2.8.6
events: 3.3.0
prettier: 2.8.1
- prettier-plugin-astro: 0.7.1
+ prettier-plugin-astro: 0.7.2
source-map: 0.7.4
vscode-css-languageservice: 6.2.1
vscode-html-languageservice: 5.0.3
@@ -3994,19 +3994,19 @@ packages:
engines: {node: '>=6.9.0'}
dev: false
- /@babel/core/7.20.7:
- resolution: {integrity: sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw==}
+ /@babel/core/7.20.12:
+ resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
'@babel/generator': 7.20.7
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
'@babel/helper-module-transforms': 7.20.11
'@babel/helpers': 7.20.7
'@babel/parser': 7.20.7
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.10
+ '@babel/traverse': 7.20.12
'@babel/types': 7.20.7
convert-source-map: 1.9.0
debug: 4.3.4
@@ -4041,7 +4041,7 @@ packages:
'@babel/types': 7.20.7
dev: false
- /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.7:
+ /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4051,15 +4051,15 @@ packages:
optional: true
dependencies:
'@babel/compat-data': 7.20.10
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-validator-option': 7.18.6
browserslist: 4.21.4
lru-cache: 5.1.1
semver: 6.3.0
dev: false
- /@babel/helper-create-class-features-plugin/7.20.7_@babel+core@7.20.7:
- resolution: {integrity: sha512-LtoWbDXOaidEf50hmdDqn9g8VEzsorMexoWMQdQODbvmqYmaF23pBP5VNPAGIFHsFQCIeKokDiz3CH5Y2jlY6w==}
+ /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.20.12:
+ resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -4067,19 +4067,20 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
'@babel/helper-member-expression-to-functions': 7.20.7
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-replace-supers': 7.20.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
'@babel/helper-split-export-declaration': 7.18.6
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.7:
+ /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.12:
resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4088,12 +4089,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.2.2
dev: false
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.7:
+ /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.12:
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
@@ -4101,8 +4102,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -4170,7 +4171,7 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.10
+ '@babel/traverse': 7.20.12
'@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -4188,7 +4189,7 @@ packages:
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.7:
+ /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4197,7 +4198,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-wrap-function': 7.20.5
@@ -4214,7 +4215,7 @@ packages:
'@babel/helper-member-expression-to-functions': 7.20.7
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.10
+ '@babel/traverse': 7.20.12
'@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -4260,7 +4261,7 @@ packages:
dependencies:
'@babel/helper-function-name': 7.19.0
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.10
+ '@babel/traverse': 7.20.12
'@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -4271,7 +4272,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.10
+ '@babel/traverse': 7.20.12
'@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -4292,7 +4293,7 @@ packages:
dependencies:
'@babel/types': 7.20.7
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4301,11 +4302,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4314,13 +4315,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.7
+ '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
dev: false
- /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4329,16 +4330,16 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.7
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.7
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4347,14 +4348,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4363,15 +4364,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.7
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4380,12 +4381,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.7
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
dev: false
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.7:
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4394,12 +4395,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.7
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12
dev: false
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4408,12 +4409,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.7
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12
dev: false
- /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4422,12 +4423,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.7
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12
dev: false
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4436,12 +4437,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12
dev: false
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4450,12 +4451,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.7
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12
dev: false
- /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4465,14 +4466,14 @@ packages:
optional: true
dependencies:
'@babel/compat-data': 7.20.10
- '@babel/core': 7.20.7
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.7
- '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.7
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12
dev: false
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4481,12 +4482,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12
dev: false
- /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4495,13 +4496,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12
dev: false
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4510,14 +4511,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.7:
+ /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.12:
resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4526,16 +4527,16 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.7
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
@@ -4544,12 +4545,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.7:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4557,11 +4558,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.7:
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4569,11 +4570,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.7:
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4582,11 +4583,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.7:
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4594,11 +4595,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.7:
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4606,11 +4607,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.7:
+ /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.12:
resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4619,11 +4620,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.7:
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4631,7 +4632,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
@@ -4647,7 +4648,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4656,11 +4657,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.7:
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4668,11 +4669,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.7:
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4680,11 +4681,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.7:
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4692,11 +4693,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.7:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4704,11 +4705,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.7:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4716,11 +4717,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.7:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4728,11 +4729,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.7:
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4741,11 +4742,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.7:
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4754,11 +4755,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.7:
+ /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.12:
resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4767,11 +4768,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4780,11 +4781,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4793,15 +4794,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.7
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4810,11 +4811,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-block-scoping/7.20.11_@babel+core@7.20.7:
+ /@babel/plugin-transform-block-scoping/7.20.11_@babel+core@7.20.12:
resolution: {integrity: sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4823,11 +4824,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4836,9 +4837,9 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
'@babel/helper-optimise-call-expression': 7.18.6
@@ -4850,7 +4851,7 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4859,12 +4860,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
'@babel/template': 7.20.7
dev: false
- /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4873,11 +4874,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4886,12 +4887,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.7:
+ /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4900,11 +4901,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4913,12 +4914,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.7:
+ /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.12:
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4927,11 +4928,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.7:
+ /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4940,13 +4941,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
'@babel/helper-function-name': 7.19.0
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.7:
+ /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4955,11 +4956,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4968,11 +4969,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.7:
+ /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.12:
resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4981,14 +4982,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-module-transforms': 7.20.11
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.7:
+ /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.12:
resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -4997,7 +4998,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-module-transforms': 7.20.11
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-simple-access': 7.20.2
@@ -5005,7 +5006,7 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.7:
+ /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.12:
resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5014,7 +5015,7 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-module-transforms': 7.20.11
'@babel/helper-plugin-utils': 7.20.2
@@ -5023,7 +5024,7 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5032,14 +5033,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-module-transforms': 7.20.11
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.7:
+ /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.12:
resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5048,12 +5049,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5062,11 +5063,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5075,14 +5076,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5091,11 +5092,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5104,11 +5105,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-react-jsx/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-transform-react-jsx/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5117,15 +5118,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.7
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12
'@babel/types': 7.20.7
dev: false
- /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.7:
+ /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.12:
resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5134,12 +5135,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
regenerator-transform: 0.15.1
dev: false
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5148,11 +5149,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5161,11 +5162,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5174,12 +5175,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
dev: false
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5188,11 +5189,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.7:
+ /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5201,11 +5202,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.7:
+ /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5214,11 +5215,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-typescript/7.20.7_@babel+core@7.20.7:
+ /@babel/plugin-transform-typescript/7.20.7_@babel+core@7.20.12:
resolution: {integrity: sha512-m3wVKEvf6SoszD8pu4NZz3PvfKRCMgk6D6d0Qi9hNnlM5M6CFS92EgF4EiHVLKbU0r/r7ty1hg7NPZwE7WRbYw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5227,15 +5228,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.7
+ '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.7:
+ /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.12:
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5244,11 +5245,11 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.7:
+ /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5257,12 +5258,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/preset-env/7.20.2_@babel+core@7.20.7:
+ /@babel/preset-env/7.20.2_@babel+core@7.20.12:
resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5272,86 +5273,86 @@ packages:
optional: true
dependencies:
'@babel/compat-data': 7.20.10
- '@babel/core': 7.20.7
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.7
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.7
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.7
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.7
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.7
- '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.7
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.7
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.7
- '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.7
- '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.7
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.7
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.7
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.7
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.7
- '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.7
- '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.7
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.7
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.7
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.7
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.7
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.7
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.7
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.7
- '@babel/preset-modules': 0.1.5_@babel+core@7.20.7
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.12
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.12
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12
+ '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.12
+ '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.12
+ '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12
+ '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.12
+ '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.12
+ '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.12
+ '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.12
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.12
+ '@babel/preset-modules': 0.1.5_@babel+core@7.20.12
'@babel/types': 7.20.7
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.7
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.7
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.7
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12
+ babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12
core-js-compat: 3.27.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/preset-modules/0.1.5_@babel+core@7.20.7:
+ /@babel/preset-modules/0.1.5_@babel+core@7.20.12:
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -5359,10 +5360,10 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.7
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.7
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12
'@babel/types': 7.20.7
esutils: 2.0.3
dev: false
@@ -5382,8 +5383,8 @@ packages:
'@babel/types': 7.20.7
dev: false
- /@babel/traverse/7.20.10:
- resolution: {integrity: sha512-oSf1juCgymrSez8NI4A2sr4+uB/mFd9MXplYGPEBnfAuWmmyeVcHa6xLPiaRBcXkcb/28bgxmQLTVwFKE1yfsg==}
+ /@babel/traverse/7.20.12:
+ resolution: {integrity: sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
@@ -5860,80 +5861,80 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/android-arm/0.16.13:
- resolution: {integrity: sha512-JmtqThupn9Yf+FzANE+GG73ASUkssnPwOsndUElhp23685QzRK+MO1UompOlBaXV9D5FTuYcPnw7p4mCq2YbZQ==}
+ /@esbuild/android-arm/0.16.14:
+ resolution: {integrity: sha512-u0rITLxFIeYAvtJXBQNhNuV4YZe+MD1YvIWT7Nicj8hZAtRVZk2PgNH6KclcKDVHz1ChLKXRfX7d7tkbQBUfrg==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-arm64/0.16.13:
- resolution: {integrity: sha512-r4xetsd1ez1NF9/9R2f9Q6AlxqiZLwUqo7ICOcvEVwopVkXUcspIjEbJk0EVTgT6Cp5+ymzGPT6YNV0ievx4yA==}
+ /@esbuild/android-arm64/0.16.14:
+ resolution: {integrity: sha512-hTqB6Iq13pW4xaydeqQrs8vPntUnMjbkq+PgGiBMi69eYk74naG2ftHWqKnxn874kNrt5Or3rQ0PJutx2doJuQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/android-x64/0.16.13:
- resolution: {integrity: sha512-hKt1bFht/Vtp0xJ0ZVzFMnPy1y1ycmM3KNnp3zsyZfQmw7nhs2WLO4vxdR5YG+6RsHKCb2zbZ3VwlC0Tij0qyA==}
+ /@esbuild/android-x64/0.16.14:
+ resolution: {integrity: sha512-jir51K4J0K5Rt0KOcippjSNdOl7akKDVz5I6yrqdk4/m9y+rldGptQUF7qU4YpX8U61LtR+w2Tu2Ph+K/UaJOw==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
optional: true
- /@esbuild/darwin-arm64/0.16.13:
- resolution: {integrity: sha512-ogrVuNi2URocrr3Ps20f075EMm9V7IeenOi9FRj4qdbT6mQlwLuP4l90PW2iBrKERx0oRkcZprEUNsz/3xd7ww==}
+ /@esbuild/darwin-arm64/0.16.14:
+ resolution: {integrity: sha512-vrlaP81IuwPaw1fyX8fHCmivP3Gr73ojVEZy+oWJLAiZVcG8o8Phwun/XDnYIFUHxIoUnMFEpg9o38MIvlw8zw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@esbuild/darwin-x64/0.16.13:
- resolution: {integrity: sha512-Agajik9SBGiKD7FPXE+ExW6x3MgA/dUdpZnXa9y1tyfE4lKQx+eQiknSdrBnWPeqa9wL0AOvkhghmYhpVkyqkA==}
+ /@esbuild/darwin-x64/0.16.14:
+ resolution: {integrity: sha512-KV1E01eC2hGYA2qzFDRCK4wdZCRUvMwCNcobgpiiOzp5QXpJBqFPdxI69j8vvzuU7oxFXDgANwEkXvpeQqyOyg==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@esbuild/freebsd-arm64/0.16.13:
- resolution: {integrity: sha512-KxMO3/XihBcHM+xQUM6nQZO1SgQuOsd1DCnKF1a4SIf/i5VD45vrqN3k8ePgFrEbMi7m5JeGmvNqwJXinF0a4Q==}
+ /@esbuild/freebsd-arm64/0.16.14:
+ resolution: {integrity: sha512-xRM1RQsazSvL42BNa5XC7ytD4ZDp0ZyJcH7aB0SlYUcHexJUKiDNKR7dlRVlpt6W0DvoRPU2nWK/9/QWS4u2fw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
optional: true
- /@esbuild/freebsd-x64/0.16.13:
- resolution: {integrity: sha512-Ez15oqV1vwvZ30cVLeBW14BsWq/fdWNQGMOxxqaSJVQVLqHhvgfQ7gxGDiN9tpJdeQhqJO+Q0r02/Tce5+USNg==}
+ /@esbuild/freebsd-x64/0.16.14:
+ resolution: {integrity: sha512-7ALTAn6YRRf1O6fw9jmn0rWmOx3XfwDo7njGtjy1LXhDGUjTY/vohEPM3ii5MQ411vJv1r498EEx2aBQTJcrEw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
optional: true
- /@esbuild/linux-arm/0.16.13:
- resolution: {integrity: sha512-18dLd2L3mda+iFj6sswyBMSh2UwniamD9M4DwPv8VM+9apRFlQ5IGKxBdumnTuOI4NvwwAernmUseWhYQ9k+rg==}
+ /@esbuild/linux-arm/0.16.14:
+ resolution: {integrity: sha512-X6xULug66ulrr4IzrW7qq+eq9n4MtEyagdWvj4o4cmWr+JXOT47atjpDF9j5M2zHY0UQBmqnHhwl+tXpkpIb2w==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-arm64/0.16.13:
- resolution: {integrity: sha512-qi5n7KwcGViyJeZeQnu8fB6dC3Mlm5PGaqSv2HhQDDx/MPvVfQGNMcv7zcBL4qk3FkuWhGVwXkjQ76x7R0PWlA==}
+ /@esbuild/linux-arm64/0.16.14:
+ resolution: {integrity: sha512-TLh2OcbBUQcMYRH4GbiDkDZfZ4t1A3GgmeXY27dHSI6xrU7IkO00MGBiJySmEV6sH3Wa6pAN6UtaVL0DwkGW4Q==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ia32/0.16.13:
- resolution: {integrity: sha512-2489Xad9sr+6GD7nB913fUqpCsSwVwgskkQTq4Or2mZntSPYPebyJm8l1YruHo7oqYMTGV6RiwGE4gRo3H+EPQ==}
+ /@esbuild/linux-ia32/0.16.14:
+ resolution: {integrity: sha512-oBZkcZ56UZDFCAfE3Fd/Jgy10EoS7Td77NzNGenM+HSY8BkdQAcI9VF9qgwdOLZ+tuftWD7UqZ26SAhtvA3XhA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
@@ -5948,96 +5949,96 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-loong64/0.16.13:
- resolution: {integrity: sha512-x8KplRu9Y43Px8I9YS+sPBwQ+fw44Mvp2BPVADopKDWz+h3fcj1BvRU58kxb89WObmwKX9sWdtYzepL4Fmx03A==}
+ /@esbuild/linux-loong64/0.16.14:
+ resolution: {integrity: sha512-udz/aEHTcuHP+xdWOJmZ5C9RQXHfZd/EhCnTi1Hfay37zH3lBxn/fNs85LA9HlsniFw2zccgcbrrTMKk7Cn1Qg==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-mips64el/0.16.13:
- resolution: {integrity: sha512-qhhdWph9FLwD9rVVC/nUf7k2U4NZIA6/mGx0B7+O6PFV0GjmPA2E3zDQ4NUjq9P26E0DeAZy9akH9dYcUBRU7A==}
+ /@esbuild/linux-mips64el/0.16.14:
+ resolution: {integrity: sha512-kJ2iEnikUOdC1SiTGbH0fJUgpZwa0ITDTvj9EHf9lm3I0hZ4Yugsb3M6XSl696jVxrEocLe519/8CbSpQWFSrg==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-ppc64/0.16.13:
- resolution: {integrity: sha512-cVWAPKsrRVxI1jCeJHnYSbE3BrEU+pZTZK2gfao9HRxuc+3m4+RLfs3EVEpGLmMKEcWfVCB9wZ3yNxnknutGKQ==}
+ /@esbuild/linux-ppc64/0.16.14:
+ resolution: {integrity: sha512-kclKxvZvX5YhykwlJ/K9ljiY4THe5vXubXpWmr7q3Zu3WxKnUe1VOZmhkEZlqtnJx31GHPEV4SIG95IqTdfgfg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-riscv64/0.16.13:
- resolution: {integrity: sha512-Agb7dbRyZWnmPn5Vvf0eyqaEUqSsaIUwwyInu2EoFTaIDRp093QU2M5alUyOooMLkRbD1WvqQNwx08Z/g+SAcQ==}
+ /@esbuild/linux-riscv64/0.16.14:
+ resolution: {integrity: sha512-fdwP9Dc+Kx/cZwp9T9kNqjAE/PQjfrxbio4rZ3XnC3cVvZBjuxpkiyu/tuCwt6SbAK5th6AYNjFdEV9kGC020A==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-s390x/0.16.13:
- resolution: {integrity: sha512-AqRBIrc/+kl08ahliNG+EyU+j41wIzQfwBTKpi80cCDiYvYFPuXjvzZsD9muiu58Isj0RVni9VgC4xK/AnSW4g==}
+ /@esbuild/linux-s390x/0.16.14:
+ resolution: {integrity: sha512-++fw3P4fQk9nqvdzbANRqimKspL8pDCnSpXomyhV7V/ISha/BZIYvZwLBWVKp9CVWKwWPJ4ktsezuLIvlJRHqA==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/linux-x64/0.16.13:
- resolution: {integrity: sha512-S4wn2BimuhPcoArRtVrdHUKIymCCZcYAXQE47kUiX4yrUrEX2/ifn5eKNbZ5c1jJKUlh1gC2ESIN+iw3wQax3g==}
+ /@esbuild/linux-x64/0.16.14:
+ resolution: {integrity: sha512-TomtswAuzBf2NnddlrS4W01Tv85RM9YtATB3OugY6On0PLM4Ksz5qvQKVAjtzPKoLgL1FiZtfc8mkZc4IgoMEA==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@esbuild/netbsd-x64/0.16.13:
- resolution: {integrity: sha512-2c8JWgfUMlQHTdaR5X3xNMwqOyad8kgeCupuVkdm3QkUOzGREjlTETQsK6oHifocYzDCo9FeKcUwsK356SdR+g==}
+ /@esbuild/netbsd-x64/0.16.14:
+ resolution: {integrity: sha512-U06pfx8P5CqyoPNfqIJmnf+5/r4mJ1S62G4zE6eOjS59naQcxi6GnscUCPH3b+hRG0qdKoGX49RAyiqW+M9aSw==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
optional: true
- /@esbuild/openbsd-x64/0.16.13:
- resolution: {integrity: sha512-Bwh+PmKD/LK+xBjqIpnYnKYj0fIyQJ0YpRxsn0F+WfzvQ2OA+GKDlf8AHosiCns26Q4Dje388jQVwfOBZ1GaFw==}
+ /@esbuild/openbsd-x64/0.16.14:
+ resolution: {integrity: sha512-/Jl8XVaWEZNu9rZw+n792GIBupQwHo6GDoapHSb/2xp/Ku28eK6QpR2O9cPBkzHH4OOoMH0LB6zg/qczJ5TTGg==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
optional: true
- /@esbuild/sunos-x64/0.16.13:
- resolution: {integrity: sha512-8wwk6f9XGnhrF94/DBdFM4Xm1JeCyGTCj67r516VS9yvBVQf3Rar54L+XPVDs/oZOokwH+XsktrgkuTMAmjntg==}
+ /@esbuild/sunos-x64/0.16.14:
+ resolution: {integrity: sha512-2iI7D34uTbDn/TaSiUbEHz+fUa8KbN90vX5yYqo12QGpu6T8Jl+kxODsWuMCwoTVlqUpwfPV22nBbFPME9OPtw==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
optional: true
- /@esbuild/win32-arm64/0.16.13:
- resolution: {integrity: sha512-Jmwbp/5ArLCiRAHC33ODfcrlIcbP/exXkOEUVkADNJC4e/so2jm+i8IQFvVX/lA2GWvK3GdgcN0VFfp9YITAbg==}
+ /@esbuild/win32-arm64/0.16.14:
+ resolution: {integrity: sha512-SjlM7AHmQVTiGBJE/nqauY1aDh80UBsXZ94g4g60CDkrDMseatiqALVcIuElg4ZSYzJs8hsg5W6zS2zLpZTVgg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-ia32/0.16.13:
- resolution: {integrity: sha512-AX6WjntGjhJHzrPSVvjMD7grxt41koHfAOx6lxLorrpDwwIKKPaGDASPZgvFIZHTbwhOtILW6vAXxYPDsKpDJA==}
+ /@esbuild/win32-ia32/0.16.14:
+ resolution: {integrity: sha512-z06t5zqk8ak0Xom5HG81z2iOQ1hNWYsFQp3sczVLVx+dctWdgl80tNRyTbwjaFfui2vFO12dfE3trCTvA+HO4g==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@esbuild/win32-x64/0.16.13:
- resolution: {integrity: sha512-A+U4gM6OOkPS03UgVU08GTpAAAxPsP/8Z4FmneGo4TaVSD99bK9gVJXlqUEPMO/htFXEAht2O6pX4ErtLY5tVg==}
+ /@esbuild/win32-x64/0.16.14:
+ resolution: {integrity: sha512-ED1UpWcM6lAbalbbQ9TrGqJh4Y9TaASUvu8bI/0mgJcxhSByJ6rbpgqRhxYMaQ682WfA71nxUreaTO7L275zrw==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
@@ -6682,7 +6683,7 @@ packages:
slash: 3.0.0
dev: true
- /@rollup/plugin-babel/5.3.1_quedi3p7womesqmjrcxptomfpa:
+ /@rollup/plugin-babel/5.3.1_3dsfpkpoyvuuxyfgdbpn4j4uzm:
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
peerDependencies:
@@ -6697,7 +6698,7 @@ packages:
rollup:
optional: true
dependencies:
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/helper-module-imports': 7.18.6
'@rollup/pluginutils': 3.1.0_rollup@2.79.1
rollup: 2.79.1
@@ -6822,12 +6823,12 @@ packages:
picomatch: 2.3.1
dev: false
- /@solidjs/router/0.5.1_solid-js@1.6.7:
+ /@solidjs/router/0.5.1_solid-js@1.6.8:
resolution: {integrity: sha512-igyrwUqm/9T26Lb6l7oXwpc4lLUVqbhbN92wOL3NgLoLVmkQlUNTZciuAe+Su8XeJXlrWjl6oxDJDLt+6pws/g==}
peerDependencies:
solid-js: ^1.5.3
dependencies:
- solid-js: 1.6.7
+ solid-js: 1.6.8
dev: false
/@surma/rollup-plugin-off-main-thread/2.2.3:
@@ -7536,9 +7537,9 @@ packages:
vite:
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/plugin-transform-typescript': 7.20.7_@babel+core@7.20.7
- '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/plugin-transform-typescript': 7.20.7_@babel+core@7.20.12
+ '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.20.12
vite: 4.0.4
vue: 3.2.45
transitivePeerDependencies:
@@ -7583,7 +7584,7 @@ packages:
'@babel/helper-module-imports': 7.18.6
'@babel/plugin-syntax-jsx': 7.18.6
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.10
+ '@babel/traverse': 7.20.12
'@babel/types': 7.20.7
'@vue/babel-helper-vue-transform-on': 1.0.2
camelcase: 6.3.0
@@ -7594,13 +7595,13 @@ packages:
- supports-color
dev: false
- /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.20.7:
+ /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.20.12:
resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==}
dependencies:
'@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.7
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.10
+ '@babel/traverse': 7.20.12
'@babel/types': 7.20.7
'@vue/babel-helper-vue-transform-on': 1.0.2
camelcase: 6.3.0
@@ -7917,7 +7918,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.5
+ es-abstract: 1.21.0
es-shim-unscopables: 1.0.0
dev: true
@@ -7965,16 +7966,16 @@ packages:
engines: {node: ^14.18.0 || >=16.12.0, npm: '>=6.14.0'}
hasBin: true
dependencies:
- '@astrojs/compiler': 0.31.3
+ '@astrojs/compiler': 0.31.4
'@astrojs/language-server': 0.28.3
'@astrojs/markdown-remark': 1.2.0
'@astrojs/telemetry': 1.0.1
'@astrojs/webapi': 1.1.1
- '@babel/core': 7.20.7
+ '@babel/core': 7.20.12
'@babel/generator': 7.20.7
'@babel/parser': 7.20.7
- '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.7
- '@babel/traverse': 7.20.10
+ '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12
+ '@babel/traverse': 7.20.12
'@babel/types': 7.20.7
'@proload/core': 0.3.3
'@proload/plugin-tsm': 0.2.1_@proload+core@0.3.3
@@ -8064,13 +8065,17 @@ packages:
postcss: ^8.1.0
dependencies:
browserslist: 4.21.4
- caniuse-lite: 1.0.30001441
+ caniuse-lite: 1.0.30001442
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
postcss: 8.4.20
postcss-value-parser: 4.2.0
+ /available-typed-arrays/1.0.5:
+ resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
+ engines: {node: '>= 0.4'}
+
/babel-plugin-jsx-dom-expressions/0.35.10:
resolution: {integrity: sha512-2xELzEm6CR152zeNu3Cr02zch52eVRXV4iAtSSpukcmRltsSMyIrPv1Hm1xSp76IO3OOhhySOii24xvIvV1xfQ==}
peerDependencies:
@@ -8096,7 +8101,7 @@ packages:
resolve: 1.22.1
dev: false
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.7:
+ /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12:
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -8105,14 +8110,14 @@ packages:
optional: true
dependencies:
'@babel/compat-data': 7.20.10
- '@babel/core': 7.20.7
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.7:
+ /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.12:
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -8120,14 +8125,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
core-js-compat: 3.27.1
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.7:
+ /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12:
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -8135,8 +8140,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.20.7
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: false
@@ -8272,7 +8277,7 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001441
+ caniuse-lite: 1.0.30001442
electron-to-chromium: 1.4.284
node-releases: 2.0.8
update-browserslist-db: 1.0.10_browserslist@4.21.4
@@ -8352,8 +8357,8 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- /caniuse-lite/1.0.30001441:
- resolution: {integrity: sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==}
+ /caniuse-lite/1.0.30001442:
+ resolution: {integrity: sha512-239m03Pqy0hwxYPYR5JwOIxRJfLTWtle9FV8zosfV5pHg+/51uD4nxcUlM8+mWWGfwKtt8lJNHnD3cWw9VZ6ow==}
/canvas-confetti/1.6.0:
resolution: {integrity: sha512-ej+w/m8Jzpv9Z7W7uJZer14Ke8P2ogsjg4ZMGIuq4iqUOqY2Jq8BNW42iGmNfRwREaaEfFIczLuZZiEVSYNHAA==}
@@ -9180,26 +9185,31 @@ packages:
is-arrayish: 0.2.1
dev: true
- /es-abstract/1.20.5:
- resolution: {integrity: sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==}
+ /es-abstract/1.21.0:
+ resolution: {integrity: sha512-GUGtW7eXQay0c+PRq0sGIKSdaBorfVqsCMhGHo4elP7YVqZu9nCZS4UkK4gv71gOWNMra/PaSKD3ao1oWExO0g==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
+ es-set-tostringtag: 2.0.0
es-to-primitive: 1.2.1
function-bind: 1.1.1
function.prototype.name: 1.1.5
get-intrinsic: 1.1.3
get-symbol-description: 1.0.0
+ globalthis: 1.0.3
gopd: 1.0.1
has: 1.0.3
has-property-descriptors: 1.0.0
+ has-proto: 1.0.1
has-symbols: 1.0.3
internal-slot: 1.0.4
+ is-array-buffer: 3.0.0
is-callable: 1.2.7
is-negative-zero: 2.0.2
is-regex: 1.1.4
is-shared-array-buffer: 1.0.2
is-string: 1.0.7
+ is-typed-array: 1.1.10
is-weakref: 1.0.2
object-inspect: 1.12.2
object-keys: 1.1.1
@@ -9208,7 +9218,9 @@ packages:
safe-regex-test: 1.0.0
string.prototype.trimend: 1.0.6
string.prototype.trimstart: 1.0.6
+ typed-array-length: 1.0.4
unbox-primitive: 1.0.2
+ which-typed-array: 1.1.9
/es-module-lexer/0.10.5:
resolution: {integrity: sha512-+7IwY/kiGAacQfY+YBhKMvEmyAJnw5grTUgjG85Pe7vcUI/6b7pZjZG8nQ7+48YhzEAEqrEgD2dCz/JIK+AYvw==}
@@ -9218,6 +9230,13 @@ packages:
resolution: {integrity: sha512-fJg+1tiyEeS8figV+fPcPpm8WqJEflG3yPU0NOm5xMvrNkuiy7HzX/Ljng4Y0hAoiw4/3hQTCFYw+ub8+a2pRA==}
dev: false
+ /es-set-tostringtag/2.0.0:
+ resolution: {integrity: sha512-vZVAIWss0FcR/+a08s6e2/GjGjjYBCZJXDrOnj6l5kJCKhQvJs4cnVqUxkVepIhqHbKHm3uwOvPb8lRcqA3DSg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.1.3
+ has-tostringtag: 1.0.0
+
/es-shim-unscopables/1.0.0:
resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
dependencies:
@@ -9633,34 +9652,34 @@ packages:
esbuild-windows-64: 0.15.18
esbuild-windows-arm64: 0.15.18
- /esbuild/0.16.13:
- resolution: {integrity: sha512-oYwFdSEIoKM1oYzyem1osgKJAvg5447XF+05ava21fOtilyb2HeQQh26/74K4WeAk5dZmj/Mx10zUqUnI14jhA==}
+ /esbuild/0.16.14:
+ resolution: {integrity: sha512-6xAn3O6ZZyoxZAEkwfI9hw4cEqSr/o1ViJtnkvImVkblmUN65Md04o0S/7H1WNu1XGf1Cjij/on7VO4psIYjkw==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/android-arm': 0.16.13
- '@esbuild/android-arm64': 0.16.13
- '@esbuild/android-x64': 0.16.13
- '@esbuild/darwin-arm64': 0.16.13
- '@esbuild/darwin-x64': 0.16.13
- '@esbuild/freebsd-arm64': 0.16.13
- '@esbuild/freebsd-x64': 0.16.13
- '@esbuild/linux-arm': 0.16.13
- '@esbuild/linux-arm64': 0.16.13
- '@esbuild/linux-ia32': 0.16.13
- '@esbuild/linux-loong64': 0.16.13
- '@esbuild/linux-mips64el': 0.16.13
- '@esbuild/linux-ppc64': 0.16.13
- '@esbuild/linux-riscv64': 0.16.13
- '@esbuild/linux-s390x': 0.16.13
- '@esbuild/linux-x64': 0.16.13
- '@esbuild/netbsd-x64': 0.16.13
- '@esbuild/openbsd-x64': 0.16.13
- '@esbuild/sunos-x64': 0.16.13
- '@esbuild/win32-arm64': 0.16.13
- '@esbuild/win32-ia32': 0.16.13
- '@esbuild/win32-x64': 0.16.13
+ '@esbuild/android-arm': 0.16.14
+ '@esbuild/android-arm64': 0.16.14
+ '@esbuild/android-x64': 0.16.14
+ '@esbuild/darwin-arm64': 0.16.14
+ '@esbuild/darwin-x64': 0.16.14
+ '@esbuild/freebsd-arm64': 0.16.14
+ '@esbuild/freebsd-x64': 0.16.14
+ '@esbuild/linux-arm': 0.16.14
+ '@esbuild/linux-arm64': 0.16.14
+ '@esbuild/linux-ia32': 0.16.14
+ '@esbuild/linux-loong64': 0.16.14
+ '@esbuild/linux-mips64el': 0.16.14
+ '@esbuild/linux-ppc64': 0.16.14
+ '@esbuild/linux-riscv64': 0.16.14
+ '@esbuild/linux-s390x': 0.16.14
+ '@esbuild/linux-x64': 0.16.14
+ '@esbuild/netbsd-x64': 0.16.14
+ '@esbuild/openbsd-x64': 0.16.14
+ '@esbuild/sunos-x64': 0.16.14
+ '@esbuild/win32-arm64': 0.16.14
+ '@esbuild/win32-ia32': 0.16.14
+ '@esbuild/win32-x64': 0.16.14
/escalade/3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
@@ -10109,6 +10128,11 @@ packages:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
dev: true
+ /for-each/0.3.3:
+ resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ dependencies:
+ is-callable: 1.2.7
+
/form-data/3.0.1:
resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
engines: {node: '>= 6'}
@@ -10205,7 +10229,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.5
+ es-abstract: 1.21.0
functions-have-names: 1.2.3
/functions-have-names/1.2.3:
@@ -10360,7 +10384,6 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
define-properties: 1.1.4
- dev: false
/globalyzer/0.1.0:
resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
@@ -10483,6 +10506,10 @@ packages:
dependencies:
get-intrinsic: 1.1.3
+ /has-proto/1.0.1:
+ resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
+ engines: {node: '>= 0.4'}
+
/has-symbols/1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
@@ -10521,7 +10548,7 @@ packages:
'@types/hast': 2.3.4
'@types/parse5': 6.0.3
'@types/unist': 2.0.6
- hastscript: 7.1.0
+ hastscript: 7.2.0
property-information: 6.2.0
vfile: 5.3.6
vfile-location: 4.0.1
@@ -10662,8 +10689,8 @@ packages:
resolution: {integrity: sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg==}
dev: false
- /hastscript/7.1.0:
- resolution: {integrity: sha512-uBjaTTLN0MkCZxY/R2fWUOcu7FRtUVzKRO5P/RAfgsu3yFiMB1JWCO4AjeVkgHxAira1f2UecHK5WfS9QurlWA==}
+ /hastscript/7.2.0:
+ resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==}
dependencies:
'@types/hast': 2.3.4
comma-separated-tokens: 2.0.3
@@ -10864,6 +10891,12 @@ packages:
is-alphabetical: 2.0.1
is-decimal: 2.0.1
+ /is-array-buffer/3.0.0:
+ resolution: {integrity: sha512-TI2hnvT6dPUnn/jARFCJBKL1eeabAfLnKZ2lmW5Uh317s1Ii2IMroL1yMciEk/G+OETykVzlsH6x/L4q/avhgw==}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.1.3
+
/is-arrayish/0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
dev: true
@@ -11084,6 +11117,16 @@ packages:
dependencies:
has-symbols: 1.0.3
+ /is-typed-array/1.1.10:
+ resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.0
+
/is-unicode-supported/0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
@@ -13260,12 +13303,11 @@ packages:
fast-diff: 1.2.0
dev: true
- /prettier-plugin-astro/0.7.1:
- resolution: {integrity: sha512-ySeyXHIXNZpbqZCcj8eoWl6z2UDHYl6DPgN7z9E1HElG8aVlC2WQNjfcpcSBuF4jwwo+HHi44pun/Hlr+h8OsA==}
+ /prettier-plugin-astro/0.7.2:
+ resolution: {integrity: sha512-mmifnkG160BtC727gqoimoxnZT/dwr8ASxpoGGl6EHevhfblSOeu+pwH1LAm5Qu1MynizktztFujHHaijLCkww==}
engines: {node: ^14.15.0 || >=16.0.0, pnpm: '>=7.14.0'}
- requiresBuild: true
dependencies:
- '@astrojs/compiler': 0.31.3
+ '@astrojs/compiler': 0.31.4
prettier: 2.8.1
sass-formatter: 0.7.5
synckit: 0.8.4
@@ -14193,8 +14235,8 @@ packages:
smart-buffer: 4.2.0
dev: true
- /solid-js/1.6.7:
- resolution: {integrity: sha512-yLLw9mtTqPEEPxmZfAHZi3DyP25XnQZ42+mDYuzhAdeqa+8EDuNKyxOXKY7PEFddCqp1G2UQI5O3JiJtE7yxBQ==}
+ /solid-js/1.6.8:
+ resolution: {integrity: sha512-+X5rf4bL3Il/LI2pn6O2d63D/KyG8Shxj3DM6violSPOhRgm5ln37Pq6uVDAvJcmsObOBeGOjXAwZvqwyZjisg==}
dependencies:
csstype: 3.1.1
@@ -14316,7 +14358,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.5
+ es-abstract: 1.21.0
get-intrinsic: 1.1.3
has-symbols: 1.0.3
internal-slot: 1.0.4
@@ -14329,14 +14371,14 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.5
+ es-abstract: 1.21.0
/string.prototype.trimstart/1.0.6:
resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.5
+ es-abstract: 1.21.0
/string_decoder/0.10.31:
resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
@@ -14935,6 +14977,13 @@ packages:
mime-types: 2.1.35
dev: true
+ /typed-array-length/1.0.4:
+ resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
+ dependencies:
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ is-typed-array: 1.1.10
+
/typescript/4.7.4:
resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==}
engines: {node: '>=4.2.0'}
@@ -15376,7 +15425,7 @@ packages:
terser:
optional: true
dependencies:
- esbuild: 0.16.13
+ esbuild: 0.16.14
postcss: 8.4.20
resolve: 1.22.1
rollup: 3.9.1
@@ -15409,7 +15458,7 @@ packages:
optional: true
dependencies:
'@types/node': 14.18.36
- esbuild: 0.16.13
+ esbuild: 0.16.14
postcss: 8.4.20
resolve: 1.22.1
rollup: 3.9.1
@@ -15442,7 +15491,7 @@ packages:
terser:
optional: true
dependencies:
- esbuild: 0.16.13
+ esbuild: 0.16.14
postcss: 8.4.20
resolve: 1.22.1
rollup: 3.9.1
@@ -15664,6 +15713,17 @@ packages:
load-yaml-file: 0.2.0
path-exists: 4.0.0
+ /which-typed-array/1.1.9:
+ resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.0
+ is-typed-array: 1.1.10
+
/which/1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
@@ -15721,10 +15781,10 @@ packages:
engines: {node: '>=10.0.0'}
dependencies:
'@apideck/better-ajv-errors': 0.3.6_ajv@8.12.0
- '@babel/core': 7.20.7
- '@babel/preset-env': 7.20.2_@babel+core@7.20.7
+ '@babel/core': 7.20.12
+ '@babel/preset-env': 7.20.2_@babel+core@7.20.12
'@babel/runtime': 7.20.7
- '@rollup/plugin-babel': 5.3.1_quedi3p7womesqmjrcxptomfpa
+ '@rollup/plugin-babel': 5.3.1_3dsfpkpoyvuuxyfgdbpn4j4uzm
'@rollup/plugin-node-resolve': 11.2.1_rollup@2.79.1
'@rollup/plugin-replace': 2.4.2_rollup@2.79.1
'@surma/rollup-plugin-off-main-thread': 2.2.3
@@ -16089,5 +16149,5 @@ packages:
name: '@test/solid-jsx-component'
version: 0.0.0
dependencies:
- solid-js: 1.6.7
+ solid-js: 1.6.8
dev: false