diff --git a/.changeset/gentle-adults-move.md b/.changeset/gentle-adults-move.md new file mode 100644 index 000000000000..0a2ffac92d3d --- /dev/null +++ b/.changeset/gentle-adults-move.md @@ -0,0 +1,9 @@ +--- +'@modern-js/builder-rspack-provider': patch +'@modern-js/builder-shared': patch +'@modern-js/builder': patch +--- + +feat(rspack-provider): support security.checkSyntax in Rspack + +feat(rspack-provider): 在使用 Rspack 构建时支持 security.checkSyntax 配置项 diff --git a/packages/builder/builder-rspack-provider/src/config/defaults.ts b/packages/builder/builder-rspack-provider/src/config/defaults.ts index 5110d93ae046..770e30e8d710 100644 --- a/packages/builder/builder-rspack-provider/src/config/defaults.ts +++ b/packages/builder/builder-rspack-provider/src/config/defaults.ts @@ -22,6 +22,7 @@ export const createDefaultConfig = () => output: getDefaultOutputConfig(), tools: {}, security: { + checkSyntax: false, nonce: '', // sri: false }, diff --git a/packages/builder/builder-rspack-provider/src/shared/plugin.ts b/packages/builder/builder-rspack-provider/src/shared/plugin.ts index 3dfa302a5797..7b5a9026d5ce 100644 --- a/packages/builder/builder-rspack-provider/src/shared/plugin.ts +++ b/packages/builder/builder-rspack-provider/src/shared/plugin.ts @@ -43,5 +43,6 @@ export const applyDefaultPlugins = (plugins: Plugins) => plugins.inlineChunk(), plugins.bundleAnalyzer(), plugins.assetsRetry(), + plugins.checkSyntax(), import('../plugins/fallback').then(m => m.builderPluginFallback()), // fallback should be the last plugin ]); diff --git a/packages/builder/builder-rspack-provider/src/types/config/security.ts b/packages/builder/builder-rspack-provider/src/types/config/security.ts index b7229d30a6f6..9b35a8611f85 100644 --- a/packages/builder/builder-rspack-provider/src/types/config/security.ts +++ b/packages/builder/builder-rspack-provider/src/types/config/security.ts @@ -1,16 +1,8 @@ -// Todo support security.sri configuration -/** - * Currently, rspack does not support the security.sri configuration. - * But it should because it's a shared configuration. - */ -// import type { SharedSecurityConfig } from '@modern-js/builder-shared'; +import type { + SharedSecurityConfig, + NormalizedSharedSecurityConfig, +} from '@modern-js/builder-shared'; -// export type SecurityConfig = SharedSecurityConfig; +export type SecurityConfig = SharedSecurityConfig; -// export type NormalizedSecurityConfig = Required; - -export interface SecurityConfig { - nonce?: string; -} - -export type NormalizedSecurityConfig = Required; +export type NormalizedSecurityConfig = NormalizedSharedSecurityConfig; diff --git a/packages/builder/builder-shared/package.json b/packages/builder/builder-shared/package.json index 0db846a96a1f..c0d0ffe6d2a7 100644 --- a/packages/builder/builder-shared/package.json +++ b/packages/builder/builder-shared/package.json @@ -96,6 +96,10 @@ "@modern-js/types": "workspace:*", "@modern-js/utils": "workspace:*", "@babel/core": "^7.21.8", + "acorn": "^8.8.1", + "caniuse-lite": "^1.0.30001451", + "cheerio": "1.0.0-rc.12", + "source-map": "^0.7.4", "webpack-sources": "^3.2.3", "zod": "^3.20.2", "zod-validation-error": "^0.3.0" @@ -104,6 +108,7 @@ "@babel/preset-env": "^7.21.5", "@scripts/vitest-config": "workspace:*", "@types/babel__core": "^7.20.0", + "@types/caniuse-lite": "^1.0.1", "@types/node": "^14", "html-webpack-plugin": "5.5.0", "terser": "^5.14.1", diff --git a/packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/generateError.ts b/packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/generateError.ts similarity index 100% rename from packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/generateError.ts rename to packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/generateError.ts diff --git a/packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/generateHtmlScripts.ts b/packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/generateHtmlScripts.ts similarity index 100% rename from packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/generateHtmlScripts.ts rename to packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/generateHtmlScripts.ts diff --git a/packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/getEcmaVersion.ts b/packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/getEcmaVersion.ts similarity index 100% rename from packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/getEcmaVersion.ts rename to packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/getEcmaVersion.ts diff --git a/packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/index.ts b/packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/index.ts similarity index 100% rename from packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/index.ts rename to packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/index.ts diff --git a/packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/printErrors.ts b/packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/printErrors.ts similarity index 97% rename from packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/printErrors.ts rename to packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/printErrors.ts index 1c1b28fb9fdf..4722d38c7890 100644 --- a/packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/printErrors.ts +++ b/packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/printErrors.ts @@ -1,6 +1,6 @@ import { SyntaxError } from './type'; import chalk from '@modern-js/utils/chalk'; -import { logger } from '@modern-js/builder-shared'; +import { logger } from '../../../logger'; type Error = { source: string; diff --git a/packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/type.ts b/packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/type.ts similarity index 100% rename from packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/type.ts rename to packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/type.ts diff --git a/packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/utils.ts b/packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/utils.ts similarity index 100% rename from packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/helpers/utils.ts rename to packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/helpers/utils.ts diff --git a/packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/index.ts b/packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/index.ts similarity index 83% rename from packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/index.ts rename to packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/index.ts index 6f8fea8ad52e..9f8b16fb3bb5 100644 --- a/packages/builder/builder-webpack-provider/src/webpackPlugins/CheckSyntaxPlugin/index.ts +++ b/packages/builder/builder-shared/src/plugins/CheckSyntaxPlugin/index.ts @@ -11,7 +11,8 @@ import { checkIsExcludeSource, CheckSyntaxExclude, } from './helpers'; -import { CheckSyntaxOptions, webpack } from '../../types'; +import { CheckSyntaxOptions } from '../../types'; +import type { Compiler, Compilation } from 'webpack'; const HTML_REGEX = /\.html$/; const JS_REGEX = /\.js$/; @@ -31,14 +32,18 @@ export class CheckSyntaxPlugin { this.ecmaVersion = getEcmaVersion(this.targets); } - apply(complier: webpack.Compiler) { + apply(complier: Compiler) { complier.hooks.afterEmit.tapPromise( CheckSyntaxPlugin.name, - async (compilation: webpack.Compilation) => { + async (compilation: Compilation) => { const outputPath = compilation.outputOptions.path || 'dist'; - const emittedAssets = Array.from(compilation.emittedAssets).map(p => - resolve(outputPath, p), - ); + // not support compilation.emittedAssets in Rspack + const emittedAssets = compilation + .getAssets() + .filter(a => a.source) + .map(a => a.name) + .map(p => resolve(outputPath, p)); + const files = emittedAssets.filter( assets => HTML_REGEX.test(assets) || JS_REGEX.test(assets), ); diff --git a/packages/builder/builder-shared/src/plugins/index.ts b/packages/builder/builder-shared/src/plugins/index.ts index 907a420d6a42..41c3a61d618b 100644 --- a/packages/builder/builder-shared/src/plugins/index.ts +++ b/packages/builder/builder-shared/src/plugins/index.ts @@ -7,3 +7,4 @@ export { HtmlAppIconPlugin } from './HtmlAppIconPlugin'; export { HtmlFaviconUrlPlugin, type FaviconUrls } from './HtmlFaviconUrlPlugin'; export { InlineChunkHtmlPlugin } from './InlineChunkHtmlPlugin'; export { AssetsRetryPlugin } from './AssetsRetryPlugin'; +export { CheckSyntaxPlugin } from './CheckSyntaxPlugin'; diff --git a/packages/builder/builder-shared/src/schema/security.ts b/packages/builder/builder-shared/src/schema/security.ts index b5081f9e2272..787b275b2a3a 100644 --- a/packages/builder/builder-shared/src/schema/security.ts +++ b/packages/builder/builder-shared/src/schema/security.ts @@ -11,7 +11,16 @@ export const SriOptionsSchema: ZodType = z.partialObj({ }); export const sharedSecurityConfigSchema = z.partialObj({ - sri: z.union([SriOptionsSchema, z.boolean()]), + nonce: z.string(), + checkSyntax: z.union([ + z.boolean(), + z.object({ + targets: z.array(z.string()), + exclude: z.optional( + z.union([z.instanceof(RegExp), z.array(z.instanceof(RegExp))]), + ), + }), + ]), }); // eslint-disable-next-line @typescript-eslint/no-unused-vars diff --git a/packages/builder/builder-shared/src/test-stub/helper.ts b/packages/builder/builder-shared/src/test-stub/helper.ts index fc5b424539b4..2b7a40a6aa1b 100644 --- a/packages/builder/builder-shared/src/test-stub/helper.ts +++ b/packages/builder/builder-shared/src/test-stub/helper.ts @@ -29,4 +29,5 @@ export const mockBuilderPlugins: Plugins = { svg: genMockPlugin('builder-plugin-svg'), html: genMockPlugin('builder-plugin-html'), antd: genMockPlugin('antd'), + checkSyntax: genMockPlugin('builder-plugin-check-syntax'), }; diff --git a/packages/builder/builder-shared/src/types/config/index.ts b/packages/builder/builder-shared/src/types/config/index.ts index 0b68e1f51c82..6004f986c888 100644 --- a/packages/builder/builder-shared/src/types/config/index.ts +++ b/packages/builder/builder-shared/src/types/config/index.ts @@ -8,7 +8,10 @@ import type { SharedSourceConfig, NormalizedSharedSourceConfig, } from './source'; -import type { SharedSecurityConfig } from './security'; +import type { + SharedSecurityConfig, + NormalizedSharedSecurityConfig, +} from './security'; import type { SharedPerformanceConfig, NormalizedSharedPerformanceConfig, @@ -37,7 +40,7 @@ export type SharedNormalizedConfig = DeepReadonly<{ html: NormalizedSharedHtmlConfig; source: NormalizedSharedSourceConfig; output: NormalizedSharedOutputConfig; - security?: SharedSecurityConfig; + security: NormalizedSharedSecurityConfig; performance: NormalizedSharedPerformanceConfig; tools: SharedToolsConfig; }>; diff --git a/packages/builder/builder-shared/src/types/config/security.ts b/packages/builder/builder-shared/src/types/config/security.ts index 93fb4b0a6e18..d956b189756c 100644 --- a/packages/builder/builder-shared/src/types/config/security.ts +++ b/packages/builder/builder-shared/src/types/config/security.ts @@ -4,12 +4,14 @@ export type SriOptions = { hashLoading?: 'eager' | 'lazy'; }; +export interface CheckSyntaxOptions { + targets: string[]; + exclude?: RegExp | Array; +} + export interface SharedSecurityConfig { - /** - * Adding an integrity attribute (`integrity`) to sub-resources introduced by HTML allows the browser to - * verify the integrity of the introduced resource, thus preventing tampering with the downloaded resource. - */ - sri?: SriOptions | boolean; + /** Analyze the product for the presence of high-level syntax that is not compatible in the specified environment */ + checkSyntax?: boolean | CheckSyntaxOptions; /** * Adding an nonce attribute to sub-resources introduced by HTML allows the browser to @@ -17,3 +19,5 @@ export interface SharedSecurityConfig { */ nonce?: string; } + +export type NormalizedSharedSecurityConfig = Required; diff --git a/packages/builder/builder-shared/src/types/plugin.ts b/packages/builder/builder-shared/src/types/plugin.ts index 6da5fdc9902d..ebcdc68b8748 100644 --- a/packages/builder/builder-shared/src/types/plugin.ts +++ b/packages/builder/builder-shared/src/types/plugin.ts @@ -52,6 +52,7 @@ export type Plugins = { svg: PluginsFn; html: PluginsFn; antd: PluginsFn; + checkSyntax: PluginsFn; }; /** diff --git a/packages/builder/builder-webpack-provider/package.json b/packages/builder/builder-webpack-provider/package.json index 53265241365c..9b0b329d0d0e 100644 --- a/packages/builder/builder-webpack-provider/package.json +++ b/packages/builder/builder-webpack-provider/package.json @@ -96,9 +96,6 @@ "@modern-js/types": "workspace:*", "@modern-js/utils": "workspace:*", "@pmmmwh/react-refresh-webpack-plugin": "0.5.9", - "acorn": "^8.8.1", - "caniuse-lite": "^1.0.30001451", - "cheerio": "1.0.0-rc.12", "css-minimizer-webpack-plugin": "5.0.0", "cssnano": "6.0.0", "fork-ts-checker-webpack-plugin": "8.0.0", @@ -106,7 +103,6 @@ "mini-css-extract-plugin": "2.7.0", "postcss": "8.4.21", "react-refresh": "0.14.0", - "source-map": "^0.7.4", "style-loader": "3.3.1", "terser-webpack-plugin": "5.3.6", "ts-loader": "9.4.1", @@ -115,7 +111,6 @@ "devDependencies": { "@modern-js/e2e": "workspace:*", "@scripts/vitest-config": "workspace:*", - "@types/babel__core": "^7.20.0", "@types/caniuse-lite": "^1.0.1", "@types/node": "^14", "antd": "4", diff --git a/packages/builder/builder-webpack-provider/src/config/validate/security.ts b/packages/builder/builder-webpack-provider/src/config/validate/security.ts index b969b7f83deb..964b6111449b 100644 --- a/packages/builder/builder-webpack-provider/src/config/validate/security.ts +++ b/packages/builder/builder-webpack-provider/src/config/validate/security.ts @@ -1,17 +1,21 @@ -import { sharedSecurityConfigSchema, z } from '@modern-js/builder-shared'; +import { + sharedSecurityConfigSchema, + z, + SriOptions, +} from '@modern-js/builder-shared'; import type { SecurityConfig } from '../../types'; +export const SriOptionsSchema: z.ZodType = z.partialObj({ + hashFuncNames: z.array(z.string()).min(1) as unknown as z.ZodType< + [string, ...string[]] + >, + enabled: z.literals(['auto', true, false]), + hashLoading: z.literals(['eager', 'lazy']), +}); + export const securityConfigSchema: z.ZodType = sharedSecurityConfigSchema .extend({ - checkSyntax: z.union([ - z.boolean(), - z.object({ - targets: z.array(z.string()), - exclude: z.optional( - z.union([z.instanceof(RegExp), z.array(z.instanceof(RegExp))]), - ), - }), - ]), + sri: z.union([SriOptionsSchema, z.boolean()]), }) .partial(); diff --git a/packages/builder/builder-webpack-provider/src/shared/plugin.ts b/packages/builder/builder-webpack-provider/src/shared/plugin.ts index 70dc04280400..02fae8e54d92 100644 --- a/packages/builder/builder-webpack-provider/src/shared/plugin.ts +++ b/packages/builder/builder-webpack-provider/src/shared/plugin.ts @@ -36,7 +36,7 @@ export const applyDefaultPlugins = (plugins: Plugins) => plugins.antd(), plugins.svg(), import('../plugins/pug').then(m => m.builderPluginPug()), - import('../plugins/checkSyntax').then(m => m.builderPluginCheckSyntax()), + plugins.checkSyntax(), import('../plugins/copy').then(m => m.builderPluginCopy()), plugins.font(), plugins.image(), diff --git a/packages/builder/builder-webpack-provider/src/types/config/security.ts b/packages/builder/builder-webpack-provider/src/types/config/security.ts index 239ae468c3a8..a2789473dba4 100644 --- a/packages/builder/builder-webpack-provider/src/types/config/security.ts +++ b/packages/builder/builder-webpack-provider/src/types/config/security.ts @@ -1,13 +1,16 @@ -import type { SharedSecurityConfig } from '@modern-js/builder-shared'; - -export interface CheckSyntaxOptions { - targets: string[]; - exclude?: RegExp | Array; -} +import type { + SriOptions, + SharedSecurityConfig, + NormalizedSharedSecurityConfig, +} from '@modern-js/builder-shared'; export type SecurityConfig = SharedSecurityConfig & { - /** Analyze the product for the presence of high-level syntax that is not compatible in the specified environment */ - checkSyntax?: boolean | CheckSyntaxOptions; + /** + * Adding an integrity attribute (`integrity`) to sub-resources introduced by HTML allows the browser to + * verify the integrity of the introduced resource, thus preventing tampering with the downloaded resource. + */ + sri?: SriOptions | boolean; }; -export type NormalizedSecurityConfig = Required; +export type NormalizedSecurityConfig = NormalizedSharedSecurityConfig & + Required>; diff --git a/packages/builder/builder-webpack-provider/tests/plugins/checkSyntax.test.ts b/packages/builder/builder-webpack-provider/tests/plugins/checkSyntax.test.ts deleted file mode 100644 index eaa8c8fd4a8c..000000000000 --- a/packages/builder/builder-webpack-provider/tests/plugins/checkSyntax.test.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { describe, expect, it } from 'vitest'; -import { builderPluginCheckSyntax } from '@/plugins/checkSyntax'; -import { createStubBuilder } from '@/stub/builder'; - -describe.skip('plugins/checkSyntax', () => { - it('should set WebpackCheckSyntax plugin', async () => { - process.env.NODE_ENV = 'production'; - const builder = await createStubBuilder({ - plugins: [builderPluginCheckSyntax()], - builderConfig: { - security: { - checkSyntax: true, - }, - }, - }); - - const config = await builder.unwrapWebpackConfig(); - expect(config).toMatchSnapshot(); - process.env.NODE_ENV = 'test'; - }); -}); diff --git a/packages/builder/builder-webpack-provider/src/plugins/checkSyntax.ts b/packages/builder/builder/src/plugins/checkSyntax.ts similarity index 79% rename from packages/builder/builder-webpack-provider/src/plugins/checkSyntax.ts rename to packages/builder/builder/src/plugins/checkSyntax.ts index b727223f856b..772e7d6a76bb 100644 --- a/packages/builder/builder-webpack-provider/src/plugins/checkSyntax.ts +++ b/packages/builder/builder/src/plugins/checkSyntax.ts @@ -3,15 +3,16 @@ import { BuilderTarget, DEFAULT_BROWSERSLIST, getBrowserslistWithDefault, + DefaultBuilderPlugin, + SharedNormalizedConfig, } from '@modern-js/builder-shared'; -import type { BuilderPlugin, NormalizedConfig } from '../types'; -export function builderPluginCheckSyntax(): BuilderPlugin { +export function builderPluginCheckSyntax(): DefaultBuilderPlugin { return { name: 'builder-plugin-check-syntax', setup(api) { - api.modifyWebpackChain(async (chain, { isProd, target }) => { + api.modifyBundlerChain(async (chain, { isProd, target }) => { const config = api.getNormalizedConfig(); const { checkSyntax } = config.security; @@ -29,9 +30,7 @@ export function builderPluginCheckSyntax(): BuilderPlugin { target, checkSyntax, ); - const { CheckSyntaxPlugin } = await import( - '../webpackPlugins/CheckSyntaxPlugin' - ); + const { CheckSyntaxPlugin } = await import('@modern-js/builder-shared'); chain.plugin(CheckSyntaxPlugin.name).use(CheckSyntaxPlugin, [ { targets, @@ -46,7 +45,7 @@ export function builderPluginCheckSyntax(): BuilderPlugin { async function getCheckTargets( builderContext: BuilderContext, - builderConfig: NormalizedConfig, + builderConfig: SharedNormalizedConfig, builderTarget: BuilderTarget, checkSyntax: { targets: string[] } | true, ) { diff --git a/packages/builder/builder/src/plugins/index.ts b/packages/builder/builder/src/plugins/index.ts index 53ac9177b5d0..b0cf42210e7f 100644 --- a/packages/builder/builder/src/plugins/index.ts +++ b/packages/builder/builder/src/plugins/index.ts @@ -36,4 +36,6 @@ export const plugins = { assetsRetry: () => import('./assetsRetry').then(m => m.builderPluginAssetsRetry()), antd: () => import('./antd').then(m => m.builderAntdPlugin()), + checkSyntax: () => + import('./checkSyntax').then(m => m.builderPluginCheckSyntax()), }; diff --git a/packages/builder/builder-webpack-provider/tests/plugins/__snapshots__/checkSyntax.test.ts.snap b/packages/builder/builder/tests/plugins/__snapshots__/checkSyntax.test.ts.snap similarity index 51% rename from packages/builder/builder-webpack-provider/tests/plugins/__snapshots__/checkSyntax.test.ts.snap rename to packages/builder/builder/tests/plugins/__snapshots__/checkSyntax.test.ts.snap index 5fbd96ae88e8..390ae7ea71ce 100644 --- a/packages/builder/builder-webpack-provider/tests/plugins/__snapshots__/checkSyntax.test.ts.snap +++ b/packages/builder/builder/tests/plugins/__snapshots__/checkSyntax.test.ts.snap @@ -1,11 +1,12 @@ // Vitest Snapshot v1 -exports[`plugins/checkSyntax > should set WebpackCheckSyntax plugin 1`] = ` +exports[`plugins/check-syntax > should add check-syntax plugin properly 1`] = ` { "plugins": [ CheckSyntaxPlugin { "ecmaVersion": 5, "errors": [], + "exclude": undefined, "targets": [ "> 0.01%", "not dead", @@ -15,3 +16,5 @@ exports[`plugins/checkSyntax > should set WebpackCheckSyntax plugin 1`] = ` ], } `; + +exports[`plugins/check-syntax > should not add check-syntax plugin when target node 1`] = `{}`; diff --git a/packages/builder/builder/tests/plugins/checkSyntax.test.ts b/packages/builder/builder/tests/plugins/checkSyntax.test.ts new file mode 100644 index 000000000000..936a2ce998b2 --- /dev/null +++ b/packages/builder/builder/tests/plugins/checkSyntax.test.ts @@ -0,0 +1,66 @@ +import { expect, describe, it } from 'vitest'; +import * as shared from '@modern-js/builder-shared'; +import { CHAIN_ID } from '@modern-js/utils'; +import { builderPluginCheckSyntax } from '@/plugins/checkSyntax'; + +describe('plugins/check-syntax', () => { + it('should add check-syntax plugin properly', async () => { + let modifyBundlerChainCb: any; + + const api: any = { + modifyBundlerChain: (fn: any) => { + modifyBundlerChainCb = fn; + }, + getNormalizedConfig: () => ({ + security: { + checkSyntax: true, + }, + }), + context: { + rootPath: __dirname, + }, + }; + + builderPluginCheckSyntax().setup(api); + + const chain = await shared.getBundlerChain(); + + await modifyBundlerChainCb(chain, { + CHAIN_ID, + isProd: true, + target: 'web', + }); + + expect(chain.toConfig()).toMatchSnapshot(); + }); + + it('should not add check-syntax plugin when target node', async () => { + let modifyBundlerChainCb: any; + + const api: any = { + modifyBundlerChain: (fn: any) => { + modifyBundlerChainCb = fn; + }, + getNormalizedConfig: () => ({ + security: { + checkSyntax: true, + }, + }), + context: { + rootPath: __dirname, + }, + }; + + builderPluginCheckSyntax().setup(api); + + const chain = await shared.getBundlerChain(); + + await modifyBundlerChainCb(chain, { + CHAIN_ID, + isProd: true, + target: 'node', + }); + + expect(chain.toConfig()).toMatchSnapshot(); + }); +}); diff --git a/packages/document/builder-doc/docs/en/config/security/checkSyntax.md b/packages/document/builder-doc/docs/en/config/security/checkSyntax.md index c809ee0add04..a8c5b04c576e 100644 --- a/packages/document/builder-doc/docs/en/config/security/checkSyntax.md +++ b/packages/document/builder-doc/docs/en/config/security/checkSyntax.md @@ -10,7 +10,6 @@ type CheckSyntax = ``` - **Default:** `false` -- **Bundler:** `only support webpack` Analyzes the build output files for the presence of high-level syntax that is incompatible with the current browserslist. If present, the details will be printed in the terminal. diff --git a/packages/document/builder-doc/docs/en/guide/advanced/rspack-start.mdx b/packages/document/builder-doc/docs/en/guide/advanced/rspack-start.mdx index 9c98a34e45b7..f44ee17f86ea 100644 --- a/packages/document/builder-doc/docs/en/guide/advanced/rspack-start.mdx +++ b/packages/document/builder-doc/docs/en/guide/advanced/rspack-start.mdx @@ -94,7 +94,9 @@ All configurations and capabilities under html are available within rspack. > Security related configurations in Builder. -All configurations and capabilities under security are **not supported** for use within rspack. +Unsupported configurations and capabilities include: + +- [source.sri](/api/config-security.html#securitysri) #### Dev Config diff --git a/packages/document/builder-doc/docs/zh/config/security/checkSyntax.md b/packages/document/builder-doc/docs/zh/config/security/checkSyntax.md index a882af0740e6..b9bc84187d5a 100644 --- a/packages/document/builder-doc/docs/zh/config/security/checkSyntax.md +++ b/packages/document/builder-doc/docs/zh/config/security/checkSyntax.md @@ -10,7 +10,6 @@ type CheckSyntax = ``` - **默认值:** `false` -- **打包工具:** `仅支持 webpack` 分析构建产物中是否存在当前浏览器范围下不兼容的高级语法。如果存在,会将详细信息打印在终端。 diff --git a/packages/document/builder-doc/docs/zh/guide/advanced/rspack-start.mdx b/packages/document/builder-doc/docs/zh/guide/advanced/rspack-start.mdx index 762a3969d973..7ece04117274 100644 --- a/packages/document/builder-doc/docs/zh/guide/advanced/rspack-start.mdx +++ b/packages/document/builder-doc/docs/zh/guide/advanced/rspack-start.mdx @@ -93,7 +93,9 @@ Builder 旨在消除不同打包工具之间的主要差异,帮助用户以较 > Builder 中与安全有关的配置。 -所有 security 下的配置项及能力**均不支持**在 Rspack 内使用。 +不支持的配置项及能力包括: + +- [source.sri](/api/config-security.html#securitysri) #### Dev Config diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1d58007572d5..c44acbd9f1c0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -131,8 +131,13 @@ importers: '@modern-js/utils': workspace:* '@scripts/vitest-config': workspace:* '@types/babel__core': ^7.20.0 + '@types/caniuse-lite': ^1.0.1 '@types/node': ^14 + acorn: ^8.8.1 + caniuse-lite: ^1.0.30001451 + cheerio: 1.0.0-rc.12 html-webpack-plugin: 5.5.0 + source-map: ^0.7.4 terser: ^5.14.1 typescript: ^5 webpack: ^5.82.1 @@ -146,6 +151,10 @@ importers: '@modern-js/server': link:../../server/server '@modern-js/types': link:../../toolkit/types '@modern-js/utils': link:../../toolkit/utils + acorn: 8.8.1 + caniuse-lite: 1.0.30001451 + cheerio: 1.0.0-rc.12 + source-map: 0.7.4 webpack-sources: 3.2.3 zod: 3.20.2 zod-validation-error: 0.3.0_zod@3.20.2 @@ -153,6 +162,7 @@ importers: '@babel/preset-env': 7.21.5_@babel+core@7.21.8 '@scripts/vitest-config': link:../../../scripts/vitest-config '@types/babel__core': 7.20.0 + '@types/caniuse-lite': 1.0.1 '@types/node': 14.18.35 html-webpack-plugin: 5.5.0_webpack@5.82.1 terser: 5.15.0 @@ -171,13 +181,9 @@ importers: '@modern-js/utils': workspace:* '@pmmmwh/react-refresh-webpack-plugin': 0.5.9 '@scripts/vitest-config': workspace:* - '@types/babel__core': ^7.20.0 '@types/caniuse-lite': ^1.0.1 '@types/node': ^14 - acorn: ^8.8.1 antd: '4' - caniuse-lite: ^1.0.30001451 - cheerio: 1.0.0-rc.12 css-minimizer-webpack-plugin: 5.0.0 cssnano: 6.0.0 fork-ts-checker-webpack-plugin: 8.0.0 @@ -187,7 +193,6 @@ importers: react: ^18 react-dom: ^18 react-refresh: 0.14.0 - source-map: ^0.7.4 style-loader: 3.3.1 terser-webpack-plugin: 5.3.6 ts-loader: 9.4.1 @@ -202,9 +207,6 @@ importers: '@modern-js/types': link:../../toolkit/types '@modern-js/utils': link:../../toolkit/utils '@pmmmwh/react-refresh-webpack-plugin': 0.5.9_2sh2n464chklv3oeyrys3t3hwy - acorn: 8.8.1 - caniuse-lite: 1.0.30001451 - cheerio: 1.0.0-rc.12 css-minimizer-webpack-plugin: 5.0.0_webpack@5.82.1 cssnano: 6.0.0_postcss@8.4.21 fork-ts-checker-webpack-plugin: 8.0.0_b73sldshwrlnhikvubwhfqvrfa @@ -212,7 +214,6 @@ importers: mini-css-extract-plugin: 2.7.0_webpack@5.82.1 postcss: 8.4.21 react-refresh: 0.14.0 - source-map: 0.7.4 style-loader: 3.3.1_webpack@5.82.1 terser-webpack-plugin: 5.3.6_webpack@5.82.1 ts-loader: 9.4.1_b73sldshwrlnhikvubwhfqvrfa @@ -220,7 +221,6 @@ importers: devDependencies: '@modern-js/e2e': link:../../toolkit/e2e '@scripts/vitest-config': link:../../../scripts/vitest-config - '@types/babel__core': 7.20.0 '@types/caniuse-lite': 1.0.1 '@types/node': 14.18.35 antd: 4.21.4_biqbaboplfbrettd7655fr4n2y @@ -5792,7 +5792,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 - '@jridgewell/trace-mapping': 0.3.17 + '@jridgewell/trace-mapping': 0.3.14 /@ant-design/colors/6.0.0: resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==} @@ -6038,6 +6038,10 @@ packages: dependencies: '@babel/highlight': 7.18.6 + /@babel/compat-data/7.20.1: + resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==} + engines: {node: '>=6.9.0'} + /@babel/compat-data/7.21.7: resolution: {integrity: sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==} engines: {node: '>=6.9.0'} @@ -6110,6 +6114,7 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: true /@babel/core/7.21.8: resolution: {integrity: sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==} @@ -6187,8 +6192,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.21.7 - '@babel/helper-validator-option': 7.21.0 + '@babel/compat-data': 7.20.1 + '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 semver: 6.3.0 dev: false @@ -6199,11 +6204,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.21.7 + '@babel/compat-data': 7.20.1 '@babel/core': 7.20.5 - '@babel/helper-validator-option': 7.21.0 + '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 semver: 6.3.0 + dev: true /@babel/helper-compilation-targets/7.20.0_@babel+core@7.21.8: resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} @@ -6211,9 +6217,9 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.21.7 + '@babel/compat-data': 7.20.1 '@babel/core': 7.21.8 - '@babel/helper-validator-option': 7.21.0 + '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 semver: 6.3.0 @@ -6231,20 +6237,6 @@ packages: semver: 6.3.0 dev: false - /@babel/helper-compilation-targets/7.21.5_@babel+core@7.20.5: - resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.21.7 - '@babel/core': 7.20.5 - '@babel/helper-validator-option': 7.21.0 - browserslist: 4.21.4 - lru-cache: 5.1.1 - semver: 6.3.0 - dev: false - /@babel/helper-compilation-targets/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==} engines: {node: '>=6.9.0'} @@ -6277,26 +6269,6 @@ packages: - supports-color dev: false - /@babel/helper-create-class-features-plugin/7.21.8_@babel+core@7.20.5: - resolution: {integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.21.5 - '@babel/helper-function-name': 7.21.0 - '@babel/helper-member-expression-to-functions': 7.21.5 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.21.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/helper-split-export-declaration': 7.18.6 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/helper-create-class-features-plugin/7.21.8_@babel+core@7.21.8: resolution: {integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==} engines: {node: '>=6.9.0'} @@ -6316,17 +6288,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.20.5: - resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - regexpu-core: 5.1.0 - dev: false - /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.21.8: resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} engines: {node: '>=6.9.0'} @@ -6337,18 +6298,6 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.1.0 - /@babel/helper-create-regexp-features-plugin/7.21.8_@babel+core@7.20.5: - resolution: {integrity: sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - regexpu-core: 5.3.2 - semver: 6.3.0 - dev: false - /@babel/helper-create-regexp-features-plugin/7.21.8_@babel+core@7.21.8: resolution: {integrity: sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==} engines: {node: '>=6.9.0'} @@ -6393,22 +6342,6 @@ packages: - supports-color dev: false - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.5: - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} - peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.21.8: resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: @@ -6424,6 +6357,11 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-environment-visitor/7.18.9: + resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/helper-environment-visitor/7.21.5: resolution: {integrity: sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==} engines: {node: '>=6.9.0'} @@ -6470,7 +6408,7 @@ packages: resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.21.5 + '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-module-imports': 7.21.4 '@babel/helper-simple-access': 7.20.2 '@babel/helper-split-export-declaration': 7.18.6 @@ -6480,6 +6418,7 @@ packages: '@babel/types': 7.21.5 transitivePeerDependencies: - supports-color + dev: true /@babel/helper-module-transforms/7.21.5: resolution: {integrity: sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==} @@ -6515,21 +6454,6 @@ packages: resolution: {integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.21.5 - '@babel/helper-wrap-function': 7.19.0 - '@babel/types': 7.21.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} @@ -6562,6 +6486,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.21.5 + dev: true /@babel/helper-simple-access/7.21.5: resolution: {integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==} @@ -6589,6 +6514,10 @@ packages: resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} engines: {node: '>=6.9.0'} + /@babel/helper-validator-option/7.18.6: + resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} + engines: {node: '>=6.9.0'} + /@babel/helper-validator-option/7.21.0: resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==} engines: {node: '>=6.9.0'} @@ -6613,6 +6542,7 @@ packages: '@babel/types': 7.21.5 transitivePeerDependencies: - supports-color + dev: true /@babel/helpers/7.21.5: resolution: {integrity: sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==} @@ -6647,16 +6577,6 @@ packages: dependencies: '@babel/types': 7.21.5 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} @@ -6666,18 +6586,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.5: - resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.20.5 - dev: false - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.21.8: resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} engines: {node: '>=6.9.0'} @@ -6689,21 +6597,6 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.8 - /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.5: - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-environment-visitor': 7.21.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.8: resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} @@ -6718,19 +6611,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} @@ -6743,20 +6623,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.20.5: - resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.21.8: resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} @@ -6785,17 +6651,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 - dev: false - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} @@ -6816,17 +6671,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.21.8 - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5 - dev: false - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} @@ -6837,17 +6681,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.8 - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5 - dev: false - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} @@ -6858,17 +6691,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.8 - /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.5: - resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5 - dev: false - /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.21.8: resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} @@ -6879,17 +6701,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.8 - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5 - dev: false - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} @@ -6900,17 +6711,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.8 - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5 - dev: false - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} @@ -6946,20 +6746,6 @@ packages: '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.8 dev: false - /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.5: - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.21.7 - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.20.5 - dev: false - /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.8: resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} @@ -6973,17 +6759,6 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.8 '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.8 - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5 - dev: false - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} @@ -7006,28 +6781,16 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.8 dev: false - /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.20.5: + /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.21.8: resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 - dev: false - - /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.21.8: - resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.8 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.8 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.8 /@babel/plugin-proposal-partial-application/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-+q+bOVHlU+4QAb6h8S3UNL2x52/bcTiGTktUj+WYIFtqueqbQBU7AqnMs79TPz7hRdj6rWiQDInuVMz/fsxwdQ==} @@ -7051,19 +6814,6 @@ packages: '@babel/plugin-syntax-pipeline-operator': 7.18.6_@babel+core@7.21.8 dev: true - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} @@ -7091,21 +6841,6 @@ packages: - supports-color dev: false - /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.20.5: - resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.21.8: resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} engines: {node: '>=6.9.0'} @@ -7120,17 +6855,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} - engines: {node: '>=4'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} @@ -7141,15 +6865,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.5: - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.21.8: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: @@ -7166,15 +6881,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.5: - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.21.8: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: @@ -7183,16 +6889,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.5: - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.21.8: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} @@ -7211,15 +6907,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.5: - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: @@ -7237,15 +6924,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.5: - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -7264,16 +6942,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false - /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.5: - resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.21.8: resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} @@ -7291,15 +6959,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.5: - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: @@ -7326,16 +6985,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false - /@babel/plugin-syntax-jsx/7.21.4_@babel+core@7.20.5: - resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-jsx/7.21.4_@babel+core@7.21.8: resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==} engines: {node: '>=6.9.0'} @@ -7345,15 +6994,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.5: - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.21.8: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -7362,15 +7002,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.5: - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: @@ -7379,15 +7010,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.5: - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.21.8: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: @@ -7405,15 +7027,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.5: - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -7422,15 +7035,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.5: - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -7439,15 +7043,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.5: - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -7476,16 +7071,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.5: - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.21.8: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} @@ -7495,16 +7080,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.5: - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.21.8: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} @@ -7523,16 +7098,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false - /@babel/plugin-syntax-typescript/7.21.4_@babel+core@7.20.5: - resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-syntax-typescript/7.21.4_@babel+core@7.21.8: resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} engines: {node: '>=6.9.0'} @@ -7552,16 +7117,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false - /@babel/plugin-transform-arrow-functions/7.21.5_@babel+core@7.20.5: - resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-arrow-functions/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==} engines: {node: '>=6.9.0'} @@ -7571,20 +7126,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.5: - resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-module-imports': 7.21.4 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.8: resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} @@ -7598,16 +7139,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} @@ -7627,16 +7158,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false - /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.20.5: - resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.21.8: resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} engines: {node: '>=6.9.0'} @@ -7646,26 +7167,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-classes/7.21.0_@babel+core@7.20.5: - resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.20.5 - '@babel/helper-environment-visitor': 7.21.5 - '@babel/helper-function-name': 7.21.0 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-replace-supers': 7.21.5 - '@babel/helper-split-export-declaration': 7.18.6 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-classes/7.21.0_@babel+core@7.21.8: resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} engines: {node: '>=6.9.0'} @@ -7685,17 +7186,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-computed-properties/7.21.5_@babel+core@7.20.5: - resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/template': 7.20.7 - dev: false - /@babel/plugin-transform-computed-properties/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==} engines: {node: '>=6.9.0'} @@ -7716,16 +7206,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false - /@babel/plugin-transform-destructuring/7.21.3_@babel+core@7.20.5: - resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-destructuring/7.21.3_@babel+core@7.21.8: resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} engines: {node: '>=6.9.0'} @@ -7735,17 +7215,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} @@ -7756,16 +7225,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} @@ -7775,17 +7234,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.6 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} @@ -7817,16 +7265,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false - /@babel/plugin-transform-for-of/7.21.5_@babel+core@7.20.5: - resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-for-of/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==} engines: {node: '>=6.9.0'} @@ -7836,18 +7274,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.20.5 - '@babel/helper-function-name': 7.21.0 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} @@ -7859,16 +7285,6 @@ packages: '@babel/helper-function-name': 7.21.0 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} @@ -7878,16 +7294,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} @@ -7897,19 +7303,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.5: - resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-module-transforms': 7.21.5 - '@babel/helper-plugin-utils': 7.21.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.21.8: resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} engines: {node: '>=6.9.0'} @@ -7949,20 +7342,6 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-commonjs/7.21.5_@babel+core@7.20.5: - resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-module-transforms': 7.21.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-simple-access': 7.21.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-modules-commonjs/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==} engines: {node: '>=6.9.0'} @@ -7976,21 +7355,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.5: - resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-module-transforms': 7.21.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-validator-identifier': 7.19.1 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.21.8: resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} engines: {node: '>=6.9.0'} @@ -8005,19 +7369,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-module-transforms': 7.21.5 - '@babel/helper-plugin-utils': 7.21.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} @@ -8030,17 +7381,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.5: - resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.21.8: resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} engines: {node: '>=6.9.0'} @@ -8051,37 +7391,14 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.8 - '@babel/helper-plugin-utils': 7.21.5 - - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-replace-supers': 7.21.5 - transitivePeerDependencies: - - supports-color - dev: false /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} @@ -8115,16 +7432,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false - /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.20.5: - resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.21.8: resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} engines: {node: '>=6.9.0'} @@ -8134,16 +7441,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} @@ -8153,23 +7450,13 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-react-constant-elements/7.20.2_@babel+core@7.20.5: + /@babel/plugin-transform-react-constant-elements/7.20.2_@babel+core@7.21.8: resolution: {integrity: sha512-KS/G8YI8uwMGKErLFOHS/ekhqdHhpEloxs43NecQHVgo2QuQSyJhGIY1fL8UGl9wy5ItVwwoUL4YxVqsplGq2g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 dev: false @@ -8183,16 +7470,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 - dev: false - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} @@ -8203,20 +7480,6 @@ packages: '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.21.8 dev: false - /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.5: - resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.21.4 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-jsx': 7.21.4_@babel+core@7.20.5 - '@babel/types': 7.21.5 - dev: false - /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.21.8: resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} engines: {node: '>=6.9.0'} @@ -8231,17 +7494,6 @@ packages: '@babel/types': 7.21.5 dev: false - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} @@ -8253,17 +7505,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false - /@babel/plugin-transform-regenerator/7.21.5_@babel+core@7.20.5: - resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - regenerator-transform: 0.15.1 - dev: false - /@babel/plugin-transform-regenerator/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==} engines: {node: '>=6.9.0'} @@ -8274,16 +7515,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 regenerator-transform: 0.15.1 - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} @@ -8310,16 +7541,6 @@ packages: - supports-color dev: false - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} @@ -8340,17 +7561,6 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 dev: false - /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.5: - resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - dev: false - /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.8: resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} @@ -8361,16 +7571,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} @@ -8380,16 +7580,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} @@ -8399,16 +7589,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} @@ -8432,21 +7612,6 @@ packages: - supports-color dev: false - /@babel/plugin-transform-typescript/7.21.3_@babel+core@7.20.5: - resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-typescript': 7.21.4_@babel+core@7.20.5 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/plugin-transform-typescript/7.21.3_@babel+core@7.21.8: resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} engines: {node: '>=6.9.0'} @@ -8461,16 +7626,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-unicode-escapes/7.21.5_@babel+core@7.20.5: - resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-unicode-escapes/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==} engines: {node: '>=6.9.0'} @@ -8480,17 +7635,6 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - dev: false - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} @@ -8501,92 +7645,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/preset-env/7.20.2_@babel+core@7.20.5: - resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.21.7 - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.5 - '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.5 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-class-static-block': 7.21.0_@babel+core@7.20.5 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.20.5 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.20.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.5 - '@babel/plugin-transform-arrow-functions': 7.21.5_@babel+core@7.20.5 - '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.20.5 - '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.20.5 - '@babel/plugin-transform-computed-properties': 7.21.5_@babel+core@7.20.5 - '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.20.5 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-for-of': 7.21.5_@babel+core@7.20.5 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.5 - '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.20.5 - '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.5 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.20.5 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-regenerator': 7.21.5_@babel+core@7.20.5 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.5 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-unicode-escapes': 7.21.5_@babel+core@7.20.5 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.5 - '@babel/preset-modules': 0.1.5_@babel+core@7.20.5 - '@babel/types': 7.21.5 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.5 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.5 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.5 - core-js-compat: 3.26.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/preset-env/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==} engines: {node: '>=6.9.0'} @@ -8685,19 +7743,6 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.18.6_@babel+core@7.21.8 dev: false - /@babel/preset-modules/0.1.5_@babel+core@7.20.5: - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5 - '@babel/types': 7.21.5 - esutils: 2.0.3 - dev: false - /@babel/preset-modules/0.1.5_@babel+core@7.21.8: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: @@ -8710,21 +7755,6 @@ packages: '@babel/types': 7.21.5 esutils: 2.0.3 - /@babel/preset-react/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.5 - dev: false - /@babel/preset-react/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} @@ -8733,40 +7763,38 @@ packages: dependencies: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-validator-option': 7.21.0 + '@babel/helper-validator-option': 7.18.6 '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.21.8 '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.21.8 '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.21.8 '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.21.8 dev: false - /@babel/preset-typescript/7.21.5: - resolution: {integrity: sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==} + /@babel/preset-typescript/7.18.6_@babel+core@7.21.8: + resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: + '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-syntax-jsx': 7.21.4 - '@babel/plugin-transform-modules-commonjs': 7.21.5 - '@babel/plugin-transform-typescript': 7.21.3 + '@babel/plugin-transform-typescript': 7.21.3_@babel+core@7.21.8 transitivePeerDependencies: - supports-color dev: false - /@babel/preset-typescript/7.21.5_@babel+core@7.20.5: + /@babel/preset-typescript/7.21.5: resolution: {integrity: sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 '@babel/helper-plugin-utils': 7.21.5 '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-syntax-jsx': 7.21.4_@babel+core@7.20.5 - '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.20.5 - '@babel/plugin-transform-typescript': 7.21.3_@babel+core@7.20.5 + '@babel/plugin-syntax-jsx': 7.21.4 + '@babel/plugin-transform-modules-commonjs': 7.21.5 + '@babel/plugin-transform-typescript': 7.21.3 transitivePeerDependencies: - supports-color dev: false @@ -10435,6 +9463,10 @@ packages: '@jridgewell/sourcemap-codec': 1.4.14 '@jridgewell/trace-mapping': 0.3.17 + /@jridgewell/resolve-uri/3.0.8: + resolution: {integrity: sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==} + engines: {node: '>=6.0.0'} + /@jridgewell/resolve-uri/3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} engines: {node: '>=6.0.0'} @@ -10452,6 +9484,12 @@ packages: /@jridgewell/sourcemap-codec/1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + /@jridgewell/trace-mapping/0.3.14: + resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==} + dependencies: + '@jridgewell/resolve-uri': 3.0.8 + '@jridgewell/sourcemap-codec': 1.4.14 + /@jridgewell/trace-mapping/0.3.17: resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} dependencies: @@ -13530,11 +12568,11 @@ packages: resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.20.5 - '@babel/plugin-transform-react-constant-elements': 7.20.2_@babel+core@7.20.5 - '@babel/preset-env': 7.20.2_@babel+core@7.20.5 - '@babel/preset-react': 7.18.6_@babel+core@7.20.5 - '@babel/preset-typescript': 7.21.5_@babel+core@7.20.5 + '@babel/core': 7.21.8 + '@babel/plugin-transform-react-constant-elements': 7.20.2_@babel+core@7.21.8 + '@babel/preset-env': 7.21.5_@babel+core@7.21.8 + '@babel/preset-react': 7.18.6_@babel+core@7.21.8 + '@babel/preset-typescript': 7.18.6_@babel+core@7.21.8 '@svgr/core': 6.5.1 '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1 '@svgr/plugin-svgo': 6.5.1_@svgr+core@6.5.1 @@ -13840,7 +12878,7 @@ packages: /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 14.18.35 + '@types/node': 18.11.17 /@types/content-disposition/0.5.5: resolution: {integrity: sha512-v6LCdKfK6BwcqMo+wYW05rLS12S0ZO0Fl4w1h4aaZMD7bqT3gVUns6FvLJKGZHQmYn3SX55JWGpziwJRwVgutA==} @@ -14397,7 +13435,7 @@ packages: resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==} dependencies: '@types/mime': 1.3.2 - '@types/node': 14.18.35 + '@types/node': 18.11.17 /@types/signal-exit/3.0.1: resolution: {integrity: sha512-OSitN9PP9E/c4tlt1Qdj3CAz5uHD9Da5rhUqlaKyQRCX1T7Zdpbk6YdeZbR2eiE2ce+NMBgVnMxGqpaPSNQDUQ==} @@ -15017,6 +14055,7 @@ packages: /acorn/7.4.1: resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} engines: {node: '>=0.4.0'} + hasBin: true /acorn/8.8.1: resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==} @@ -15083,10 +14122,8 @@ packages: ajv: 6.12.6 dev: false - /ajv-formats/2.1.1_ajv@8.11.0: + /ajv-formats/2.1.1: resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} - peerDependencies: - ajv: ^8.0.0 peerDependenciesMeta: ajv: optional: true @@ -15920,19 +14957,6 @@ packages: resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} dev: false - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.5: - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.21.7 - '@babel/core': 7.20.5 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: false - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.8: resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: @@ -15968,18 +14992,6 @@ packages: - supports-color dev: false - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.5: - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5 - core-js-compat: 3.26.1 - transitivePeerDependencies: - - supports-color - dev: false - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.21.8: resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: @@ -15991,17 +15003,6 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.5: - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5 - transitivePeerDependencies: - - supports-color - dev: false - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.21.8: resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: @@ -23819,7 +22820,6 @@ packages: /jsesc/2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} - hasBin: true /json-buffer/3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} @@ -24889,7 +23889,7 @@ packages: decamelize: 1.2.0 loud-rejection: 1.6.0 map-obj: 1.0.1 - minimist: 1.2.6 + minimist: 1.2.8 normalize-package-data: 2.5.0 object-assign: 4.1.1 read-pkg-up: 1.0.1 @@ -25440,7 +24440,6 @@ packages: /minimist/1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - dev: true /minipass-collect/1.0.2: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} @@ -30095,7 +29094,7 @@ packages: dependencies: '@types/json-schema': 7.0.11 ajv: 8.11.0 - ajv-formats: 2.1.1_ajv@8.11.0 + ajv-formats: 2.1.1 ajv-keywords: 5.1.0_ajv@8.11.0 /scroll-into-view-if-needed/2.2.20: diff --git a/tests/e2e/builder/cases/check-syntax/index.test.ts b/tests/e2e/builder/cases/check-syntax/index.test.ts new file mode 100644 index 000000000000..e29c00e93318 --- /dev/null +++ b/tests/e2e/builder/cases/check-syntax/index.test.ts @@ -0,0 +1,31 @@ +import path from 'path'; +import { expect } from '@modern-js/e2e/playwright'; +import { allProviderTest } from '@scripts/helper'; +import { build } from '@scripts/shared'; + +allProviderTest('should throw error when exist syntax errors', async () => { + await expect( + build( + { + cwd: __dirname, + entry: { index: path.resolve(__dirname, './src/index.js') }, + }, + { + source: { + exclude: [path.resolve(__dirname, './src/test.js')], + }, + security: { + checkSyntax: true, + }, + tools: { + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-expect-error + rspack: config => { + config.target = ['web']; + config.builtins.presetEnv = undefined; + }, + }, + }, + ), + ).rejects.toThrowError('[Syntax Checker]'); +}); diff --git a/tests/e2e/builder/cases/check-syntax/src/index.js b/tests/e2e/builder/cases/check-syntax/src/index.js new file mode 100644 index 000000000000..064e33ca66b0 --- /dev/null +++ b/tests/e2e/builder/cases/check-syntax/src/index.js @@ -0,0 +1,3 @@ +import { printLog } from './test'; + +printLog(); diff --git a/tests/e2e/builder/cases/check-syntax/src/test.js b/tests/e2e/builder/cases/check-syntax/src/test.js new file mode 100644 index 000000000000..bb01bfaf00dd --- /dev/null +++ b/tests/e2e/builder/cases/check-syntax/src/test.js @@ -0,0 +1,4 @@ +export const printLog = () => { + const arr = [1, 2, 3, 4, [5, 6, [7, 8]]]; + console.log(arr, arr.flat()); +}; diff --git a/tests/integration/nonce/src/routes/layout.tsx b/tests/integration/nonce/src/routes/layout.tsx index 7a9d3ec18bb7..6433ea79e92b 100644 --- a/tests/integration/nonce/src/routes/layout.tsx +++ b/tests/integration/nonce/src/routes/layout.tsx @@ -1,4 +1,4 @@ -import { Link, Outlet } from '@modern-js/runtime/router'; +import { Outlet } from '@modern-js/runtime/router'; export default function Layout() { return (