mirror of
https://github.com/facebook/docusaurus.git
synced 2025-07-19 17:49:19 +02:00
refactor(core): enforce noImplicitAny (#5605)
* Initial work Signed-off-by: Josh-Cena <sidachen2003@gmail.com> * Fix errors Signed-off-by: Josh-Cena <sidachen2003@gmail.com> * Remove .d.ts files Signed-off-by: Josh-Cena <sidachen2003@gmail.com> * Fix Signed-off-by: Josh-Cena <sidachen2003@gmail.com>
This commit is contained in:
parent
e66e045b74
commit
452f85b5a3
19 changed files with 355 additions and 189 deletions
|
@ -32,8 +32,17 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@docusaurus/module-type-aliases": "2.0.0-beta.6",
|
"@docusaurus/module-type-aliases": "2.0.0-beta.6",
|
||||||
|
"@types/copy-webpack-plugin": "^8.0.1",
|
||||||
|
"@types/css-minimizer-webpack-plugin": "^3.0.2",
|
||||||
"@types/detect-port": "^1.3.0",
|
"@types/detect-port": "^1.3.0",
|
||||||
|
"@types/mini-css-extract-plugin": "^2.3.0",
|
||||||
|
"@types/module-alias": "^2.0.1",
|
||||||
"@types/nprogress": "^0.2.0",
|
"@types/nprogress": "^0.2.0",
|
||||||
|
"@types/react-dom": "^17.0.9",
|
||||||
|
"@types/rtl-detect": "^1.0.0",
|
||||||
|
"@types/serve-handler": "^6.1.1",
|
||||||
|
"@types/terser-webpack-plugin": "^5.2.0",
|
||||||
|
"@types/webpack-bundle-analyzer": "^4.4.1",
|
||||||
"tmp-promise": "^3.0.2"
|
"tmp-promise": "^3.0.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -80,7 +80,8 @@ function BaseUrlIssueBannerEnabled() {
|
||||||
// useLayoutEffect fires before DOMContentLoaded.
|
// useLayoutEffect fires before DOMContentLoaded.
|
||||||
// It gives the opportunity to avoid inserting the banner in the first place
|
// It gives the opportunity to avoid inserting the banner in the first place
|
||||||
useLayoutEffect(() => {
|
useLayoutEffect(() => {
|
||||||
window[InsertBannerWindowAttribute] = false;
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
|
(window as any)[InsertBannerWindowAttribute] = false;
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
9
packages/docusaurus/src/client/templates/ssr.html.template.d.ts
vendored
Normal file
9
packages/docusaurus/src/client/templates/ssr.html.template.d.ts
vendored
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
/**
|
||||||
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
|
||||||
|
const template: string;
|
||||||
|
export default template;
|
|
@ -16,14 +16,14 @@ import os from 'os';
|
||||||
import {buildUrl} from './buildRemoteBranchUrl';
|
import {buildUrl} from './buildRemoteBranchUrl';
|
||||||
|
|
||||||
// GIT_PASS env variable should not appear in logs
|
// GIT_PASS env variable should not appear in logs
|
||||||
function obfuscateGitPass(str) {
|
function obfuscateGitPass(str: string) {
|
||||||
const gitPass = process.env.GIT_PASS;
|
const gitPass = process.env.GIT_PASS;
|
||||||
return gitPass ? str.replace(gitPass, 'GIT_PASS') : str;
|
return gitPass ? str.replace(gitPass, 'GIT_PASS') : str;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Log executed commands so that user can figure out mistakes on his own
|
// Log executed commands so that user can figure out mistakes on his own
|
||||||
// for example: https://github.com/facebook/docusaurus/issues/3875
|
// for example: https://github.com/facebook/docusaurus/issues/3875
|
||||||
function shellExecLog(cmd) {
|
function shellExecLog(cmd: string) {
|
||||||
try {
|
try {
|
||||||
const result = shell.exec(cmd);
|
const result = shell.exec(cmd);
|
||||||
console.log(
|
console.log(
|
||||||
|
@ -162,7 +162,7 @@ Try using DEPLOYMENT_BRANCH=main or DEPLOYMENT_BRANCH=master`);
|
||||||
// out to deployment branch.
|
// out to deployment branch.
|
||||||
const currentCommit = shellExecLog('git rev-parse HEAD').stdout.trim();
|
const currentCommit = shellExecLog('git rev-parse HEAD').stdout.trim();
|
||||||
|
|
||||||
const runDeploy = async (outputDirectory) => {
|
const runDeploy = async (outputDirectory: string) => {
|
||||||
const fromPath = outputDirectory;
|
const fromPath = outputDirectory;
|
||||||
const toPath = await fs.mkdtemp(
|
const toPath = await fs.mkdtemp(
|
||||||
path.join(os.tmpdir(), `${projectName}-${deploymentBranch}`),
|
path.join(os.tmpdir(), `${projectName}-${deploymentBranch}`),
|
||||||
|
|
|
@ -88,14 +88,14 @@ export default async function start(
|
||||||
}, 500);
|
}, 500);
|
||||||
const {siteConfig, plugins = []} = props;
|
const {siteConfig, plugins = []} = props;
|
||||||
|
|
||||||
const normalizeToSiteDir = (filepath) => {
|
const normalizeToSiteDir = (filepath: string) => {
|
||||||
if (filepath && path.isAbsolute(filepath)) {
|
if (filepath && path.isAbsolute(filepath)) {
|
||||||
return posixPath(path.relative(siteDir, filepath));
|
return posixPath(path.relative(siteDir, filepath));
|
||||||
}
|
}
|
||||||
return posixPath(filepath);
|
return posixPath(filepath);
|
||||||
};
|
};
|
||||||
|
|
||||||
const pluginPaths: string[] = ([] as string[])
|
const pluginPaths = ([] as string[])
|
||||||
.concat(
|
.concat(
|
||||||
...plugins
|
...plugins
|
||||||
.map((plugin) => plugin.getPathsToWatch?.() ?? [])
|
.map((plugin) => plugin.getPathsToWatch?.() ?? [])
|
||||||
|
@ -103,7 +103,7 @@ export default async function start(
|
||||||
)
|
)
|
||||||
.map(normalizeToSiteDir);
|
.map(normalizeToSiteDir);
|
||||||
|
|
||||||
const pathsToWatch: string[] = [
|
const pathsToWatch = [
|
||||||
...pluginPaths,
|
...pluginPaths,
|
||||||
props.siteConfigPath,
|
props.siteConfigPath,
|
||||||
getTranslationsLocaleDirPath({
|
getTranslationsLocaleDirPath({
|
||||||
|
|
|
@ -224,7 +224,7 @@ function createMDXFallbackPlugin({siteDir}: {siteDir: string}): LoadedPlugin {
|
||||||
loader: require.resolve('@docusaurus/mdx-loader'),
|
loader: require.resolve('@docusaurus/mdx-loader'),
|
||||||
options: {
|
options: {
|
||||||
staticDir: path.join(siteDir, STATIC_DIR_NAME),
|
staticDir: path.join(siteDir, STATIC_DIR_NAME),
|
||||||
isMDXPartial: (_filename) => true, // External mdx files are always meant to be imported as partials
|
isMDXPartial: (_filename: string) => true, // External mdx files are always meant to be imported as partials
|
||||||
isMDXPartialFrontMatterWarningDisabled: true, // External mdx files might have frontmatter, let's just disable the warning
|
isMDXPartialFrontMatterWarningDisabled: true, // External mdx files might have frontmatter, let's just disable the warning
|
||||||
remarkPlugins: [admonitions],
|
remarkPlugins: [admonitions],
|
||||||
},
|
},
|
||||||
|
|
|
@ -123,7 +123,7 @@ export async function loadPlugins({
|
||||||
// 3. Plugin Lifecycle - contentLoaded.
|
// 3. Plugin Lifecycle - contentLoaded.
|
||||||
const pluginsRouteConfigs: RouteConfig[] = [];
|
const pluginsRouteConfigs: RouteConfig[] = [];
|
||||||
|
|
||||||
const globalData = {};
|
const globalData: Record<string, Record<string, unknown>> = {};
|
||||||
|
|
||||||
await Promise.all(
|
await Promise.all(
|
||||||
contentLoadedTranslatedPlugins.map(
|
contentLoadedTranslatedPlugins.map(
|
||||||
|
|
|
@ -21,6 +21,10 @@ import {
|
||||||
ChunkNames,
|
ChunkNames,
|
||||||
} from '@docusaurus/types';
|
} from '@docusaurus/types';
|
||||||
|
|
||||||
|
type RegistryMap = {
|
||||||
|
[chunkName: string]: ChunkRegistry;
|
||||||
|
};
|
||||||
|
|
||||||
function indent(str: string) {
|
function indent(str: string) {
|
||||||
const spaces = ' ';
|
const spaces = ' ';
|
||||||
return `${spaces}${str.replace(/(\n)/g, `\n${spaces}`)}`;
|
return `${spaces}${str.replace(/(\n)/g, `\n${spaces}`)}`;
|
||||||
|
@ -183,15 +187,38 @@ ${indent(NotFoundRouteCode)}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function genRouteChunkNames(
|
||||||
|
registry: RegistryMap,
|
||||||
|
value: Module,
|
||||||
|
prefix?: string,
|
||||||
|
name?: string,
|
||||||
|
): string;
|
||||||
|
function genRouteChunkNames(
|
||||||
|
registry: RegistryMap,
|
||||||
|
value: RouteModule,
|
||||||
|
prefix?: string,
|
||||||
|
name?: string,
|
||||||
|
): ChunkNames;
|
||||||
|
function genRouteChunkNames(
|
||||||
|
registry: RegistryMap,
|
||||||
|
value: RouteModule[],
|
||||||
|
prefix?: string,
|
||||||
|
name?: string,
|
||||||
|
): ChunkNames[];
|
||||||
|
function genRouteChunkNames(
|
||||||
|
registry: RegistryMap,
|
||||||
|
value: RouteModule | RouteModule[] | Module,
|
||||||
|
prefix?: string,
|
||||||
|
name?: string,
|
||||||
|
): ChunkNames | ChunkNames[] | string;
|
||||||
|
|
||||||
function genRouteChunkNames(
|
function genRouteChunkNames(
|
||||||
// TODO instead of passing a mutating the registry, return a registry slice?
|
// TODO instead of passing a mutating the registry, return a registry slice?
|
||||||
registry: {
|
registry: RegistryMap,
|
||||||
[chunkName: string]: ChunkRegistry;
|
|
||||||
},
|
|
||||||
value: RouteModule | RouteModule[] | Module | null | undefined,
|
value: RouteModule | RouteModule[] | Module | null | undefined,
|
||||||
prefix?: string,
|
prefix?: string,
|
||||||
name?: string,
|
name?: string,
|
||||||
) {
|
): null | string | ChunkNames | ChunkNames[] {
|
||||||
if (!value) {
|
if (!value) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,7 +55,8 @@ export async function readTranslationFileContent(
|
||||||
const content = JSON.parse(await fs.readFile(filePath, 'utf8'));
|
const content = JSON.parse(await fs.readFile(filePath, 'utf8'));
|
||||||
ensureTranslationFileContent(content);
|
ensureTranslationFileContent(content);
|
||||||
return content;
|
return content;
|
||||||
} catch (e) {
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
|
} catch (e: any) {
|
||||||
throw new Error(`Invalid translation file at ${filePath}.\n${e.message}`);
|
throw new Error(`Invalid translation file at ${filePath}.\n${e.message}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -157,7 +157,8 @@ export async function extractSourceCodeFileTranslations(
|
||||||
}) as Node;
|
}) as Node;
|
||||||
|
|
||||||
return await extractSourceCodeAstTranslations(ast, sourceCodeFilePath);
|
return await extractSourceCodeAstTranslations(ast, sourceCodeFilePath);
|
||||||
} catch (e) {
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
|
} catch (e: any) {
|
||||||
e.message = `Error while attempting to extract Docusaurus translations from source code file at path=${sourceCodeFilePath}\n${e.message}`;
|
e.message = `Error while attempting to extract Docusaurus translations from source code file at path=${sourceCodeFilePath}\n${e.message}`;
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
|
|
20
packages/docusaurus/src/types.d.ts
vendored
Normal file
20
packages/docusaurus/src/types.d.ts
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
/**
|
||||||
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare module 'remark-admonitions';
|
||||||
|
|
||||||
|
declare module 'react-loadable-ssr-addon-v5-slorber';
|
||||||
|
|
||||||
|
declare module 'resolve-pathname';
|
||||||
|
|
||||||
|
declare module '@slorber/static-site-generator-webpack-plugin';
|
||||||
|
|
||||||
|
declare module 'webpack/lib/HotModuleReplacementPlugin' {
|
||||||
|
import {HotModuleReplacementPlugin} from 'webpack';
|
||||||
|
|
||||||
|
export default HotModuleReplacementPlugin;
|
||||||
|
}
|
|
@ -51,7 +51,7 @@ export function getDocusaurusAliases(): Record<string, string> {
|
||||||
const dirPath = path.resolve(__dirname, '../client/exports');
|
const dirPath = path.resolve(__dirname, '../client/exports');
|
||||||
const extensions = ['.js', '.ts', '.tsx'];
|
const extensions = ['.js', '.ts', '.tsx'];
|
||||||
|
|
||||||
const aliases = {};
|
const aliases: Record<string, string> = {};
|
||||||
|
|
||||||
fs.readdirSync(dirPath)
|
fs.readdirSync(dirPath)
|
||||||
.filter((fileName) => extensions.includes(path.extname(fileName)))
|
.filter((fileName) => extensions.includes(path.extname(fileName)))
|
||||||
|
|
|
@ -234,7 +234,8 @@ class CleanWebpackPlugin {
|
||||||
console.warn(`clean-webpack-plugin: removed ${filename}`);
|
console.warn(`clean-webpack-plugin: removed ${filename}`);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
} catch (error) {
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
|
} catch (error: any) {
|
||||||
const needsForce = /Cannot delete files\/folders outside the current working directory\./.test(
|
const needsForce = /Cannot delete files\/folders outside the current working directory\./.test(
|
||||||
error.message,
|
error.message,
|
||||||
);
|
);
|
||||||
|
|
|
@ -9,7 +9,7 @@ import {Compiler} from 'webpack';
|
||||||
// import formatWebpackMessages from 'react-dev-utils/formatWebpackMessages';
|
// import formatWebpackMessages from 'react-dev-utils/formatWebpackMessages';
|
||||||
import formatWebpackMessages from '../react-dev-utils-webpack5/formatWebpackMessages';
|
import formatWebpackMessages from '../react-dev-utils-webpack5/formatWebpackMessages';
|
||||||
|
|
||||||
function showError(arr) {
|
function showError(arr: string[]) {
|
||||||
console.log(`\n\n${arr.join('\n')}`);
|
console.log(`\n\n${arr.join('\n')}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@ export default function createServerConfig({
|
||||||
} = props;
|
} = props;
|
||||||
const config = createBaseConfig(props, true);
|
const config = createBaseConfig(props, true);
|
||||||
|
|
||||||
const routesLocation = {};
|
const routesLocation: Record<string, string> = {};
|
||||||
// Array of paths to be rendered. Relative to output directory
|
// Array of paths to be rendered. Relative to output directory
|
||||||
const ssgPaths = routesPaths.map((str) => {
|
const ssgPaths = routesPaths.map((str) => {
|
||||||
const ssgPath =
|
const ssgPath =
|
||||||
|
|
|
@ -249,7 +249,7 @@ export function applyConfigurePostCss(
|
||||||
}
|
}
|
||||||
|
|
||||||
// Does not handle all edge cases, but good enough for now
|
// Does not handle all edge cases, but good enough for now
|
||||||
function overridePostCssOptions(entry) {
|
function overridePostCssOptions(entry: RuleSetRule) {
|
||||||
if (isPostCssLoader(entry)) {
|
if (isPostCssLoader(entry)) {
|
||||||
entry.options.postcssOptions = configurePostCss(
|
entry.options.postcssOptions = configurePostCss(
|
||||||
entry.options.postcssOptions,
|
entry.options.postcssOptions,
|
||||||
|
@ -259,11 +259,13 @@ export function applyConfigurePostCss(
|
||||||
} else if (Array.isArray(entry.use)) {
|
} else if (Array.isArray(entry.use)) {
|
||||||
entry.use
|
entry.use
|
||||||
.filter((u) => typeof u === 'object')
|
.filter((u) => typeof u === 'object')
|
||||||
.forEach(overridePostCssOptions);
|
.forEach((rule) => overridePostCssOptions(rule as RuleSetRule));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
config.module?.rules?.forEach(overridePostCssOptions);
|
config.module?.rules?.forEach((rule) =>
|
||||||
|
overridePostCssOptions(rule as RuleSetRule),
|
||||||
|
);
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
@ -442,12 +444,23 @@ export function getFileLoaderUtils(): FileLoaderUtils {
|
||||||
|
|
||||||
// Ensure the certificate and key provided are valid and if not
|
// Ensure the certificate and key provided are valid and if not
|
||||||
// throw an easy to debug error
|
// throw an easy to debug error
|
||||||
function validateKeyAndCerts({cert, key, keyFile, crtFile}) {
|
function validateKeyAndCerts({
|
||||||
let encrypted;
|
cert,
|
||||||
|
key,
|
||||||
|
keyFile,
|
||||||
|
crtFile,
|
||||||
|
}: {
|
||||||
|
cert: Buffer;
|
||||||
|
key: Buffer;
|
||||||
|
keyFile: string;
|
||||||
|
crtFile: string;
|
||||||
|
}) {
|
||||||
|
let encrypted: Buffer;
|
||||||
try {
|
try {
|
||||||
// publicEncrypt will throw an error with an invalid cert
|
// publicEncrypt will throw an error with an invalid cert
|
||||||
encrypted = crypto.publicEncrypt(cert, Buffer.from('test'));
|
encrypted = crypto.publicEncrypt(cert, Buffer.from('test'));
|
||||||
} catch (err) {
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
|
} catch (err: any) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`The certificate "${chalk.yellow(crtFile)}" is invalid.\n${err.message}`,
|
`The certificate "${chalk.yellow(crtFile)}" is invalid.\n${err.message}`,
|
||||||
);
|
);
|
||||||
|
@ -456,7 +469,8 @@ function validateKeyAndCerts({cert, key, keyFile, crtFile}) {
|
||||||
try {
|
try {
|
||||||
// privateDecrypt will throw an error with an invalid key
|
// privateDecrypt will throw an error with an invalid key
|
||||||
crypto.privateDecrypt(key, encrypted);
|
crypto.privateDecrypt(key, encrypted);
|
||||||
} catch (err) {
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
|
} catch (err: any) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`The certificate key "${chalk.yellow(keyFile)}" is invalid.\n${
|
`The certificate key "${chalk.yellow(keyFile)}" is invalid.\n${
|
||||||
err.message
|
err.message
|
||||||
|
@ -466,7 +480,7 @@ function validateKeyAndCerts({cert, key, keyFile, crtFile}) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read file and throw an error if it doesn't exist
|
// Read file and throw an error if it doesn't exist
|
||||||
function readEnvFile(file, type) {
|
function readEnvFile(file: string, type: string) {
|
||||||
if (!fs.existsSync(file)) {
|
if (!fs.existsSync(file)) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`You specified ${chalk.cyan(
|
`You specified ${chalk.cyan(
|
||||||
|
@ -515,7 +529,7 @@ function getTerserParallel() {
|
||||||
export function getMinimizer(
|
export function getMinimizer(
|
||||||
useSimpleCssMinifier = false,
|
useSimpleCssMinifier = false,
|
||||||
): WebpackPluginInstance[] {
|
): WebpackPluginInstance[] {
|
||||||
const minimizer = [
|
const minimizer: WebpackPluginInstance[] = [
|
||||||
new TerserPlugin({
|
new TerserPlugin({
|
||||||
parallel: getTerserParallel(),
|
parallel: getTerserParallel(),
|
||||||
terserOptions: {
|
terserOptions: {
|
||||||
|
@ -525,10 +539,11 @@ export function getMinimizer(
|
||||||
// into invalid ecma 5 code. This is why the 'compress' and 'output'
|
// into invalid ecma 5 code. This is why the 'compress' and 'output'
|
||||||
// sections only apply transformations that are ecma 5 safe
|
// sections only apply transformations that are ecma 5 safe
|
||||||
// https://github.com/facebook/create-react-app/pull/4234
|
// https://github.com/facebook/create-react-app/pull/4234
|
||||||
ecma: 8,
|
ecma: 2020,
|
||||||
},
|
},
|
||||||
compress: {
|
compress: {
|
||||||
ecma: 5,
|
ecma: 5,
|
||||||
|
// @ts-expect-error: API change in new version?
|
||||||
warnings: false,
|
warnings: false,
|
||||||
},
|
},
|
||||||
mangle: {
|
mangle: {
|
||||||
|
@ -558,6 +573,7 @@ export function getMinimizer(
|
||||||
},
|
},
|
||||||
// CleanCss options
|
// CleanCss options
|
||||||
{
|
{
|
||||||
|
// @ts-expect-error: API change in new version?
|
||||||
inline: false,
|
inline: false,
|
||||||
level: {
|
level: {
|
||||||
1: {
|
1: {
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
"module": "esnext",
|
"module": "esnext",
|
||||||
"tsBuildInfoFile": "./lib/client/.tsbuildinfo",
|
"tsBuildInfoFile": "./lib/client/.tsbuildinfo",
|
||||||
"outDir": "lib/client",
|
"outDir": "lib/client",
|
||||||
"noImplicitAny": false,
|
|
||||||
"jsx": "react"
|
"jsx": "react"
|
||||||
},
|
},
|
||||||
"include": ["src/client"]
|
"include": ["src/client"]
|
||||||
|
|
|
@ -6,8 +6,9 @@
|
||||||
"tsBuildInfoFile": "./lib/.tsbuildinfo",
|
"tsBuildInfoFile": "./lib/.tsbuildinfo",
|
||||||
"rootDir": "src",
|
"rootDir": "src",
|
||||||
"outDir": "lib",
|
"outDir": "lib",
|
||||||
"noImplicitAny": false,
|
"jsx": "react",
|
||||||
"jsx": "react"
|
"allowJs": true
|
||||||
},
|
},
|
||||||
"exclude": ["node_modules", "**/__tests__/**/*", "**/lib/**/*", "src/client"]
|
"include": ["src"],
|
||||||
|
"exclude": ["**/__tests__/**/*", "src/client"]
|
||||||
}
|
}
|
||||||
|
|
393
yarn.lock
393
yarn.lock
|
@ -3952,10 +3952,29 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
|
|
||||||
"@types/cssnano@^4.0.0":
|
"@types/copy-webpack-plugin@^8.0.1":
|
||||||
version "4.0.0"
|
version "8.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/@types/cssnano/-/cssnano-4.0.0.tgz#f1bb29d6d0813861a3d87e02946b2988d0110d4e"
|
resolved "https://registry.yarnpkg.com/@types/copy-webpack-plugin/-/copy-webpack-plugin-8.0.1.tgz#dc0a8801eeaef3dca812df793d1afc84fb8d648f"
|
||||||
integrity sha512-BC/2ibKZfPIaBLBNzkitdW1IvvX/LKW6/QXGc4Su/tAJ7mQ3f2CKBuGCCKaqGAnoKwzfuC7G/recpkARwdOwuA==
|
integrity sha512-TwEeGse0/wq+t3SFW0DEwroMS/cDkwVZT+vj7tMAYTp7llt/yz6NuW2n04X2M5P/kSfBQOORhrHAN2mqZdmybg==
|
||||||
|
dependencies:
|
||||||
|
"@types/node" "*"
|
||||||
|
tapable "^2.0.0"
|
||||||
|
webpack "^5.1.0"
|
||||||
|
|
||||||
|
"@types/css-minimizer-webpack-plugin@^3.0.2":
|
||||||
|
version "3.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.0.2.tgz#ed58bbbde8a7b7591118aa93d8f8d0cdc0cc6173"
|
||||||
|
integrity sha512-Y5dt+W/zZXSVpGiVIAlDHRhmUuL2Wd/3mYld5/qaJ87ORuTVVIwmLZyPKWMPk8eVjdVng1641VpRZ57rd7ZeYw==
|
||||||
|
dependencies:
|
||||||
|
"@types/cssnano" "*"
|
||||||
|
postcss "^8.2.9"
|
||||||
|
tapable "^2.2.0"
|
||||||
|
webpack "^5.37.0"
|
||||||
|
|
||||||
|
"@types/cssnano@*", "@types/cssnano@^4.0.0":
|
||||||
|
version "4.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/cssnano/-/cssnano-4.0.1.tgz#67fa912753d80973a016e7684a47fedf338aacff"
|
||||||
|
integrity sha512-hGOroxRTBkYl5gSBRJOffhV4+io+Y2bFX1VP7LgKEVHJt/LPPJaWUIuDAz74Vlp7l7hCDZfaDi7iPxwNwuVA4Q==
|
||||||
dependencies:
|
dependencies:
|
||||||
postcss "5 - 7"
|
postcss "5 - 7"
|
||||||
|
|
||||||
|
@ -4015,21 +4034,16 @@
|
||||||
"@types/estree" "*"
|
"@types/estree" "*"
|
||||||
"@types/json-schema" "*"
|
"@types/json-schema" "*"
|
||||||
|
|
||||||
"@types/estree@*":
|
"@types/estree@*", "@types/estree@^0.0.50":
|
||||||
version "0.0.48"
|
version "0.0.50"
|
||||||
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.48.tgz#18dc8091b285df90db2f25aa7d906cfc394b7f74"
|
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz#1e0caa9364d3fccd2931c3ed96fdbeaa5d4cca83"
|
||||||
integrity sha512-LfZwXoGUDo0C3me81HXgkBg5CTQYb6xzEl+fNmbO4JdRiSKQ8A0GD1OBBvKAIsbCUgoyAty7m99GqqMQe784ew==
|
integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==
|
||||||
|
|
||||||
"@types/estree@0.0.39":
|
"@types/estree@0.0.39":
|
||||||
version "0.0.39"
|
version "0.0.39"
|
||||||
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
|
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
|
||||||
integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
|
integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
|
||||||
|
|
||||||
"@types/estree@^0.0.47":
|
|
||||||
version "0.0.47"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.47.tgz#d7a51db20f0650efec24cd04994f523d93172ed4"
|
|
||||||
integrity sha512-c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg==
|
|
||||||
|
|
||||||
"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.18":
|
"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.18":
|
||||||
version "4.17.21"
|
version "4.17.21"
|
||||||
resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.21.tgz#a427278e106bca77b83ad85221eae709a3414d42"
|
resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.21.tgz#a427278e106bca77b83ad85221eae709a3414d42"
|
||||||
|
@ -4178,10 +4192,10 @@
|
||||||
ast-types "0.12.1"
|
ast-types "0.12.1"
|
||||||
recast "0.17.2"
|
recast "0.17.2"
|
||||||
|
|
||||||
"@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6", "@types/json-schema@^7.0.7":
|
"@types/json-schema@*", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8":
|
||||||
version "7.0.7"
|
version "7.0.9"
|
||||||
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad"
|
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d"
|
||||||
integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==
|
integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==
|
||||||
|
|
||||||
"@types/json5@^0.0.29":
|
"@types/json5@^0.0.29":
|
||||||
version "0.0.29"
|
version "0.0.29"
|
||||||
|
@ -4239,6 +4253,15 @@
|
||||||
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a"
|
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a"
|
||||||
integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==
|
integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==
|
||||||
|
|
||||||
|
"@types/mini-css-extract-plugin@^2.3.0":
|
||||||
|
version "2.3.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/mini-css-extract-plugin/-/mini-css-extract-plugin-2.3.0.tgz#2637bc09347ffa21b75f91b93dd00ce3d3971872"
|
||||||
|
integrity sha512-DeEkl1HsCDij3P7tfIWhQENVXz4wE17Ew0+5+KRh5HAcFcIZMfQg4HxKwEIqulVALYyv7JKisn4BPu3f7OHPVQ==
|
||||||
|
dependencies:
|
||||||
|
"@types/node" "*"
|
||||||
|
tapable "^2.2.0"
|
||||||
|
webpack "^5"
|
||||||
|
|
||||||
"@types/minimatch@*":
|
"@types/minimatch@*":
|
||||||
version "3.0.4"
|
version "3.0.4"
|
||||||
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz#f0ec25dbf2f0e4b18647313ac031134ca5b24b21"
|
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz#f0ec25dbf2f0e4b18647313ac031134ca5b24b21"
|
||||||
|
@ -4256,6 +4279,11 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
|
|
||||||
|
"@types/module-alias@^2.0.1":
|
||||||
|
version "2.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/module-alias/-/module-alias-2.0.1.tgz#e5893236ce922152d57c5f3f978f764f4deeb45f"
|
||||||
|
integrity sha512-DN/CCT1HQG6HquBNJdLkvV+4v5l/oEuwOHUPLxI+Eub0NED+lk0YUfba04WGH90EINiUrNgClkNnwGmbICeWMQ==
|
||||||
|
|
||||||
"@types/node-fetch@^2.1.6":
|
"@types/node-fetch@^2.1.6":
|
||||||
version "2.5.10"
|
version "2.5.10"
|
||||||
resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.10.tgz#9b4d4a0425562f9fcea70b12cb3fcdd946ca8132"
|
resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.10.tgz#9b4d4a0425562f9fcea70b12cb3fcdd946ca8132"
|
||||||
|
@ -4357,6 +4385,13 @@
|
||||||
"@types/webpack" "^4"
|
"@types/webpack" "^4"
|
||||||
"@types/webpack-dev-server" "*"
|
"@types/webpack-dev-server" "*"
|
||||||
|
|
||||||
|
"@types/react-dom@^17.0.9":
|
||||||
|
version "17.0.9"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.9.tgz#441a981da9d7be117042e1a6fd3dac4b30f55add"
|
||||||
|
integrity sha512-wIvGxLfgpVDSAMH5utdL9Ngm5Owu0VsGmldro3ORLXV8CShrL8awVj06NuEXFQ5xyaYfdca7Sgbk/50Ri1GdPg==
|
||||||
|
dependencies:
|
||||||
|
"@types/react" "*"
|
||||||
|
|
||||||
"@types/react-helmet@*", "@types/react-helmet@^6.0.0":
|
"@types/react-helmet@*", "@types/react-helmet@^6.0.0":
|
||||||
version "6.1.2"
|
version "6.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/@types/react-helmet/-/react-helmet-6.1.2.tgz#e9d7d16b29e4ec5716711c52c35c3cec45819eac"
|
resolved "https://registry.yarnpkg.com/@types/react-helmet/-/react-helmet-6.1.2.tgz#e9d7d16b29e4ec5716711c52c35c3cec45819eac"
|
||||||
|
@ -4426,6 +4461,11 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
|
|
||||||
|
"@types/rtl-detect@^1.0.0":
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/rtl-detect/-/rtl-detect-1.0.0.tgz#5791e18a111f2b8b5b328160af97f3991a5697a5"
|
||||||
|
integrity sha512-lyYh44YgrejEK9/5rhASghvRUOxrSJyyyQmqK7L6F/V5qs6PY1RfCi1VbjSkY6kuDt7lzQyhd006slhda4Oypg==
|
||||||
|
|
||||||
"@types/rtlcss@^3.1.1":
|
"@types/rtlcss@^3.1.1":
|
||||||
version "3.1.1"
|
version "3.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/@types/rtlcss/-/rtlcss-3.1.1.tgz#f091b04a2c48b92317228113a2a235c755d51c77"
|
resolved "https://registry.yarnpkg.com/@types/rtlcss/-/rtlcss-3.1.1.tgz#f091b04a2c48b92317228113a2a235c755d51c77"
|
||||||
|
@ -4455,6 +4495,13 @@
|
||||||
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.8.tgz#508a27995498d7586dcecd77c25e289bfaf90c59"
|
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.8.tgz#508a27995498d7586dcecd77c25e289bfaf90c59"
|
||||||
integrity sha512-D/2EJvAlCEtYFEYmmlGwbGXuK886HzyCc3nZX/tkFTQdEU8jZDAgiv08P162yB17y4ZXZoq7yFAnW4GDBb9Now==
|
integrity sha512-D/2EJvAlCEtYFEYmmlGwbGXuK886HzyCc3nZX/tkFTQdEU8jZDAgiv08P162yB17y4ZXZoq7yFAnW4GDBb9Now==
|
||||||
|
|
||||||
|
"@types/serve-handler@^6.1.1":
|
||||||
|
version "6.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/serve-handler/-/serve-handler-6.1.1.tgz#629dc9a62b201ab79a216e1e46e162aa4c8d1455"
|
||||||
|
integrity sha512-bIwSmD+OV8w0t2e7EWsuQYlGoS1o5aEdVktgkXaa43Zm0qVWi21xaSRb3DQA1UXD+DJ5bRq1Rgu14ZczB+CjIQ==
|
||||||
|
dependencies:
|
||||||
|
"@types/node" "*"
|
||||||
|
|
||||||
"@types/serve-static@*":
|
"@types/serve-static@*":
|
||||||
version "1.13.9"
|
version "1.13.9"
|
||||||
resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.9.tgz#aacf28a85a05ee29a11fb7c3ead935ac56f33e4e"
|
resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.9.tgz#aacf28a85a05ee29a11fb7c3ead935ac56f33e4e"
|
||||||
|
@ -4496,6 +4543,13 @@
|
||||||
resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.7.tgz#545158342f949e8fd3bfd813224971ecddc3fac4"
|
resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.7.tgz#545158342f949e8fd3bfd813224971ecddc3fac4"
|
||||||
integrity sha512-0VBprVqfgFD7Ehb2vd8Lh9TG3jP98gvr8rgehQqzztZNI7o8zS8Ad4jyZneKELphpuE212D8J70LnSNQSyO6bQ==
|
integrity sha512-0VBprVqfgFD7Ehb2vd8Lh9TG3jP98gvr8rgehQqzztZNI7o8zS8Ad4jyZneKELphpuE212D8J70LnSNQSyO6bQ==
|
||||||
|
|
||||||
|
"@types/terser-webpack-plugin@^5.2.0":
|
||||||
|
version "5.2.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/terser-webpack-plugin/-/terser-webpack-plugin-5.2.0.tgz#6aaec696593216917f9f03266bed222f8253483b"
|
||||||
|
integrity sha512-iHDR2pRfFjGyDqCALX2tgUgFtGoQf2AJhKpC2XD1IMBQVJF2bny6WChGRDKj9eaZJl4F2RmvBhxJNtVPj7aTRw==
|
||||||
|
dependencies:
|
||||||
|
terser-webpack-plugin "*"
|
||||||
|
|
||||||
"@types/uglify-js@*":
|
"@types/uglify-js@*":
|
||||||
version "3.13.0"
|
version "3.13.0"
|
||||||
resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.13.0.tgz#1cad8df1fb0b143c5aba08de5712ea9d1ff71124"
|
resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.13.0.tgz#1cad8df1fb0b143c5aba08de5712ea9d1ff71124"
|
||||||
|
@ -4515,6 +4569,15 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
|
|
||||||
|
"@types/webpack-bundle-analyzer@^4.4.1":
|
||||||
|
version "4.4.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.4.1.tgz#bcc2501be10c8cdd1d170bc6b7847b3321f20440"
|
||||||
|
integrity sha512-yQAj3l7bIYL+QRRlNJt6gyP+zrXZOlgaR4wsX0WY4yzZIbv41ZibREfZvuYjxY0iVtvQQlbhx0AeokkCuqUAQg==
|
||||||
|
dependencies:
|
||||||
|
"@types/node" "*"
|
||||||
|
tapable "^2.2.0"
|
||||||
|
webpack "^5"
|
||||||
|
|
||||||
"@types/webpack-dev-server@*", "@types/webpack-dev-server@^3.11.1":
|
"@types/webpack-dev-server@*", "@types/webpack-dev-server@^3.11.1":
|
||||||
version "3.11.4"
|
version "3.11.4"
|
||||||
resolved "https://registry.yarnpkg.com/@types/webpack-dev-server/-/webpack-dev-server-3.11.4.tgz#90d47dd660b696d409431ab8c1e9fa3615103a07"
|
resolved "https://registry.yarnpkg.com/@types/webpack-dev-server/-/webpack-dev-server-3.11.4.tgz#90d47dd660b696d409431ab8c1e9fa3615103a07"
|
||||||
|
@ -4654,125 +4717,125 @@
|
||||||
resolved "https://registry.yarnpkg.com/@ungap/from-entries/-/from-entries-0.2.1.tgz#7e86196b8b2e99d73106a8f25c2a068326346354"
|
resolved "https://registry.yarnpkg.com/@ungap/from-entries/-/from-entries-0.2.1.tgz#7e86196b8b2e99d73106a8f25c2a068326346354"
|
||||||
integrity sha512-CAqefTFAfnUPwYqsWHXpOxHaq1Zo5UQ3m9Zm2p09LggGe57rqHoBn3c++xcoomzXKynAUuiBMDUCQvKMnXjUpA==
|
integrity sha512-CAqefTFAfnUPwYqsWHXpOxHaq1Zo5UQ3m9Zm2p09LggGe57rqHoBn3c++xcoomzXKynAUuiBMDUCQvKMnXjUpA==
|
||||||
|
|
||||||
"@webassemblyjs/ast@1.11.0":
|
"@webassemblyjs/ast@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.0.tgz#a5aa679efdc9e51707a4207139da57920555961f"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7"
|
||||||
integrity sha512-kX2W49LWsbthrmIRMbQZuQDhGtjyqXfEmmHyEi4XWnSZtPmxY0+3anPIzsnRb45VH/J55zlOfWvZuY47aJZTJg==
|
integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@webassemblyjs/helper-numbers" "1.11.0"
|
"@webassemblyjs/helper-numbers" "1.11.1"
|
||||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.0"
|
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
|
||||||
|
|
||||||
"@webassemblyjs/floating-point-hex-parser@1.11.0":
|
"@webassemblyjs/floating-point-hex-parser@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.0.tgz#34d62052f453cd43101d72eab4966a022587947c"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz#f6c61a705f0fd7a6aecaa4e8198f23d9dc179e4f"
|
||||||
integrity sha512-Q/aVYs/VnPDVYvsCBL/gSgwmfjeCb4LW8+TMrO3cSzJImgv8lxxEPM2JA5jMrivE7LSz3V+PFqtMbls3m1exDA==
|
integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==
|
||||||
|
|
||||||
"@webassemblyjs/helper-api-error@1.11.0":
|
"@webassemblyjs/helper-api-error@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.0.tgz#aaea8fb3b923f4aaa9b512ff541b013ffb68d2d4"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz#1a63192d8788e5c012800ba6a7a46c705288fd16"
|
||||||
integrity sha512-baT/va95eXiXb2QflSx95QGT5ClzWpGaa8L7JnJbgzoYeaA27FCvuBXU758l+KXWRndEmUXjP0Q5fibhavIn8w==
|
integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==
|
||||||
|
|
||||||
"@webassemblyjs/helper-buffer@1.11.0":
|
"@webassemblyjs/helper-buffer@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.0.tgz#d026c25d175e388a7dbda9694e91e743cbe9b642"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz#832a900eb444884cde9a7cad467f81500f5e5ab5"
|
||||||
integrity sha512-u9HPBEl4DS+vA8qLQdEQ6N/eJQ7gT7aNvMIo8AAWvAl/xMrcOSiI2M0MAnMCy3jIFke7bEee/JwdX1nUpCtdyA==
|
integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==
|
||||||
|
|
||||||
"@webassemblyjs/helper-numbers@1.11.0":
|
"@webassemblyjs/helper-numbers@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.0.tgz#7ab04172d54e312cc6ea4286d7d9fa27c88cd4f9"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz#64d81da219fbbba1e3bd1bfc74f6e8c4e10a62ae"
|
||||||
integrity sha512-DhRQKelIj01s5IgdsOJMKLppI+4zpmcMQ3XboFPLwCpSNH6Hqo1ritgHgD0nqHeSYqofA6aBN/NmXuGjM1jEfQ==
|
integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@webassemblyjs/floating-point-hex-parser" "1.11.0"
|
"@webassemblyjs/floating-point-hex-parser" "1.11.1"
|
||||||
"@webassemblyjs/helper-api-error" "1.11.0"
|
"@webassemblyjs/helper-api-error" "1.11.1"
|
||||||
"@xtuc/long" "4.2.2"
|
"@xtuc/long" "4.2.2"
|
||||||
|
|
||||||
"@webassemblyjs/helper-wasm-bytecode@1.11.0":
|
"@webassemblyjs/helper-wasm-bytecode@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.0.tgz#85fdcda4129902fe86f81abf7e7236953ec5a4e1"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz#f328241e41e7b199d0b20c18e88429c4433295e1"
|
||||||
integrity sha512-MbmhvxXExm542tWREgSFnOVo07fDpsBJg3sIl6fSp9xuu75eGz5lz31q7wTLffwL3Za7XNRCMZy210+tnsUSEA==
|
integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==
|
||||||
|
|
||||||
"@webassemblyjs/helper-wasm-section@1.11.0":
|
"@webassemblyjs/helper-wasm-section@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.0.tgz#9ce2cc89300262509c801b4af113d1ca25c1a75b"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz#21ee065a7b635f319e738f0dd73bfbda281c097a"
|
||||||
integrity sha512-3Eb88hcbfY/FCukrg6i3EH8H2UsD7x8Vy47iVJrP967A9JGqgBVL9aH71SETPx1JrGsOUVLo0c7vMCN22ytJew==
|
integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@webassemblyjs/ast" "1.11.0"
|
"@webassemblyjs/ast" "1.11.1"
|
||||||
"@webassemblyjs/helper-buffer" "1.11.0"
|
"@webassemblyjs/helper-buffer" "1.11.1"
|
||||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.0"
|
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
|
||||||
"@webassemblyjs/wasm-gen" "1.11.0"
|
"@webassemblyjs/wasm-gen" "1.11.1"
|
||||||
|
|
||||||
"@webassemblyjs/ieee754@1.11.0":
|
"@webassemblyjs/ieee754@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.0.tgz#46975d583f9828f5d094ac210e219441c4e6f5cf"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz#963929e9bbd05709e7e12243a099180812992614"
|
||||||
integrity sha512-KXzOqpcYQwAfeQ6WbF6HXo+0udBNmw0iXDmEK5sFlmQdmND+tr773Ti8/5T/M6Tl/413ArSJErATd8In3B+WBA==
|
integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@xtuc/ieee754" "^1.2.0"
|
"@xtuc/ieee754" "^1.2.0"
|
||||||
|
|
||||||
"@webassemblyjs/leb128@1.11.0":
|
"@webassemblyjs/leb128@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.0.tgz#f7353de1df38aa201cba9fb88b43f41f75ff403b"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz#ce814b45574e93d76bae1fb2644ab9cdd9527aa5"
|
||||||
integrity sha512-aqbsHa1mSQAbeeNcl38un6qVY++hh8OpCOzxhixSYgbRfNWcxJNJQwe2rezK9XEcssJbbWIkblaJRwGMS9zp+g==
|
integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@xtuc/long" "4.2.2"
|
"@xtuc/long" "4.2.2"
|
||||||
|
|
||||||
"@webassemblyjs/utf8@1.11.0":
|
"@webassemblyjs/utf8@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.0.tgz#86e48f959cf49e0e5091f069a709b862f5a2cadf"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz#d1f8b764369e7c6e6bae350e854dec9a59f0a3ff"
|
||||||
integrity sha512-A/lclGxH6SpSLSyFowMzO/+aDEPU4hvEiooCMXQPcQFPPJaYcPQNKGOCLUySJsYJ4trbpr+Fs08n4jelkVTGVw==
|
integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==
|
||||||
|
|
||||||
"@webassemblyjs/wasm-edit@1.11.0":
|
"@webassemblyjs/wasm-edit@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.0.tgz#ee4a5c9f677046a210542ae63897094c2027cb78"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz#ad206ebf4bf95a058ce9880a8c092c5dec8193d6"
|
||||||
integrity sha512-JHQ0damXy0G6J9ucyKVXO2j08JVJ2ntkdJlq1UTiUrIgfGMmA7Ik5VdC/L8hBK46kVJgujkBIoMtT8yVr+yVOQ==
|
integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@webassemblyjs/ast" "1.11.0"
|
"@webassemblyjs/ast" "1.11.1"
|
||||||
"@webassemblyjs/helper-buffer" "1.11.0"
|
"@webassemblyjs/helper-buffer" "1.11.1"
|
||||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.0"
|
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
|
||||||
"@webassemblyjs/helper-wasm-section" "1.11.0"
|
"@webassemblyjs/helper-wasm-section" "1.11.1"
|
||||||
"@webassemblyjs/wasm-gen" "1.11.0"
|
"@webassemblyjs/wasm-gen" "1.11.1"
|
||||||
"@webassemblyjs/wasm-opt" "1.11.0"
|
"@webassemblyjs/wasm-opt" "1.11.1"
|
||||||
"@webassemblyjs/wasm-parser" "1.11.0"
|
"@webassemblyjs/wasm-parser" "1.11.1"
|
||||||
"@webassemblyjs/wast-printer" "1.11.0"
|
"@webassemblyjs/wast-printer" "1.11.1"
|
||||||
|
|
||||||
"@webassemblyjs/wasm-gen@1.11.0":
|
"@webassemblyjs/wasm-gen@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.0.tgz#3cdb35e70082d42a35166988dda64f24ceb97abe"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz#86c5ea304849759b7d88c47a32f4f039ae3c8f76"
|
||||||
integrity sha512-BEUv1aj0WptCZ9kIS30th5ILASUnAPEvE3tVMTrItnZRT9tXCLW2LEXT8ezLw59rqPP9klh9LPmpU+WmRQmCPQ==
|
integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@webassemblyjs/ast" "1.11.0"
|
"@webassemblyjs/ast" "1.11.1"
|
||||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.0"
|
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
|
||||||
"@webassemblyjs/ieee754" "1.11.0"
|
"@webassemblyjs/ieee754" "1.11.1"
|
||||||
"@webassemblyjs/leb128" "1.11.0"
|
"@webassemblyjs/leb128" "1.11.1"
|
||||||
"@webassemblyjs/utf8" "1.11.0"
|
"@webassemblyjs/utf8" "1.11.1"
|
||||||
|
|
||||||
"@webassemblyjs/wasm-opt@1.11.0":
|
"@webassemblyjs/wasm-opt@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.0.tgz#1638ae188137f4bb031f568a413cd24d32f92978"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz#657b4c2202f4cf3b345f8a4c6461c8c2418985f2"
|
||||||
integrity sha512-tHUSP5F4ywyh3hZ0+fDQuWxKx3mJiPeFufg+9gwTpYp324mPCQgnuVKwzLTZVqj0duRDovnPaZqDwoyhIO8kYg==
|
integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@webassemblyjs/ast" "1.11.0"
|
"@webassemblyjs/ast" "1.11.1"
|
||||||
"@webassemblyjs/helper-buffer" "1.11.0"
|
"@webassemblyjs/helper-buffer" "1.11.1"
|
||||||
"@webassemblyjs/wasm-gen" "1.11.0"
|
"@webassemblyjs/wasm-gen" "1.11.1"
|
||||||
"@webassemblyjs/wasm-parser" "1.11.0"
|
"@webassemblyjs/wasm-parser" "1.11.1"
|
||||||
|
|
||||||
"@webassemblyjs/wasm-parser@1.11.0":
|
"@webassemblyjs/wasm-parser@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.0.tgz#3e680b8830d5b13d1ec86cc42f38f3d4a7700754"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199"
|
||||||
integrity sha512-6L285Sgu9gphrcpDXINvm0M9BskznnzJTE7gYkjDbxET28shDqp27wpruyx3C2S/dvEwiigBwLA1cz7lNUi0kw==
|
integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@webassemblyjs/ast" "1.11.0"
|
"@webassemblyjs/ast" "1.11.1"
|
||||||
"@webassemblyjs/helper-api-error" "1.11.0"
|
"@webassemblyjs/helper-api-error" "1.11.1"
|
||||||
"@webassemblyjs/helper-wasm-bytecode" "1.11.0"
|
"@webassemblyjs/helper-wasm-bytecode" "1.11.1"
|
||||||
"@webassemblyjs/ieee754" "1.11.0"
|
"@webassemblyjs/ieee754" "1.11.1"
|
||||||
"@webassemblyjs/leb128" "1.11.0"
|
"@webassemblyjs/leb128" "1.11.1"
|
||||||
"@webassemblyjs/utf8" "1.11.0"
|
"@webassemblyjs/utf8" "1.11.1"
|
||||||
|
|
||||||
"@webassemblyjs/wast-printer@1.11.0":
|
"@webassemblyjs/wast-printer@1.11.1":
|
||||||
version "1.11.0"
|
version "1.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.0.tgz#680d1f6a5365d6d401974a8e949e05474e1fab7e"
|
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz#d0c73beda8eec5426f10ae8ef55cee5e7084c2f0"
|
||||||
integrity sha512-Fg5OX46pRdTgB7rKIUojkh9vXaVN6sGYCnEiJN1GYkb0RPwShZXp6KTDqmoMdQPKhcroOXh3fEzmkWmCYaKYhQ==
|
integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@webassemblyjs/ast" "1.11.0"
|
"@webassemblyjs/ast" "1.11.1"
|
||||||
"@xtuc/long" "4.2.2"
|
"@xtuc/long" "4.2.2"
|
||||||
|
|
||||||
"@xtuc/ieee754@^1.2.0":
|
"@xtuc/ieee754@^1.2.0":
|
||||||
|
@ -4843,6 +4906,11 @@ acorn-globals@^6.0.0:
|
||||||
acorn "^7.1.1"
|
acorn "^7.1.1"
|
||||||
acorn-walk "^7.1.1"
|
acorn-walk "^7.1.1"
|
||||||
|
|
||||||
|
acorn-import-assertions@^1.7.6:
|
||||||
|
version "1.7.6"
|
||||||
|
resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.7.6.tgz#580e3ffcae6770eebeec76c3b9723201e9d01f78"
|
||||||
|
integrity sha512-FlVvVFA1TX6l3lp8VjDnYYq7R1nyW6x3svAt4nDgrWQ9SBaSh9CnbwgSUTasgfNfOG5HlM1ehugCvM+hjo56LA==
|
||||||
|
|
||||||
acorn-jsx@^5.0.1, acorn-jsx@^5.3.1:
|
acorn-jsx@^5.0.1, acorn-jsx@^5.3.1:
|
||||||
version "5.3.1"
|
version "5.3.1"
|
||||||
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
|
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
|
||||||
|
@ -4868,10 +4936,10 @@ acorn@^7.1.1, acorn@^7.4.0:
|
||||||
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
|
||||||
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
|
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
|
||||||
|
|
||||||
acorn@^8.0.4, acorn@^8.2.1, acorn@^8.2.4, acorn@^8.4.0:
|
acorn@^8.0.4, acorn@^8.2.4, acorn@^8.4.0, acorn@^8.4.1:
|
||||||
version "8.4.1"
|
version "8.5.0"
|
||||||
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.4.1.tgz#56c36251fc7cabc7096adc18f05afe814321a28c"
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.5.0.tgz#4512ccb99b3698c752591e9bb4472e38ad43cee2"
|
||||||
integrity sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==
|
integrity sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==
|
||||||
|
|
||||||
address@1.1.2, address@^1.0.1:
|
address@1.1.2, address@^1.0.1:
|
||||||
version "1.1.2"
|
version "1.1.2"
|
||||||
|
@ -8593,10 +8661,10 @@ es-abstract@^1.17.2, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-
|
||||||
string.prototype.trimstart "^1.0.4"
|
string.prototype.trimstart "^1.0.4"
|
||||||
unbox-primitive "^1.0.1"
|
unbox-primitive "^1.0.1"
|
||||||
|
|
||||||
es-module-lexer@^0.6.0:
|
es-module-lexer@^0.7.1:
|
||||||
version "0.6.0"
|
version "0.7.1"
|
||||||
resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.6.0.tgz#e72ab05b7412e62b9be37c37a09bdb6000d706f0"
|
resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.7.1.tgz#c2c8e0f46f2df06274cdaf0dd3f3b33e0a0b267d"
|
||||||
integrity sha512-f8kcHX1ArhllUtb/wVSyvygoKCznIjnxhLxy7TCvIiMdT7fL4ZDTIKaadMe6eLvOXg6Wk02UeoFgUoZ2EKZZUA==
|
integrity sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==
|
||||||
|
|
||||||
es-to-primitive@^1.2.1:
|
es-to-primitive@^1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
|
@ -12286,10 +12354,10 @@ jest-worker@^26.2.1, jest-worker@^26.6.2:
|
||||||
merge-stream "^2.0.0"
|
merge-stream "^2.0.0"
|
||||||
supports-color "^7.0.0"
|
supports-color "^7.0.0"
|
||||||
|
|
||||||
jest-worker@^27.0.2:
|
jest-worker@^27.0.2, jest-worker@^27.0.6:
|
||||||
version "27.0.2"
|
version "27.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.0.2.tgz#4ebeb56cef48b3e7514552f80d0d80c0129f0b05"
|
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.2.0.tgz#11eef39f1c88f41384ca235c2f48fe50bc229bc0"
|
||||||
integrity sha512-EoBdilOTTyOgmHXtw/cPc+ZrCA0KJMrkXzkrPGNwLmnvvlN1nj7MPrxpT7m+otSv2e1TLaVffzDnE/LB14zJMg==
|
integrity sha512-laB0ZVIBz+voh/QQy9dmUuuDsadixeerrKqyVpgPz+CCWiOYjOBabUXHIXZhsdvkWbLqSHbgkAHWl5cg24Q6RA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
merge-stream "^2.0.0"
|
merge-stream "^2.0.0"
|
||||||
|
@ -17685,12 +17753,12 @@ schema-utils@^2.6.5:
|
||||||
ajv "^6.12.4"
|
ajv "^6.12.4"
|
||||||
ajv-keywords "^3.5.2"
|
ajv-keywords "^3.5.2"
|
||||||
|
|
||||||
schema-utils@^3.0.0:
|
schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1:
|
||||||
version "3.0.0"
|
version "3.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef"
|
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281"
|
||||||
integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==
|
integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/json-schema" "^7.0.6"
|
"@types/json-schema" "^7.0.8"
|
||||||
ajv "^6.12.5"
|
ajv "^6.12.5"
|
||||||
ajv-keywords "^3.5.2"
|
ajv-keywords "^3.5.2"
|
||||||
|
|
||||||
|
@ -17788,6 +17856,13 @@ serialize-javascript@^5.0.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
randombytes "^2.1.0"
|
randombytes "^2.1.0"
|
||||||
|
|
||||||
|
serialize-javascript@^6.0.0:
|
||||||
|
version "6.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8"
|
||||||
|
integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==
|
||||||
|
dependencies:
|
||||||
|
randombytes "^2.1.0"
|
||||||
|
|
||||||
serve-handler@6.1.3, serve-handler@^6.1.3:
|
serve-handler@6.1.3, serve-handler@^6.1.3:
|
||||||
version "6.1.3"
|
version "6.1.3"
|
||||||
resolved "https://registry.yarnpkg.com/serve-handler/-/serve-handler-6.1.3.tgz#1bf8c5ae138712af55c758477533b9117f6435e8"
|
resolved "https://registry.yarnpkg.com/serve-handler/-/serve-handler-6.1.3.tgz#1bf8c5ae138712af55c758477533b9117f6435e8"
|
||||||
|
@ -18155,10 +18230,10 @@ source-map-resolve@^0.5.0:
|
||||||
source-map-url "^0.4.0"
|
source-map-url "^0.4.0"
|
||||||
urix "^0.1.0"
|
urix "^0.1.0"
|
||||||
|
|
||||||
source-map-support@^0.5.16, source-map-support@^0.5.19, source-map-support@^0.5.6, source-map-support@~0.5.12, source-map-support@~0.5.19:
|
source-map-support@^0.5.16, source-map-support@^0.5.19, source-map-support@^0.5.6, source-map-support@~0.5.12, source-map-support@~0.5.20:
|
||||||
version "0.5.19"
|
version "0.5.20"
|
||||||
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
|
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9"
|
||||||
integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
|
integrity sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==
|
||||||
dependencies:
|
dependencies:
|
||||||
buffer-from "^1.0.0"
|
buffer-from "^1.0.0"
|
||||||
source-map "^0.6.0"
|
source-map "^0.6.0"
|
||||||
|
@ -19027,17 +19102,17 @@ terminal-link@^2.0.0:
|
||||||
ansi-escapes "^4.2.1"
|
ansi-escapes "^4.2.1"
|
||||||
supports-hyperlinks "^2.0.0"
|
supports-hyperlinks "^2.0.0"
|
||||||
|
|
||||||
terser-webpack-plugin@^5.1.3:
|
terser-webpack-plugin@*, terser-webpack-plugin@^5.1.3:
|
||||||
version "5.1.3"
|
version "5.2.4"
|
||||||
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.1.3.tgz#30033e955ca28b55664f1e4b30a1347e61aa23af"
|
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.2.4.tgz#ad1be7639b1cbe3ea49fab995cbe7224b31747a1"
|
||||||
integrity sha512-cxGbMqr6+A2hrIB5ehFIF+F/iST5ZOxvOmy9zih9ySbP1C2oEWQSOUS+2SNBTjzx5xLKO4xnod9eywdfq1Nb9A==
|
integrity sha512-E2CkNMN+1cho04YpdANyRrn8CyN4yMy+WdFKZIySFZrGXZxJwJP6PMNGGc/Mcr6qygQHUUqRxnAPmi0M9f00XA==
|
||||||
dependencies:
|
dependencies:
|
||||||
jest-worker "^27.0.2"
|
jest-worker "^27.0.6"
|
||||||
p-limit "^3.1.0"
|
p-limit "^3.1.0"
|
||||||
schema-utils "^3.0.0"
|
schema-utils "^3.1.1"
|
||||||
serialize-javascript "^5.0.1"
|
serialize-javascript "^6.0.0"
|
||||||
source-map "^0.6.1"
|
source-map "^0.6.1"
|
||||||
terser "^5.7.0"
|
terser "^5.7.2"
|
||||||
|
|
||||||
terser@^4.6.3:
|
terser@^4.6.3:
|
||||||
version "4.8.0"
|
version "4.8.0"
|
||||||
|
@ -19048,14 +19123,14 @@ terser@^4.6.3:
|
||||||
source-map "~0.6.1"
|
source-map "~0.6.1"
|
||||||
source-map-support "~0.5.12"
|
source-map-support "~0.5.12"
|
||||||
|
|
||||||
terser@^5.0.0, terser@^5.7.0:
|
terser@^5.0.0, terser@^5.7.2:
|
||||||
version "5.7.0"
|
version "5.9.0"
|
||||||
resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.0.tgz#a761eeec206bc87b605ab13029876ead938ae693"
|
resolved "https://registry.yarnpkg.com/terser/-/terser-5.9.0.tgz#47d6e629a522963240f2b55fcaa3c99083d2c351"
|
||||||
integrity sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g==
|
integrity sha512-h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
commander "^2.20.0"
|
commander "^2.20.0"
|
||||||
source-map "~0.7.2"
|
source-map "~0.7.2"
|
||||||
source-map-support "~0.5.19"
|
source-map-support "~0.5.20"
|
||||||
|
|
||||||
test-exclude@^6.0.0:
|
test-exclude@^6.0.0:
|
||||||
version "6.0.0"
|
version "6.0.0"
|
||||||
|
@ -20279,7 +20354,7 @@ webpack-sources@^1.1.0, webpack-sources@^1.4.3:
|
||||||
source-list-map "^2.0.0"
|
source-list-map "^2.0.0"
|
||||||
source-map "~0.6.1"
|
source-map "~0.6.1"
|
||||||
|
|
||||||
webpack-sources@^2.2.0, webpack-sources@^2.3.0:
|
webpack-sources@^2.2.0:
|
||||||
version "2.3.0"
|
version "2.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.0.tgz#9ed2de69b25143a4c18847586ad9eccb19278cfa"
|
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.0.tgz#9ed2de69b25143a4c18847586ad9eccb19278cfa"
|
||||||
integrity sha512-WyOdtwSvOML1kbgtXbTDnEW0jkJ7hZr/bDByIwszhWd/4XX1A3XMkrbFMsuH4+/MfLlZCUzlAdg4r7jaGKEIgQ==
|
integrity sha512-WyOdtwSvOML1kbgtXbTDnEW0jkJ7hZr/bDByIwszhWd/4XX1A3XMkrbFMsuH4+/MfLlZCUzlAdg4r7jaGKEIgQ==
|
||||||
|
@ -20287,21 +20362,27 @@ webpack-sources@^2.2.0, webpack-sources@^2.3.0:
|
||||||
source-list-map "^2.0.1"
|
source-list-map "^2.0.1"
|
||||||
source-map "^0.6.1"
|
source-map "^0.6.1"
|
||||||
|
|
||||||
webpack@^5.40.0:
|
webpack-sources@^3.2.0:
|
||||||
version "5.40.0"
|
version "3.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.40.0.tgz#3182cfd324759d715252cf541901a226e57b5061"
|
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.1.tgz#251a7d9720d75ada1469ca07dbb62f3641a05b6d"
|
||||||
integrity sha512-c7f5e/WWrxXWUzQqTBg54vBs5RgcAgpvKE4F4VegVgfo4x660ZxYUF2/hpMkZUnLjgytVTitjeXaN4IPlXCGIw==
|
integrity sha512-t6BMVLQ0AkjBOoRTZgqrWm7xbXMBzD+XDq2EZ96+vMfn3qKgsvdXZhbPZ4ElUOpdv4u+iiGe+w3+J75iy/bYGA==
|
||||||
|
|
||||||
|
webpack@^5, webpack@^5.1.0, webpack@^5.37.0, webpack@^5.40.0:
|
||||||
|
version "5.53.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.53.0.tgz#f463cd9c6fc1356ae4b9b7ac911fd1f5b2df86af"
|
||||||
|
integrity sha512-RZ1Z3z3ni44snoWjfWeHFyzvd9HMVYDYC5VXmlYUT6NWgEOWdCNpad5Fve2CzzHoRED7WtsKe+FCyP5Vk4pWiQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/eslint-scope" "^3.7.0"
|
"@types/eslint-scope" "^3.7.0"
|
||||||
"@types/estree" "^0.0.47"
|
"@types/estree" "^0.0.50"
|
||||||
"@webassemblyjs/ast" "1.11.0"
|
"@webassemblyjs/ast" "1.11.1"
|
||||||
"@webassemblyjs/wasm-edit" "1.11.0"
|
"@webassemblyjs/wasm-edit" "1.11.1"
|
||||||
"@webassemblyjs/wasm-parser" "1.11.0"
|
"@webassemblyjs/wasm-parser" "1.11.1"
|
||||||
acorn "^8.2.1"
|
acorn "^8.4.1"
|
||||||
|
acorn-import-assertions "^1.7.6"
|
||||||
browserslist "^4.14.5"
|
browserslist "^4.14.5"
|
||||||
chrome-trace-event "^1.0.2"
|
chrome-trace-event "^1.0.2"
|
||||||
enhanced-resolve "^5.8.0"
|
enhanced-resolve "^5.8.0"
|
||||||
es-module-lexer "^0.6.0"
|
es-module-lexer "^0.7.1"
|
||||||
eslint-scope "5.1.1"
|
eslint-scope "5.1.1"
|
||||||
events "^3.2.0"
|
events "^3.2.0"
|
||||||
glob-to-regexp "^0.4.1"
|
glob-to-regexp "^0.4.1"
|
||||||
|
@ -20310,11 +20391,11 @@ webpack@^5.40.0:
|
||||||
loader-runner "^4.2.0"
|
loader-runner "^4.2.0"
|
||||||
mime-types "^2.1.27"
|
mime-types "^2.1.27"
|
||||||
neo-async "^2.6.2"
|
neo-async "^2.6.2"
|
||||||
schema-utils "^3.0.0"
|
schema-utils "^3.1.0"
|
||||||
tapable "^2.1.1"
|
tapable "^2.1.1"
|
||||||
terser-webpack-plugin "^5.1.3"
|
terser-webpack-plugin "^5.1.3"
|
||||||
watchpack "^2.2.0"
|
watchpack "^2.2.0"
|
||||||
webpack-sources "^2.3.0"
|
webpack-sources "^3.2.0"
|
||||||
|
|
||||||
webpackbar@^5.0.0-3:
|
webpackbar@^5.0.0-3:
|
||||||
version "5.0.0-3"
|
version "5.0.0-3"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue