diff --git a/packages/vant-cli/cjs/babel.config.cjs b/packages/vant-cli/cjs/babel.config.cjs deleted file mode 100644 index 6d6271e58..000000000 --- a/packages/vant-cli/cjs/babel.config.cjs +++ /dev/null @@ -1,30 +0,0 @@ -module.exports = function (api, options) { - if (api) { - api.cache.never(); - } - - const { BABEL_MODULE, NODE_ENV } = process.env; - const isTest = NODE_ENV === 'test'; - const useESModules = BABEL_MODULE !== 'commonjs' && !isTest; - - return { - presets: [ - [ - require.resolve('@babel/preset-env'), - { - modules: useESModules ? false : 'commonjs', - loose: options.loose, - }, - ], - require.resolve('@babel/preset-typescript'), - ], - plugins: [ - [ - require.resolve('@vue/babel-plugin-jsx'), - { - enableObjectSlots: options.enableObjectSlots, - }, - ], - ], - }; -}; diff --git a/packages/vant-cli/docs/config.md b/packages/vant-cli/docs/config.md index 66b671709..88303e7fd 100644 --- a/packages/vant-cli/docs/config.md +++ b/packages/vant-cli/docs/config.md @@ -21,8 +21,6 @@ - [site.simulator.url](#sitesimulatorurl) - [site.htmlMeta](#sitehtmlmeta) - [site.enableVConsole](#siteenablevconsole) - - [Babel](#babel) - - [默认配置](#----) - [Postcss](#postcss) - [默认配置](#-----1) - [browserslist](#browserslist) @@ -337,36 +335,13 @@ module.exports = { 是否在 dev 时开启 [vConsole](https://github.com/Tencent/vConsole) 调试,用于移动端 debug。 -## Babel - -通过根目录下的`babel.config.js`文件可以对 Babel 进行配置。 - -### 默认配置 - -推荐使用`vant-cli`内置的 preset,配置如下: - -```js -module.exports = { - presets: ['@vant/cli/preset'], -}; -``` - -`@vant/cli/preset`中默认包含了以下插件: - -- @babel/preset-env(不含 core-js) -- @babel/preset-typescript -- @babel/plugin-transform-object-assign -- @babel/plugin-proposal-optional-chaining -- @babel/plugin-proposal-nullish-coalescing-operator -- @vue/babel-preset-jsx - ## Postcss 通过根目录下的`postcss.config.js`文件可以对 Postcss 进行配置。 ### 默认配置 -`vant-cli`中默认的 Postcss 配置如下: +`vant-cli` 中默认的 Postcss 配置如下: ```js module.exports = { @@ -378,7 +353,7 @@ module.exports = { ## browserslist -推荐在`package.json`文件里添加 browserslist 字段,这个值会被`@babel/preset-env`和`autoprefixer`用来确定目标浏览器的版本,保证编译后代码的兼容性。 +推荐在 `package.json` 文件里添加 browserslist 字段,这个值会被 `autoprefixer` 用来确定目标浏览器的版本,保证编译后代码的兼容性。 在移动端浏览器中使用,可以添加如下配置: diff --git a/packages/vant-cli/docs/directory.md b/packages/vant-cli/docs/directory.md index 44ddd517e..1b870d653 100644 --- a/packages/vant-cli/docs/directory.md +++ b/packages/vant-cli/docs/directory.md @@ -14,7 +14,6 @@ project │ ├─ home.md # 文档首页 │ └─ changelog.md # 更新日志 │ -├─ babel.config.js # Babel 配置文件 ├─ vant.config.mjs # Vant Cli 配置文件 ├─ package.json └─ README.md diff --git a/packages/vant-cli/package.json b/packages/vant-cli/package.json index 16a58d9bd..2df449520 100644 --- a/packages/vant-cli/package.json +++ b/packages/vant-cli/package.json @@ -21,8 +21,7 @@ "cjs", "site", "template", - "bin.js", - "preset.cjs" + "bin.js" ], "keywords": [ "vant" @@ -49,7 +48,6 @@ }, "dependencies": { "@babel/core": "^7.16.0", - "@babel/preset-env": "^7.16.0", "@babel/preset-typescript": "^7.16.0", "@docsearch/css": "3.0.0-alpha.41", "@docsearch/js": "3.0.0-alpha.41", diff --git a/packages/vant-cli/preset.cjs b/packages/vant-cli/preset.cjs deleted file mode 100644 index 2892ed00e..000000000 --- a/packages/vant-cli/preset.cjs +++ /dev/null @@ -1,3 +0,0 @@ -const babelConfig = require('./cjs/babel.config.cjs'); - -module.exports = (api, options) => babelConfig(api, options); diff --git a/packages/vant-cli/src/commands/build.ts b/packages/vant-cli/src/commands/build.ts index 82abe9c2f..a6a0ed7aa 100644 --- a/packages/vant-cli/src/commands/build.ts +++ b/packages/vant-cli/src/commands/build.ts @@ -1,6 +1,6 @@ +import fse from 'fs-extra'; import execa from 'execa'; import { join, relative } from 'path'; -import fse from 'fs-extra'; import { clean } from './clean.js'; import { CSS_LANG } from '../common/css.js'; import { ora, consola } from '../common/logger.js'; @@ -27,12 +27,13 @@ import { setModuleEnv, setBuildTarget, } from '../common/index.js'; +import type { Format } from 'esbuild'; const { remove, copy, readdir, existsSync } = fse; -async function compileFile(filePath: string) { +async function compileFile(filePath: string, format: Format) { if (isScript(filePath)) { - return compileScript(filePath); + return compileScript(filePath, format); } if (isStyle(filePath)) { return compileStyle(filePath); @@ -69,12 +70,14 @@ async function preCompileDir(dir: string) { ); } -async function compileDir(dir: string) { +async function compileDir(dir: string, format: Format) { const files = await readdir(dir); await Promise.all( files.map((filename) => { const filePath = join(dir, filename); - return isDir(filePath) ? compileDir(filePath) : compileFile(filePath); + return isDir(filePath) + ? compileDir(filePath, format) + : compileFile(filePath, format); }) ); } @@ -86,13 +89,13 @@ async function copySourceCode() { async function buildESMOutputs() { setModuleEnv('esmodule'); setBuildTarget('package'); - await compileDir(ES_DIR); + await compileDir(ES_DIR, 'esm'); } async function buildCJSOutputs() { setModuleEnv('commonjs'); setBuildTarget('package'); - await compileDir(LIB_DIR); + await compileDir(LIB_DIR, 'cjs'); } async function buildTypeDeclarations() { diff --git a/packages/vant-cli/src/common/index.ts b/packages/vant-cli/src/common/index.ts index 65d8c5ea8..f057c7f03 100644 --- a/packages/vant-cli/src/common/index.ts +++ b/packages/vant-cli/src/common/index.ts @@ -14,6 +14,7 @@ export const TEST_REGEXP = new RegExp('\\' + sep + 'test$'); export const ASSET_REGEXP = /\.(png|jpe?g|gif|webp|ico|jfif|svg|woff2?|ttf)$/i; export const STYLE_REGEXP = /\.(css|less|scss)$/; export const SCRIPT_REGEXP = /\.(js|ts|jsx|tsx)$/; +export const JSX_REGEXP = /\.(j|t)sx$/; export const ENTRY_EXTS = ['js', 'ts', 'tsx', 'jsx', 'vue']; export function removeExt(path: string) { @@ -46,33 +47,14 @@ export function getComponents() { ); } -export function isDir(dir: string) { - return lstatSync(dir).isDirectory(); -} - -export function isDemoDir(dir: string) { - return DEMO_REGEXP.test(dir); -} - -export function isTestDir(dir: string) { - return TEST_REGEXP.test(dir); -} - -export function isAsset(path: string) { - return ASSET_REGEXP.test(path); -} - -export function isSfc(path: string) { - return SFC_REGEXP.test(path); -} - -export function isStyle(path: string) { - return STYLE_REGEXP.test(path); -} - -export function isScript(path: string) { - return SCRIPT_REGEXP.test(path); -} +export const isDir = (dir: string) => lstatSync(dir).isDirectory(); +export const isDemoDir = (dir: string) => DEMO_REGEXP.test(dir); +export const isTestDir = (dir: string) => TEST_REGEXP.test(dir); +export const isAsset = (path: string) => ASSET_REGEXP.test(path); +export const isSfc = (path: string) => SFC_REGEXP.test(path); +export const isStyle = (path: string) => STYLE_REGEXP.test(path); +export const isScript = (path: string) => SCRIPT_REGEXP.test(path); +export const isJsx = (path: string) => JSX_REGEXP.test(path); const camelizeRE = /-(\w)/g; const pascalizeRE = /(\w)(\w*)/g; diff --git a/packages/vant-cli/src/compiler/compile-script.ts b/packages/vant-cli/src/compiler/compile-script.ts index 7afcafaf1..d77a56acd 100644 --- a/packages/vant-cli/src/compiler/compile-script.ts +++ b/packages/vant-cli/src/compiler/compile-script.ts @@ -1,36 +1,56 @@ import fse from 'fs-extra'; +import babel from '@babel/core'; +import esbuild, { type Format } from 'esbuild'; import { sep } from 'path'; -import { transformAsync } from '@babel/core'; -import { replaceExt } from '../common/index.js'; +import { isJsx, replaceExt } from '../common/index.js'; import { replaceCSSImportExt } from '../common/css.js'; import { replaceScriptImportExt } from './get-deps.js'; const { readFileSync, removeSync, outputFileSync } = fse; -export async function compileScript(filePath: string): Promise { - return new Promise((resolve, reject) => { - if (filePath.includes('.d.ts')) { - resolve(); - return; +export async function compileScript( + filePath: string, + format: Format +): Promise { + if (filePath.includes('.d.ts')) { + return; + } + + let code = readFileSync(filePath, 'utf-8'); + + if (!filePath.includes(`${sep}style${sep}`)) { + code = replaceCSSImportExt(code); + } + code = replaceScriptImportExt(code, '.vue', ''); + + if (isJsx(filePath)) { + const babelResult = await babel.transformAsync(code, { + filename: filePath, + babelrc: false, + presets: ['@babel/preset-typescript'], + plugins: [ + [ + '@vue/babel-plugin-jsx', + { + enableObjectSlots: false, + }, + ], + ], + }); + if (babelResult?.code) { + ({ code } = babelResult); } + } - let code = readFileSync(filePath, 'utf-8'); - - if (!filePath.includes(`${sep}style${sep}`)) { - code = replaceCSSImportExt(code); - } - code = replaceScriptImportExt(code, '.vue', ''); - - transformAsync(code, { filename: filePath }) - .then((result) => { - if (result) { - const jsFilePath = replaceExt(filePath, '.js'); - - removeSync(filePath); - outputFileSync(jsFilePath, result.code); - resolve(); - } - }) - .catch(reject); + const esbuildResult = await esbuild.transform(code, { + loader: 'ts', + target: 'es2016', + format, }); + + ({ code } = esbuildResult); + + const jsFilePath = replaceExt(filePath, '.js'); + removeSync(filePath); + outputFileSync(jsFilePath, code); } diff --git a/packages/vant/babel.config.js b/packages/vant/babel.config.js deleted file mode 100644 index 3c2197b76..000000000 --- a/packages/vant/babel.config.js +++ /dev/null @@ -1,11 +0,0 @@ -module.exports = { - presets: [ - [ - '@vant/cli/preset.cjs', - { - loose: process.env.BUILD_TARGET === 'package', - enableObjectSlots: false, - }, - ], - ], -}; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8e0f7633b..41cfb3b8e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -89,7 +89,6 @@ importers: packages/vant-cli: specifiers: '@babel/core': ^7.16.0 - '@babel/preset-env': ^7.16.0 '@babel/preset-typescript': ^7.16.0 '@docsearch/css': 3.0.0-alpha.41 '@docsearch/js': 3.0.0-alpha.41 @@ -144,7 +143,6 @@ importers: vue-router: ^4.0.12 dependencies: '@babel/core': 7.16.0 - '@babel/preset-env': 7.16.0_@babel+core@7.16.0 '@babel/preset-typescript': 7.16.0_@babel+core@7.16.0 '@docsearch/css': 3.0.0-alpha.41 '@docsearch/js': 3.0.0-alpha.41 @@ -451,14 +449,6 @@ packages: '@babel/types': 7.16.0 dev: false - /@babel/helper-builder-binary-assignment-operator-visitor/7.16.0: - resolution: {integrity: sha1-8aaGuS2nlAIMJlguuFLprM0NeII=, tarball: '@babel/helper-builder-binary-assignment-operator-visitor/download/@babel/helper-builder-binary-assignment-operator-visitor-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-explode-assignable-expression': 7.16.0 - '@babel/types': 7.16.0 - dev: false - /@babel/helper-compilation-targets/7.16.0_@babel+core@7.16.0: resolution: {integrity: sha1-AdYVdi55bBeVLCnj7enW3gfSNag=, tarball: '@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.16.0.tgz'} engines: {node: '>=6.9.0'} @@ -488,42 +478,6 @@ packages: - supports-color dev: false - /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-BrI0jON/zMT14Y3NjXUFPyp8RP8=, tarball: '@babel/helper-create-regexp-features-plugin/download/@babel/helper-create-regexp-features-plugin-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-annotate-as-pure': 7.16.0 - regexpu-core: 4.8.0 - dev: false - - /@babel/helper-define-polyfill-provider/0.2.4_@babel+core@7.16.0: - resolution: {integrity: sha1-iGeu150+psreQPgB77esXGaRaxA=, tarball: '@babel/helper-define-polyfill-provider/download/@babel/helper-define-polyfill-provider-0.2.4.tgz'} - peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-compilation-targets': 7.16.0_@babel+core@7.16.0 - '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/traverse': 7.16.0 - debug: 4.3.2 - lodash.debounce: 4.0.8 - resolve: 1.20.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/helper-explode-assignable-expression/7.16.0: - resolution: {integrity: sha1-dTAXM3oV9G+cCfZ0z/EM7pudd3g=, tarball: '@babel/helper-explode-assignable-expression/download/@babel/helper-explode-assignable-expression-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.16.0 - dev: false - /@babel/helper-function-name/7.16.0: resolution: {integrity: sha1-t90Hl9ALv+5PB+nE6lsOMMi7FIE=, tarball: '@babel/helper-function-name/download/@babel/helper-function-name-7.16.0.tgz'} engines: {node: '>=6.9.0'} @@ -582,17 +536,6 @@ packages: engines: {node: '>=6.9.0'} dev: false - /@babel/helper-remap-async-to-generator/7.16.0: - resolution: {integrity: sha1-1ao7CG4Tpf4FI4/0DDpaDC2rPq0=, tarball: '@babel/helper-remap-async-to-generator/download/@babel/helper-remap-async-to-generator-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-annotate-as-pure': 7.16.0 - '@babel/helper-wrap-function': 7.16.0 - '@babel/types': 7.16.0 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/helper-replace-supers/7.16.0: resolution: {integrity: sha1-cwVejTz5vLqN21XK2T/tyGD2jxc=, tarball: '@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.16.0.tgz'} engines: {node: '>=6.9.0'} @@ -610,13 +553,6 @@ packages: dependencies: '@babel/types': 7.16.0 - /@babel/helper-skip-transparent-expression-wrappers/7.16.0: - resolution: {integrity: sha1-DuM4gHAUfDrgUeSH7KPrsOLouwk=, tarball: '@babel/helper-skip-transparent-expression-wrappers/download/@babel/helper-skip-transparent-expression-wrappers-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.16.0 - dev: false - /@babel/helper-split-export-declaration/7.16.0: resolution: {integrity: sha1-KWcvQ2Y+k23zcKrrIr7ds7rsdDg=, tarball: '@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.16.0.tgz'} engines: {node: '>=6.9.0'} @@ -631,18 +567,6 @@ packages: resolution: {integrity: sha1-bnKh//GNXfy4eOHmLxoCHEty1aM=, tarball: '@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz'} engines: {node: '>=6.9.0'} - /@babel/helper-wrap-function/7.16.0: - resolution: {integrity: sha1-s88xivzndN/nW4Z2fNbWjzSC5Xw=, tarball: '@babel/helper-wrap-function/download/@babel/helper-wrap-function-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-function-name': 7.16.0 - '@babel/template': 7.16.0 - '@babel/traverse': 7.16.0 - '@babel/types': 7.16.0 - transitivePeerDependencies: - - supports-color - dev: false - /@babel/helpers/7.16.0: resolution: {integrity: sha1-h1UZyXnCMvQa371Do7A5jC44gYM=, tarball: '@babel/helpers/download/@babel/helpers-7.16.0.tgz'} engines: {node: '>=6.9.0'} @@ -666,211 +590,6 @@ packages: engines: {node: '>=6.0.0'} hasBin: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2_@babel+core@7.16.0: - resolution: {integrity: sha1-KXf8qbIS2xU8GVZ05Xz6uAdzMYM=, tarball: '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/download/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-NYly6qsAb16wgmGDsMk8vK8T4eI=, tarball: '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/download/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.0 - dev: false - - /@babel/plugin-proposal-async-generator-functions/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-EUJdR6YDZDUvZorV+8HWWWssXK8=, tarball: '@babel/plugin-proposal-async-generator-functions/download/@babel/plugin-proposal-async-generator-functions-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-remap-async-to-generator': 7.16.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-proposal-class-properties/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-wClhgmfd68coD6KG4PjKKieKLRo=, tarball: '@babel/plugin-proposal-class-properties/download/@babel/plugin-proposal-class-properties-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-proposal-class-static-block/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-UpaULFZNgUTIPuo0fQqooLiRcOc=, tarball: '@babel/plugin-proposal-class-static-block/download/@babel/plugin-proposal-class-static-block-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.0 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-proposal-dynamic-import/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-eD7KYdUFJiAvmylglUU5d+iGWfE=, tarball: '@babel/plugin-proposal-dynamic-import/download/@babel/plugin-proposal-dynamic-import-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0 - dev: false - - /@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-nAHe5Auda4R7ZWqvSjl2pxdA8iI=, tarball: '@babel/plugin-proposal-export-namespace-from/download/@babel/plugin-proposal-export-namespace-from-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.0 - dev: false - - /@babel/plugin-proposal-json-strings/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-yuNale0dKn+inE3EFUC4SnLpqyU=, tarball: '@babel/plugin-proposal-json-strings/download/@babel/plugin-proposal-json-strings-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0 - dev: false - - /@babel/plugin-proposal-logical-assignment-operators/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-pxG4zrP/3dPviNOknobb08x9s/0=, tarball: '@babel/plugin-proposal-logical-assignment-operators/download/@babel/plugin-proposal-logical-assignment-operators-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0 - dev: false - - /@babel/plugin-proposal-nullish-coalescing-operator/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-ROHM4I/iQnSCz0RqkbtFFSjtBZY=, tarball: '@babel/plugin-proposal-nullish-coalescing-operator/download/@babel/plugin-proposal-nullish-coalescing-operator-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0 - dev: false - - /@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-XUGOT7v4ubfQMSXTpScwQzo3NzQ=, tarball: '@babel/plugin-proposal-numeric-separator/download/@babel/plugin-proposal-numeric-separator-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0 - dev: false - - /@babel/plugin-proposal-object-rest-spread/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-X7MvbZJNbmcSgQNipg4SomCYcuY=, tarball: '@babel/plugin-proposal-object-rest-spread/download/@babel/plugin-proposal-object-rest-spread-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.16.0 - '@babel/core': 7.16.0 - '@babel/helper-compilation-targets': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-transform-parameters': 7.16.0_@babel+core@7.16.0 - dev: false - - /@babel/plugin-proposal-optional-catch-binding/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-WRAIWBGrTCiwDW6/+kqwJ00eXxY=, tarball: '@babel/plugin-proposal-optional-catch-binding/download/@babel/plugin-proposal-optional-catch-binding-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0 - dev: false - - /@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-VtvDlwglaDYI6e+1XqgsKi1sjcA=, tarball: '@babel/plugin-proposal-optional-chaining/download/@babel/plugin-proposal-optional-chaining-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0 - dev: false - - /@babel/plugin-proposal-private-methods/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-tNr7nHF+QwHFd2sw0IDWODyJr/Y=, tarball: '@babel/plugin-proposal-private-methods/download/@babel/plugin-proposal-private-methods-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-proposal-private-property-in-object/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-aek1ssXHnSSIES2IbwxOJ5D+528=, tarball: '@babel/plugin-proposal-private-property-in-object/download/@babel/plugin-proposal-private-property-in-object-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-annotate-as-pure': 7.16.0 - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.0 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-iQSC38XqN45C4Zpx5wlyjKvxhhI=, tarball: '@babel/plugin-proposal-unicode-property-regex/download/@babel/plugin-proposal-unicode-property-regex-7.16.0.tgz'} - engines: {node: '>=4'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.0: resolution: {integrity: sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=, tarball: '@babel/plugin-syntax-async-generators/download/@babel/plugin-syntax-async-generators-7.8.4.tgz'} peerDependencies: @@ -898,34 +617,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: false - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.16.0: - resolution: {integrity: sha1-GV34mxRrS3izv4l/16JXyEZZ1AY=, tarball: '@babel/plugin-syntax-class-static-block/download/@babel/plugin-syntax-class-static-block-7.14.5.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.0: - resolution: {integrity: sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM=, tarball: '@babel/plugin-syntax-dynamic-import/download/@babel/plugin-syntax-dynamic-import-7.8.3.tgz?cache=0&sync_timestamp=1632822771523&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fplugin-syntax-dynamic-import%2Fdownload%2F%40babel%2Fplugin-syntax-dynamic-import-7.8.3.tgz'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.0: - resolution: {integrity: sha1-AolkqbqA28CUyRXEh618TnpmRlo=, tarball: '@babel/plugin-syntax-export-namespace-from/download/@babel/plugin-syntax-export-namespace-from-7.8.3.tgz'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.16.0: resolution: {integrity: sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=, tarball: '@babel/plugin-syntax-import-meta/download/@babel/plugin-syntax-import-meta-7.10.4.tgz?cache=0&sync_timestamp=1632822771791&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fplugin-syntax-import-meta%2Fdownload%2F%40babel%2Fplugin-syntax-import-meta-7.10.4.tgz'} peerDependencies: @@ -1008,16 +699,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: false - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.0: - resolution: {integrity: sha1-DcZnHsDqIrbpShEU+FeXDNOd4a0=, tarball: '@babel/plugin-syntax-private-property-in-object/download/@babel/plugin-syntax-private-property-in-object-7.14.5.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.16.0: resolution: {integrity: sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw=, tarball: '@babel/plugin-syntax-top-level-await/download/@babel/plugin-syntax-top-level-await-7.14.5.tgz'} engines: {node: '>=6.9.0'} @@ -1038,343 +719,6 @@ packages: '@babel/helper-plugin-utils': 7.14.5 dev: false - /@babel/plugin-transform-arrow-functions/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-lRcG+LRJyDTtB71HTAkkyUS5Wo4=, tarball: '@babel/plugin-transform-arrow-functions/download/@babel/plugin-transform-arrow-functions-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-async-to-generator/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-3xJjf5Yw3foO+dehG8QU1inThgQ=, tarball: '@babel/plugin-transform-async-to-generator/download/@babel/plugin-transform-async-to-generator-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-remap-async-to-generator': 7.16.0 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-transform-block-scoped-functions/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-xhh2MjOtAoR4BavKxMNFzp3nFF0=, tarball: '@babel/plugin-transform-block-scoped-functions/download/@babel/plugin-transform-block-scoped-functions-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-block-scoping/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-vPQz+0gv6MPTtOimaxxKjnfTfBY=, tarball: '@babel/plugin-transform-block-scoping/download/@babel/plugin-transform-block-scoping-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-classes/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-VM9f8LIkLGVz11PNS/xwd6iygvU=, tarball: '@babel/plugin-transform-classes/download/@babel/plugin-transform-classes-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-annotate-as-pure': 7.16.0 - '@babel/helper-function-name': 7.16.0 - '@babel/helper-optimise-call-expression': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-replace-supers': 7.16.0 - '@babel/helper-split-export-declaration': 7.16.0 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-transform-computed-properties/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-4MOFUH0h4bCwdtZr7W1SMbhRELc=, tarball: '@babel/plugin-transform-computed-properties/download/@babel/plugin-transform-computed-properties-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-destructuring/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-rT1+dFhK1epOrbHmZCFGxZDe4zw=, tarball: '@babel/plugin-transform-destructuring/download/@babel/plugin-transform-destructuring-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-ULqwDBCEthYtClioGAMc9XeY4G8=, tarball: '@babel/plugin-transform-dotall-regex/download/@babel/plugin-transform-dotall-regex-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-duplicate-keys/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-i8LiGBPj6J5eW/O2CqX8RYV1oXY=, tarball: '@babel/plugin-transform-duplicate-keys/download/@babel/plugin-transform-duplicate-keys-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-exponentiation-operator/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-oYDNKIHjUzzvnTkB5I2tD77/S+Q=, tarball: '@babel/plugin-transform-exponentiation-operator/download/@babel/plugin-transform-exponentiation-operator-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-for-of/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-96us7RVSYOJGE1m7x8ckispea9I=, tarball: '@babel/plugin-transform-for-of/download/@babel/plugin-transform-for-of-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-function-name/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-AuNpnChMYmIjZZn3UQZcXV8fQA4=, tarball: '@babel/plugin-transform-function-name/download/@babel/plugin-transform-function-name-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-function-name': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-literals/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-eXEeZw/86zG9KYIp1Q82IfeYDKw=, tarball: '@babel/plugin-transform-literals/download/@babel/plugin-transform-literals-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-member-expression-literals/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-UlG0zOAer4MUQD0hrtsmnXn15ks=, tarball: '@babel/plugin-transform-member-expression-literals/download/@babel/plugin-transform-member-expression-literals-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-modules-amd/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-CavUHhjc9P1HnFmMHO97056xM34=, tarball: '@babel/plugin-transform-modules-amd/download/@babel/plugin-transform-modules-amd-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-module-transforms': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-transform-modules-commonjs/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-rdWOY4yN3Eh1vZqey1xZRhP2ySI=, tarball: '@babel/plugin-transform-modules-commonjs/download/@babel/plugin-transform-modules-commonjs-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-module-transforms': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-simple-access': 7.16.0 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-transform-modules-systemjs/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-qSzyQK/rYF9MoWZwRTAkQl5CHqQ=, tarball: '@babel/plugin-transform-modules-systemjs/download/@babel/plugin-transform-modules-systemjs-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-hoist-variables': 7.16.0 - '@babel/helper-module-transforms': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-validator-identifier': 7.15.7 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-transform-modules-umd/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-GV8mwq1tajkbcIgO/84YzmJeBqc=, tarball: '@babel/plugin-transform-modules-umd/download/@babel/plugin-transform-modules-umd-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-module-transforms': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-transform-named-capturing-groups-regex/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-09thzF1bl5hlWZZ81eqD5cMglso=, tarball: '@babel/plugin-transform-named-capturing-groups-regex/download/@babel/plugin-transform-named-capturing-groups-regex-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 - dev: false - - /@babel/plugin-transform-new-target/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-r4I6tXb3UiFaSZN3eaQcplglqzU=, tarball: '@babel/plugin-transform-new-target/download/@babel/plugin-transform-new-target-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-object-super/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-+yDVgG3GSRoGKWrBTqjo1v7dpys=, tarball: '@babel/plugin-transform-object-super/download/@babel/plugin-transform-object-super-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-replace-supers': 7.16.0 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/plugin-transform-parameters/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-G1B2X8QhwimBncTHzbiRFmCzwtc=, tarball: '@babel/plugin-transform-parameters/download/@babel/plugin-transform-parameters-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-property-literals/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-qVxVIYmpagAFn2d23E4A42kMeNE=, tarball: '@babel/plugin-transform-property-literals/download/@babel/plugin-transform-property-literals-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-6u5CLISwIy0Drqfbmcl97q9hJaQ=, tarball: '@babel/plugin-transform-regenerator/download/@babel/plugin-transform-regenerator-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - regenerator-transform: 0.14.5 - dev: false - - /@babel/plugin-transform-reserved-words/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-//S53LGeEmGTlL2hctFPLQTAN5w=, tarball: '@babel/plugin-transform-reserved-words/download/@babel/plugin-transform-reserved-words-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-shorthand-properties/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-CQNy4xQffMMk7XCz2vU3nfL6OE0=, tarball: '@babel/plugin-transform-shorthand-properties/download/@babel/plugin-transform-shorthand-properties-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-spread/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-0hygmbvVOrMHqGIeAZp70PQM3Ps=, tarball: '@babel/plugin-transform-spread/download/@babel/plugin-transform-spread-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - dev: false - - /@babel/plugin-transform-sticky-regex/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-w16jGgLYa+SF9qpRAYS2d6kXOP0=, tarball: '@babel/plugin-transform-sticky-regex/download/@babel/plugin-transform-sticky-regex-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-template-literals/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-qOztOo57ji1A7E7EVIpFkSYw0wI=, tarball: '@babel/plugin-transform-template-literals/download/@babel/plugin-transform-template-literals-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-typeof-symbol/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-ixmiRMb4ydZo3Kam91Stbq0RKPI=, tarball: '@babel/plugin-transform-typeof-symbol/download/@babel/plugin-transform-typeof-symbol-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - /@babel/plugin-transform-typescript/7.16.1_@babel+core@7.16.0: resolution: {integrity: sha1-zAZwsoIrAzg1W8Gz0iRqQrgWZAk=, tarball: '@babel/plugin-transform-typescript/download/@babel/plugin-transform-typescript-7.16.1.tgz'} engines: {node: '>=6.9.0'} @@ -1389,125 +733,6 @@ packages: - supports-color dev: false - /@babel/plugin-transform-unicode-escapes/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-GjVAZLTEVmOjIzT0b6DPYQC1sfM=, tarball: '@babel/plugin-transform-unicode-escapes/download/@babel/plugin-transform-unicode-escapes-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/plugin-transform-unicode-regex/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-KTuAlQF3yMha7eh87ygCWfuZVAI=, tarball: '@babel/plugin-transform-unicode-regex/download/@babel/plugin-transform-unicode-regex-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - dev: false - - /@babel/preset-env/7.16.0_@babel+core@7.16.0: - resolution: {integrity: sha1-lyKDk9IXVg1qHGxW8K250SvKZ/U=, tarball: '@babel/preset-env/download/@babel/preset-env-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.16.0 - '@babel/core': 7.16.0 - '@babel/helper-compilation-targets': 7.16.0_@babel+core@7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/helper-validator-option': 7.14.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.2_@babel+core@7.16.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-async-generator-functions': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-class-properties': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-class-static-block': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-dynamic-import': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-export-namespace-from': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-json-strings': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-logical-assignment-operators': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-numeric-separator': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-optional-catch-binding': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-private-methods': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-private-property-in-object': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.0 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.0 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.0 - '@babel/plugin-transform-arrow-functions': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-async-to-generator': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-block-scoped-functions': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-block-scoping': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-classes': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-computed-properties': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-destructuring': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-duplicate-keys': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-exponentiation-operator': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-for-of': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-function-name': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-literals': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-member-expression-literals': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-modules-amd': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-modules-commonjs': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-modules-systemjs': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-modules-umd': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-new-target': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-object-super': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-parameters': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-property-literals': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-regenerator': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-reserved-words': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-shorthand-properties': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-spread': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-sticky-regex': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-typeof-symbol': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-unicode-escapes': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-unicode-regex': 7.16.0_@babel+core@7.16.0 - '@babel/preset-modules': 0.1.5_@babel+core@7.16.0 - '@babel/types': 7.16.0 - babel-plugin-polyfill-corejs2: 0.2.3_@babel+core@7.16.0 - babel-plugin-polyfill-corejs3: 0.3.0_@babel+core@7.16.0 - babel-plugin-polyfill-regenerator: 0.2.3_@babel+core@7.16.0 - core-js-compat: 3.19.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: false - - /@babel/preset-modules/0.1.5_@babel+core@7.16.0: - resolution: {integrity: sha1-75Odbn8miCfhhBY43G/5VRXhFdk=, tarball: '@babel/preset-modules/download/@babel/preset-modules-0.1.5.tgz'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-plugin-utils': 7.14.5 - '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.0 - '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.0 - '@babel/types': 7.16.0 - esutils: 2.0.3 - dev: false - /@babel/preset-typescript/7.16.0_@babel+core@7.16.0: resolution: {integrity: sha1-sLTxBbhV+z1jHsA2zcnR/9H6Xqw=, tarball: '@babel/preset-typescript/download/@babel/preset-typescript-7.16.0.tgz?cache=0&sync_timestamp=1635914167348&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fpreset-typescript%2Fdownload%2F%40babel%2Fpreset-typescript-7.16.0.tgz'} engines: {node: '>=6.9.0'} @@ -1522,13 +747,6 @@ packages: - supports-color dev: false - /@babel/runtime/7.16.0: - resolution: {integrity: sha1-4nuXfy4giLokdIv5m14d7OZOTws=, tarball: '@babel/runtime/download/@babel/runtime-7.16.0.tgz'} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.13.9 - dev: false - /@babel/template/7.16.0: resolution: {integrity: sha1-0Wo16/TNdOICCDNW+rId2JNj3dY=, tarball: '@babel/template/download/@babel/template-7.16.0.tgz'} engines: {node: '>=6.9.0'} @@ -2711,12 +1929,6 @@ packages: - supports-color dev: false - /babel-plugin-dynamic-import-node/2.3.3: - resolution: {integrity: sha1-hP2hnJduxcbe/vV/lCez3vZuF6M=, tarball: babel-plugin-dynamic-import-node/download/babel-plugin-dynamic-import-node-2.3.3.tgz?cache=0&sync_timestamp=1632822778823&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbabel-plugin-dynamic-import-node%2Fdownload%2Fbabel-plugin-dynamic-import-node-2.3.3.tgz} - dependencies: - object.assign: 4.1.2 - dev: false - /babel-plugin-istanbul/6.1.1: resolution: {integrity: sha1-+ojsWSMv2bTjbbvFQKjsmptH2nM=, tarball: babel-plugin-istanbul/download/babel-plugin-istanbul-6.1.1.tgz} engines: {node: '>=8'} @@ -2740,42 +1952,6 @@ packages: '@types/babel__traverse': 7.14.2 dev: false - /babel-plugin-polyfill-corejs2/0.2.3_@babel+core@7.16.0: - resolution: {integrity: sha1-btjjCYGwYvj+asqIc6N+vMjMHA8=, tarball: babel-plugin-polyfill-corejs2/download/babel-plugin-polyfill-corejs2-0.2.3.tgz} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.16.0 - '@babel/core': 7.16.0 - '@babel/helper-define-polyfill-provider': 0.2.4_@babel+core@7.16.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: false - - /babel-plugin-polyfill-corejs3/0.3.0_@babel+core@7.16.0: - resolution: {integrity: sha1-+nyj0e6d3GGTYA/7YyyXhdVJGK8=, tarball: babel-plugin-polyfill-corejs3/download/babel-plugin-polyfill-corejs3-0.3.0.tgz} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-define-polyfill-provider': 0.2.4_@babel+core@7.16.0 - core-js-compat: 3.19.1 - transitivePeerDependencies: - - supports-color - dev: false - - /babel-plugin-polyfill-regenerator/0.2.3_@babel+core@7.16.0: - resolution: {integrity: sha1-LpgI9QJ8QzbJlJkrSKQmJYDLjW0=, tarball: babel-plugin-polyfill-regenerator/download/babel-plugin-polyfill-regenerator-0.2.3.tgz} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.16.0 - '@babel/helper-define-polyfill-provider': 0.2.4_@babel+core@7.16.0 - transitivePeerDependencies: - - supports-color - dev: false - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.16.0: resolution: {integrity: sha1-tDmSObibKgEfndvj5PQB/EDP9zs=, tarball: babel-preset-current-node-syntax/download/babel-preset-current-node-syntax-1.0.1.tgz} peerDependencies: @@ -3332,13 +2508,6 @@ packages: is-what: 3.14.1 dev: false - /core-js-compat/3.19.1: - resolution: {integrity: sha1-/lmPGpvzcxDXfDgTlo6ffHu5lHY=, tarball: core-js-compat/download/core-js-compat-3.19.1.tgz} - dependencies: - browserslist: 4.17.6 - semver: 7.0.0 - dev: false - /core-util-is/1.0.3: resolution: {integrity: sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=, tarball: core-util-is/download/core-util-is-1.0.3.tgz} dev: false @@ -5892,11 +5061,6 @@ packages: - utf-8-validate dev: false - /jsesc/0.5.0: - resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=, tarball: jsesc/download/jsesc-0.5.0.tgz} - hasBin: true - dev: false - /jsesc/2.5.2: resolution: {integrity: sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=, tarball: jsesc/download/jsesc-2.5.2.tgz} engines: {node: '>=4'} @@ -6113,10 +5277,6 @@ packages: resolution: {integrity: sha1-Q+YmxG5lkbd1C+srUBFzkMYJ4+4=, tarball: lodash-es/download/lodash-es-4.17.21.tgz?cache=0&sync_timestamp=1632822762695&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Flodash-es%2Fdownload%2Flodash-es-4.17.21.tgz} dev: false - /lodash.debounce/4.0.8: - resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=, tarball: lodash.debounce/download/lodash.debounce-4.0.8.tgz} - dev: false - /lodash.ismatch/4.4.0: resolution: {integrity: sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=, tarball: lodash.ismatch/download/lodash.ismatch-4.4.0.tgz} dev: false @@ -7138,43 +6298,10 @@ packages: indent-string: 4.0.0 strip-indent: 3.0.0 - /regenerate-unicode-properties/9.0.0: - resolution: {integrity: sha1-VNCccRXh9T3CMUqXSzLBw0Tv4yY=, tarball: regenerate-unicode-properties/download/regenerate-unicode-properties-9.0.0.tgz} - engines: {node: '>=4'} - dependencies: - regenerate: 1.4.2 - dev: false - - /regenerate/1.4.2: - resolution: {integrity: sha1-uTRtiCfo9aMve6KWN9OYtpAUhIo=, tarball: regenerate/download/regenerate-1.4.2.tgz} - dev: false - - /regenerator-runtime/0.13.9: - resolution: {integrity: sha1-iSV0Kpj/2QgUmI11Zq0wyjsmO1I=, tarball: regenerator-runtime/download/regenerator-runtime-0.13.9.tgz?cache=0&sync_timestamp=1632822710900&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fregenerator-runtime%2Fdownload%2Fregenerator-runtime-0.13.9.tgz} - dev: false - - /regenerator-transform/0.14.5: - resolution: {integrity: sha1-yY2hVGg2ccnE3LFuznNlF+G3/rQ=, tarball: regenerator-transform/download/regenerator-transform-0.14.5.tgz} - dependencies: - '@babel/runtime': 7.16.0 - dev: false - /regexpp/3.2.0: resolution: {integrity: sha1-BCWido2PI7rXDKS5BGH6LxIT4bI=, tarball: regexpp/download/regexpp-3.2.0.tgz?cache=0&sync_timestamp=1633171068964&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fregexpp%2Fdownload%2Fregexpp-3.2.0.tgz} engines: {node: '>=8'} - /regexpu-core/4.8.0: - resolution: {integrity: sha1-5WBbo2G2excYR4UBMnUC9EeamPA=, tarball: regexpu-core/download/regexpu-core-4.8.0.tgz} - engines: {node: '>=4'} - dependencies: - regenerate: 1.4.2 - regenerate-unicode-properties: 9.0.0 - regjsgen: 0.5.2 - regjsparser: 0.7.0 - unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.0.0 - dev: false - /registry-auth-token/4.2.1: resolution: {integrity: sha1-bXtABkQZGJcszV/tzUHcMix5slA=, tarball: registry-auth-token/download/registry-auth-token-4.2.1.tgz} engines: {node: '>=6.0.0'} @@ -7187,17 +6314,6 @@ packages: dependencies: rc: 1.2.8 - /regjsgen/0.5.2: - resolution: {integrity: sha1-kv8pX7He7L9uzaslQ9IH6RqjNzM=, tarball: regjsgen/download/regjsgen-0.5.2.tgz} - dev: false - - /regjsparser/0.7.0: - resolution: {integrity: sha1-prZntUyIXhi1JVTLSWDvcRh+mWg=, tarball: regjsparser/download/regjsparser-0.7.0.tgz} - hasBin: true - dependencies: - jsesc: 0.5.0 - dev: false - /relateurl/0.2.7: resolution: {integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=, tarball: relateurl/download/relateurl-0.2.7.tgz} engines: {node: '>= 0.10'} @@ -7407,11 +6523,6 @@ packages: resolution: {integrity: sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=, tarball: semver/download/semver-6.3.0.tgz} hasBin: true - /semver/7.0.0: - resolution: {integrity: sha1-XzyjV2HkfgWyBsba/yz4FPAxa44=, tarball: semver/download/semver-7.0.0.tgz} - hasBin: true - dev: false - /semver/7.3.5: resolution: {integrity: sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=, tarball: semver/download/semver-7.3.5.tgz} engines: {node: '>=10'} @@ -8027,29 +7138,6 @@ packages: which-boxed-primitive: 1.0.2 dev: false - /unicode-canonical-property-names-ecmascript/2.0.0: - resolution: {integrity: sha1-MBrNxSVjFnDTn2FG4Od/9rvevdw=, tarball: unicode-canonical-property-names-ecmascript/download/unicode-canonical-property-names-ecmascript-2.0.0.tgz} - engines: {node: '>=4'} - dev: false - - /unicode-match-property-ecmascript/2.0.0: - resolution: {integrity: sha1-VP0W4OyxZ88Ezx91a9zJLrp5dsM=, tarball: unicode-match-property-ecmascript/download/unicode-match-property-ecmascript-2.0.0.tgz} - engines: {node: '>=4'} - dependencies: - unicode-canonical-property-names-ecmascript: 2.0.0 - unicode-property-aliases-ecmascript: 2.0.0 - dev: false - - /unicode-match-property-value-ecmascript/2.0.0: - resolution: {integrity: sha1-GgGqVyR8FMVouJd1pUk4eIGJpxQ=, tarball: unicode-match-property-value-ecmascript/download/unicode-match-property-value-ecmascript-2.0.0.tgz} - engines: {node: '>=4'} - dev: false - - /unicode-property-aliases-ecmascript/2.0.0: - resolution: {integrity: sha1-CjbLmlhcT2q9Ua0d7dsoXBZSl8g=, tarball: unicode-property-aliases-ecmascript/download/unicode-property-aliases-ecmascript-2.0.0.tgz} - engines: {node: '>=4'} - dev: false - /unified/9.2.2: resolution: {integrity: sha1-Z2SaGr/Dq4XSlpUCkCd16wMUaXU=, tarball: unified/download/unified-9.2.2.tgz} dependencies: