diff --git a/docs/guide/static-deploy.md b/docs/guide/static-deploy.md
index 57b7ba4b538d45..35909a960d4565 100644
--- a/docs/guide/static-deploy.md
+++ b/docs/guide/static-deploy.md
@@ -276,60 +276,6 @@ You can also add custom domains and handle custom build settings on Pages. Learn
You can also deploy to a [custom domain](http://surge.sh/help/adding-a-custom-domain) by adding `surge dist yourdomain.com`.
-## Heroku
-
-1. Install [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli).
-
-2. Create a Heroku account by [signing up](https://signup.heroku.com).
-
-3. Run `heroku login` and fill in your Heroku credentials:
-
- ```bash
- $ heroku login
- ```
-
-4. Create a file called `static.json` in the root of your project with the below content:
-
- `static.json`:
-
- ```json
- {
- "root": "./dist"
- }
- ```
-
- This is the configuration of your site; read more at [heroku-buildpack-static](https://github.com/heroku/heroku-buildpack-static).
-
-5. Set up your Heroku git remote:
-
- ```bash
- # version change
- $ git init
- $ git add .
- $ git commit -m "My site ready for deployment."
-
- # creates a new app with a specified name
- $ heroku apps:create example
- ```
-
-6. Set buildpacks. We use `heroku/nodejs` to build the project and `heroku-buildpack-static` to serve it.
-
- ```bash
- # set buildpacks
- $ heroku buildpacks:set heroku/nodejs
- $ heroku buildpacks:add https://github.com/heroku/heroku-buildpack-static.git
- ```
-
-7. Deploy your site:
-
- ```bash
- # publish site
- $ git push heroku main
-
- # opens a browser to view the Dashboard version of Heroku CI
- $ heroku open
- ```
-
## Azure Static Web Apps
You can quickly deploy your Vite app with Microsoft Azure [Static Web Apps](https://aka.ms/staticwebapps) service. You need:
diff --git a/package.json b/package.json
index 3f5145d12a99b4..0d63af94fe4bed 100644
--- a/package.json
+++ b/package.json
@@ -36,9 +36,9 @@
"ci-docs": "run-s build docs-build"
},
"devDependencies": {
- "@babel/types": "^7.18.13",
+ "@babel/types": "^7.19.0",
"@microsoft/api-extractor": "^7.30.0",
- "@rollup/plugin-typescript": "^8.4.0",
+ "@rollup/plugin-typescript": "^8.5.0",
"@types/babel__core": "^7.1.19",
"@types/babel__standalone": "^7.1.4",
"@types/convert-source-map": "^1.5.2",
@@ -57,22 +57,22 @@
"@types/semver": "^7.3.12",
"@types/stylus": "^0.48.38",
"@types/ws": "^8.5.3",
- "@typescript-eslint/eslint-plugin": "^5.36.1",
- "@typescript-eslint/parser": "^5.36.1",
+ "@typescript-eslint/eslint-plugin": "^5.36.2",
+ "@typescript-eslint/parser": "^5.36.2",
"conventional-changelog-cli": "^2.2.2",
"esbuild": "^0.14.47",
- "eslint": "^8.23.0",
+ "eslint": "^8.23.1",
"eslint-define-config": "^1.7.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"execa": "^6.1.0",
- "fast-glob": "^3.2.11",
+ "fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"lint-staged": "^13.0.3",
"minimist": "^1.2.6",
"npm-run-all": "^4.1.5",
"picocolors": "^1.0.0",
- "playwright-chromium": "^1.25.1",
+ "playwright-chromium": "^1.25.2",
"pnpm": "^7.11.0",
"prettier": "2.7.1",
"prompts": "^2.4.2",
@@ -88,8 +88,8 @@
"unbuild": "^0.8.10",
"vite": "workspace:*",
"vitepress": "^1.0.0-alpha.13",
- "vitest": "^0.23.1",
- "vue": "^3.2.38"
+ "vitest": "^0.23.2",
+ "vue": "^3.2.39"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false",
diff --git a/packages/create-vite/package.json b/packages/create-vite/package.json
index cb0b37beeabcb1..55f7eda7f2b509 100644
--- a/packages/create-vite/package.json
+++ b/packages/create-vite/package.json
@@ -33,7 +33,7 @@
"homepage": "https://github.com/vitejs/vite/tree/main/packages/create-vite#readme",
"devDependencies": {
"cross-spawn": "^7.0.3",
- "kolorist": "^1.5.1",
+ "kolorist": "^1.6.0",
"minimist": "^1.2.6",
"prompts": "^2.4.2"
}
diff --git a/packages/create-vite/template-preact-ts/package.json b/packages/create-vite/template-preact-ts/package.json
index 7693977472c178..98a3d30ffb6425 100644
--- a/packages/create-vite/template-preact-ts/package.json
+++ b/packages/create-vite/template-preact-ts/package.json
@@ -9,10 +9,10 @@
"preview": "vite preview"
},
"dependencies": {
- "preact": "^10.10.6"
+ "preact": "^10.11.0"
},
"devDependencies": {
- "@preact/preset-vite": "^2.3.1",
+ "@preact/preset-vite": "^2.4.0",
"typescript": "^4.6.4",
"vite": "^3.1.0"
}
diff --git a/packages/create-vite/template-preact/package.json b/packages/create-vite/template-preact/package.json
index f82ab1d9206030..f84fb874f0351f 100644
--- a/packages/create-vite/template-preact/package.json
+++ b/packages/create-vite/template-preact/package.json
@@ -9,10 +9,10 @@
"preview": "vite preview"
},
"dependencies": {
- "preact": "^10.10.6"
+ "preact": "^10.11.0"
},
"devDependencies": {
- "@preact/preset-vite": "^2.3.1",
+ "@preact/preset-vite": "^2.4.0",
"vite": "^3.1.0"
}
}
diff --git a/packages/create-vite/template-react-ts/package.json b/packages/create-vite/template-react-ts/package.json
index 644fb8237ad867..87813b5624fa7c 100644
--- a/packages/create-vite/template-react-ts/package.json
+++ b/packages/create-vite/template-react-ts/package.json
@@ -13,7 +13,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@types/react": "^18.0.18",
+ "@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"typescript": "^4.6.4",
diff --git a/packages/create-vite/template-react/package.json b/packages/create-vite/template-react/package.json
index ad6398aa052314..4d597d88c8c97c 100644
--- a/packages/create-vite/template-react/package.json
+++ b/packages/create-vite/template-react/package.json
@@ -13,7 +13,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@types/react": "^18.0.18",
+ "@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"vite": "^3.1.0"
diff --git a/packages/create-vite/template-svelte-ts/package.json b/packages/create-vite/template-svelte-ts/package.json
index dd42c5937717fb..7f062b665a864c 100644
--- a/packages/create-vite/template-svelte-ts/package.json
+++ b/packages/create-vite/template-svelte-ts/package.json
@@ -12,7 +12,7 @@
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.5",
"@tsconfig/svelte": "^3.0.0",
- "svelte": "^3.50.0",
+ "svelte": "^3.50.1",
"svelte-check": "^2.9.0",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.4.0",
diff --git a/packages/create-vite/template-svelte/package.json b/packages/create-vite/template-svelte/package.json
index e6cd66218a5059..40962f0734bf7c 100644
--- a/packages/create-vite/template-svelte/package.json
+++ b/packages/create-vite/template-svelte/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.5",
- "svelte": "^3.50.0",
+ "svelte": "^3.50.1",
"vite": "^3.1.0"
}
}
diff --git a/packages/create-vite/template-vue-ts/package.json b/packages/create-vite/template-vue-ts/package.json
index 56a4f4ad3c2651..02b6d15a989b4d 100644
--- a/packages/create-vite/template-vue-ts/package.json
+++ b/packages/create-vite/template-vue-ts/package.json
@@ -9,12 +9,12 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.1.0",
"typescript": "^4.6.4",
"vite": "^3.1.0",
- "vue-tsc": "^0.40.7"
+ "vue-tsc": "^0.40.13"
}
}
diff --git a/packages/create-vite/template-vue/package.json b/packages/create-vite/template-vue/package.json
index 12770e3b800e3a..cc60f2d7bff634 100644
--- a/packages/create-vite/template-vue/package.json
+++ b/packages/create-vite/template-vue/package.json
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.1.0",
diff --git a/packages/plugin-legacy/package.json b/packages/plugin-legacy/package.json
index 81482b509a2c1e..077e3604151b8d 100644
--- a/packages/plugin-legacy/package.json
+++ b/packages/plugin-legacy/package.json
@@ -35,8 +35,8 @@
},
"homepage": "https://github.com/vitejs/vite/tree/main/packages/plugin-legacy#readme",
"dependencies": {
- "@babel/standalone": "^7.18.13",
- "core-js": "^3.25.0",
+ "@babel/standalone": "^7.19.0",
+ "core-js": "^3.25.1",
"magic-string": "^0.26.3",
"regenerator-runtime": "^0.13.9",
"systemjs": "^6.12.6"
@@ -46,7 +46,7 @@
"vite": "^3.0.0"
},
"devDependencies": {
- "@babel/core": "^7.18.13",
+ "@babel/core": "^7.19.0",
"picocolors": "^1.0.0",
"vite": "workspace:*"
}
diff --git a/packages/plugin-react/package.json b/packages/plugin-react/package.json
index ce6635d5179e6a..dcb22618c4a37c 100644
--- a/packages/plugin-react/package.json
+++ b/packages/plugin-react/package.json
@@ -39,8 +39,8 @@
},
"homepage": "https://github.com/vitejs/vite/tree/main/packages/plugin-react#readme",
"dependencies": {
- "@babel/core": "^7.18.13",
- "@babel/plugin-transform-react-jsx": "^7.18.10",
+ "@babel/core": "^7.19.0",
+ "@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/plugin-transform-react-jsx-development": "^7.18.6",
"@babel/plugin-transform-react-jsx-self": "^7.18.6",
"@babel/plugin-transform-react-jsx-source": "^7.18.6",
diff --git a/packages/plugin-vue-jsx/package.json b/packages/plugin-vue-jsx/package.json
index 68bd101d2525d4..2e7b4cc91bb999 100644
--- a/packages/plugin-vue-jsx/package.json
+++ b/packages/plugin-vue-jsx/package.json
@@ -35,9 +35,9 @@
},
"homepage": "https://github.com/vitejs/vite/tree/main/packages/plugin-vue-jsx#readme",
"dependencies": {
- "@babel/core": "^7.18.13",
+ "@babel/core": "^7.19.0",
"@babel/plugin-syntax-import-meta": "^7.10.4",
- "@babel/plugin-transform-typescript": "^7.18.12",
+ "@babel/plugin-transform-typescript": "^7.19.0",
"@vue/babel-plugin-jsx": "^1.1.1"
},
"devDependencies": {
diff --git a/packages/plugin-vue/package.json b/packages/plugin-vue/package.json
index af38d881dadba3..af9671eb3373b6 100644
--- a/packages/plugin-vue/package.json
+++ b/packages/plugin-vue/package.json
@@ -46,6 +46,6 @@
"slash": "^4.0.0",
"source-map": "^0.6.1",
"vite": "workspace:*",
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
}
}
diff --git a/packages/vite/CHANGELOG.md b/packages/vite/CHANGELOG.md
index 003d80425afc20..eaac863360feb9 100644
--- a/packages/vite/CHANGELOG.md
+++ b/packages/vite/CHANGELOG.md
@@ -1,3 +1,27 @@
+## 3.1.2 (2022-09-17)
+
+* fix: use isOptimizable to ensure version query (#10141) ([23a51c6](https://github.com/vitejs/vite/commit/23a51c6)), closes [#10141](https://github.com/vitejs/vite/issues/10141)
+
+
+
+## 3.1.1 (2022-09-15)
+
+* fix: ensure version query for relative node_modules imports (#10016) ([1b822d0](https://github.com/vitejs/vite/commit/1b822d0)), closes [#10016](https://github.com/vitejs/vite/issues/10016)
+* fix: no quote on attrs (#10117) ([f541239](https://github.com/vitejs/vite/commit/f541239)), closes [#10117](https://github.com/vitejs/vite/issues/10117)
+* fix: prevent error overlay style being overridden (fixes #9969) (#9971) ([a7706d0](https://github.com/vitejs/vite/commit/a7706d0)), closes [#9969](https://github.com/vitejs/vite/issues/9969) [#9971](https://github.com/vitejs/vite/issues/9971)
+* fix: proxy to secured websocket server (#10045) ([9de9bc4](https://github.com/vitejs/vite/commit/9de9bc4)), closes [#10045](https://github.com/vitejs/vite/issues/10045)
+* fix: replace white with reset (#10104) ([5d56e42](https://github.com/vitejs/vite/commit/5d56e42)), closes [#10104](https://github.com/vitejs/vite/issues/10104)
+* fix(deps): update all non-major dependencies (#10077) ([caf00c8](https://github.com/vitejs/vite/commit/caf00c8)), closes [#10077](https://github.com/vitejs/vite/issues/10077)
+* fix(deps): update all non-major dependencies (#9985) ([855f2f0](https://github.com/vitejs/vite/commit/855f2f0)), closes [#9985](https://github.com/vitejs/vite/issues/9985)
+* fix(preview): send configured headers (#9976) ([0d20eae](https://github.com/vitejs/vite/commit/0d20eae)), closes [#9976](https://github.com/vitejs/vite/issues/9976)
+* chore: cleanup old changelogs (#10056) ([9e65a41](https://github.com/vitejs/vite/commit/9e65a41)), closes [#10056](https://github.com/vitejs/vite/issues/10056)
+* chore: update 3.1 changelog (#9994) ([44dbcbe](https://github.com/vitejs/vite/commit/44dbcbe)), closes [#9994](https://github.com/vitejs/vite/issues/9994)
+* chore(deps): update @rollup/plugin-node-resolve to v14 (#10078) ([3390c87](https://github.com/vitejs/vite/commit/3390c87)), closes [#10078](https://github.com/vitejs/vite/issues/10078)
+* refactor: config hook helper function (#9982) ([9c1be10](https://github.com/vitejs/vite/commit/9c1be10)), closes [#9982](https://github.com/vitejs/vite/issues/9982)
+* refactor: optimize `async` and `await` in code (#9854) ([31f5ff3](https://github.com/vitejs/vite/commit/31f5ff3)), closes [#9854](https://github.com/vitejs/vite/issues/9854)
+
+
+
## 3.1.0 (2022-09-05)
### Main Changes
diff --git a/packages/vite/package.json b/packages/vite/package.json
index ab59809cb0d833..0a4ea3aceb5245 100644
--- a/packages/vite/package.json
+++ b/packages/vite/package.json
@@ -1,6 +1,6 @@
{
"name": "vite",
- "version": "3.1.0",
+ "version": "3.1.2",
"type": "module",
"license": "MIT",
"author": "Evan You",
@@ -68,15 +68,15 @@
},
"devDependencies": {
"@ampproject/remapping": "^2.2.0",
- "@babel/parser": "^7.18.13",
- "@babel/types": "^7.18.13",
+ "@babel/parser": "^7.19.0",
+ "@babel/types": "^7.19.0",
"@jridgewell/trace-mapping": "^0.3.15",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-dynamic-import-vars": "^1.4.4",
"@rollup/plugin-json": "^4.1.0",
- "@rollup/plugin-node-resolve": "13.3.0",
- "@rollup/plugin-typescript": "^8.4.0",
+ "@rollup/plugin-node-resolve": "14.0.1",
+ "@rollup/plugin-typescript": "^8.5.0",
"@rollup/pluginutils": "^4.2.1",
"acorn": "^8.8.0",
"cac": "^6.7.14",
@@ -92,7 +92,7 @@
"es-module-lexer": "^1.0.3",
"estree-walker": "^3.0.1",
"etag": "^1.8.1",
- "fast-glob": "^3.2.11",
+ "fast-glob": "^3.2.12",
"http-proxy": "^1.18.1",
"json5": "^2.2.1",
"launch-editor-middleware": "^2.6.0",
diff --git a/packages/vite/src/node/cli.ts b/packages/vite/src/node/cli.ts
index 86ae76bba12215..c94e9427db87d3 100644
--- a/packages/vite/src/node/cli.ts
+++ b/packages/vite/src/node/cli.ts
@@ -103,7 +103,7 @@ cli
const viteStartTime = global.__vite_start_time ?? false
const startupDurationString = viteStartTime
? colors.dim(
- `ready in ${colors.white(
+ `ready in ${colors.reset(
colors.bold(Math.ceil(performance.now() - viteStartTime))
)} ms`
)
diff --git a/packages/vite/src/node/logger.ts b/packages/vite/src/node/logger.ts
index 326fa0e6dfd778..a4750a8b2a9dbc 100644
--- a/packages/vite/src/node/logger.ts
+++ b/packages/vite/src/node/logger.ts
@@ -153,7 +153,7 @@ export function printServerUrls(
info(` ${colors.green('➜')} ${colors.bold('Network')}: ${colorUrl(url)}`)
}
if (urls.network.length === 0 && optionsHost === undefined) {
- const note = `use ${colors.white(colors.bold('--host'))} to expose`
+ const note = `use ${colors.reset(colors.bold('--host'))} to expose`
info(
colors.dim(` ${colors.green('➜')} ${colors.bold('Network')}: ${note}`)
)
diff --git a/packages/vite/src/node/optimizer/index.ts b/packages/vite/src/node/optimizer/index.ts
index 891d2dd709833c..eb80be2c3744a4 100644
--- a/packages/vite/src/node/optimizer/index.ts
+++ b/packages/vite/src/node/optimizer/index.ts
@@ -911,12 +911,22 @@ function esbuildOutputFromId(
id: string,
cacheDirOutputPath: string
): any {
+ const cwd = process.cwd()
const flatId = flattenId(id) + '.js'
- return outputs[
- normalizePath(
- path.relative(process.cwd(), path.join(cacheDirOutputPath, flatId))
- )
- ]
+ const normalizedOutputPath = normalizePath(
+ path.relative(cwd, path.join(cacheDirOutputPath, flatId))
+ )
+ const output = outputs[normalizedOutputPath]
+ if (output) {
+ return output
+ }
+ // If the root dir was symlinked, esbuild could return output keys as `../cwd/`
+ // Normalize keys to support this case too
+ for (const [key, value] of Object.entries(outputs)) {
+ if (normalizePath(path.relative(cwd, key)) === normalizedOutputPath) {
+ return value
+ }
+ }
}
export async function extractExportsData(
diff --git a/packages/vite/src/node/plugins/html.ts b/packages/vite/src/node/plugins/html.ts
index a3df68ca539602..f09c2a6fcd89b0 100644
--- a/packages/vite/src/node/plugins/html.ts
+++ b/packages/vite/src/node/plugins/html.ts
@@ -196,7 +196,7 @@ export function getScriptInfo(node: DefaultTreeAdapterMap['element']): {
return { src, sourceCodeLocation, isModule, isAsync }
}
-const attrValueStartRE = /=[\s\t\n\r]*(["']|.)/
+const attrValueStartRE = /=[\s\t\n\r]*(.)/
export function overwriteAttrValue(
s: MagicString,
@@ -214,7 +214,7 @@ export function overwriteAttrValue(
`[vite:html] internal error, failed to overwrite attribute value`
)
}
- const wrapOffset = valueStart[1] ? 1 : 0
+ const wrapOffset = valueStart[1] === '"' || valueStart[1] === "'" ? 1 : 0
const valueOffset = valueStart.index! + valueStart[0].length - 1
s.overwrite(
sourceCodeLocation.startOffset + valueOffset + wrapOffset,
diff --git a/packages/vite/src/node/plugins/resolve.ts b/packages/vite/src/node/plugins/resolve.ts
index 97b032b2833e11..2f2ccb2fb9af96 100644
--- a/packages/vite/src/node/plugins/resolve.ts
+++ b/packages/vite/src/node/plugins/resolve.ts
@@ -29,6 +29,7 @@ import {
isFileReadable,
isNonDriveRelativeAbsolutePath,
isObject,
+ isOptimizable,
isPossibleTsOutput,
isTsRequest,
isWindows,
@@ -181,7 +182,7 @@ export function resolvePlugin(resolveOptions: InternalResolveOptions): Plugin {
if (isNodeModule && !resolved.match(DEP_VERSION_RE)) {
const versionHash = depsOptimizer.metadata.browserHash
- if (versionHash && OPTIMIZABLE_ENTRY_RE.test(resolved)) {
+ if (versionHash && isOptimizable(resolved, depsOptimizer.options)) {
resolved = injectQuery(resolved, `v=${versionHash}`)
}
}
@@ -750,7 +751,9 @@ export function tryNodeResolve(
}
// if we reach here, it's a valid dep import that hasn't been optimized.
- const isJsType = OPTIMIZABLE_ENTRY_RE.test(resolved)
+ const isJsType = depsOptimizer
+ ? isOptimizable(resolved, depsOptimizer.options)
+ : OPTIMIZABLE_ENTRY_RE.test(resolved)
let exclude = depsOptimizer?.options.exclude
let include = depsOptimizer?.options.exclude
diff --git a/playground/alias/package.json b/playground/alias/package.json
index 332f3ab1450e02..56f95bdabb61f4 100644
--- a/playground/alias/package.json
+++ b/playground/alias/package.json
@@ -10,8 +10,8 @@
},
"dependencies": {
"aliased-module": "file:./dir/module",
- "vue": "^3.2.38",
- "@vue/shared": "^3.2.38"
+ "vue": "^3.2.39",
+ "@vue/shared": "^3.2.39"
},
"devDependencies": {
"resolve-linked": "workspace:*"
diff --git a/playground/backend-integration/package.json b/playground/backend-integration/package.json
index 10fd4cde9bd15e..cd0fe2712d246e 100644
--- a/playground/backend-integration/package.json
+++ b/playground/backend-integration/package.json
@@ -9,8 +9,8 @@
"preview": "vite preview"
},
"devDependencies": {
- "sass": "^1.54.8",
+ "sass": "^1.54.9",
"tailwindcss": "^3.1.8",
- "fast-glob": "^3.2.11"
+ "fast-glob": "^3.2.12"
}
}
diff --git a/playground/css-sourcemap/package.json b/playground/css-sourcemap/package.json
index 48ab27d966d93f..a3843074ad8150 100644
--- a/playground/css-sourcemap/package.json
+++ b/playground/css-sourcemap/package.json
@@ -11,7 +11,7 @@
"devDependencies": {
"less": "^4.1.3",
"magic-string": "^0.26.3",
- "sass": "^1.54.8",
+ "sass": "^1.54.9",
"stylus": "^0.59.0"
}
}
diff --git a/playground/css/package.json b/playground/css/package.json
index d78392341905a9..41114dff9b5a27 100644
--- a/playground/css/package.json
+++ b/playground/css/package.json
@@ -14,10 +14,10 @@
"devDependencies": {
"css-dep": "link:./css-dep",
"css-js-dep": "file:./css-js-dep",
- "fast-glob": "^3.2.11",
+ "fast-glob": "^3.2.12",
"less": "^4.1.3",
"postcss-nested": "^5.0.6",
- "sass": "^1.54.8",
+ "sass": "^1.54.9",
"stylus": "^0.59.0"
}
}
diff --git a/playground/extensions/package.json b/playground/extensions/package.json
index a90473c15cfb64..ab6e8a04d8f746 100644
--- a/playground/extensions/package.json
+++ b/playground/extensions/package.json
@@ -9,6 +9,6 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
}
}
diff --git a/playground/external/dep-that-imports-vue/package.json b/playground/external/dep-that-imports-vue/package.json
index 0c9cf889e25c2f..ae2c4e1312514f 100644
--- a/playground/external/dep-that-imports-vue/package.json
+++ b/playground/external/dep-that-imports-vue/package.json
@@ -3,6 +3,6 @@
"private": true,
"version": "0.0.0",
"dependencies": {
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
}
}
diff --git a/playground/external/dep-that-requires-vue/package.json b/playground/external/dep-that-requires-vue/package.json
index 759433b6094a55..92e8b85ceda1c6 100644
--- a/playground/external/dep-that-requires-vue/package.json
+++ b/playground/external/dep-that-requires-vue/package.json
@@ -3,6 +3,6 @@
"private": true,
"version": "0.0.0",
"dependencies": {
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
}
}
diff --git a/playground/external/package.json b/playground/external/package.json
index 8e3fde96ecdb18..b50c2a299bfbe0 100644
--- a/playground/external/package.json
+++ b/playground/external/package.json
@@ -14,6 +14,6 @@
},
"devDependencies": {
"vite": "workspace:*",
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
}
}
diff --git a/playground/html/__tests__/html.spec.ts b/playground/html/__tests__/html.spec.ts
index 388496bb49900f..c4563a5f632b81 100644
--- a/playground/html/__tests__/html.spec.ts
+++ b/playground/html/__tests__/html.spec.ts
@@ -256,3 +256,14 @@ test('importmap', () => {
'An import map is added after module script load was triggered.'
)
})
+
+describe('Valid HTML', () => {
+ test('valid HTML is parsed', async () => {
+ await page.goto(viteTestUrl + '/valid.html')
+ expect(await page.textContent('#no-quotes-on-attr')).toBe(
+ 'No quotes on Attr working'
+ )
+
+ expect(await getColor('#duplicated-attrs')).toBe('green')
+ })
+})
diff --git a/playground/html/valid.html b/playground/html/valid.html
index 9ff48bbeafba6b..a2bd28f802184e 100644
--- a/playground/html/valid.html
+++ b/playground/html/valid.html
@@ -5,3 +5,6 @@
+
+
No quotes on Attr
+
\ No newline at end of file
diff --git a/playground/html/valid.js b/playground/html/valid.js
new file mode 100644
index 00000000000000..f7f62b132fbc94
--- /dev/null
+++ b/playground/html/valid.js
@@ -0,0 +1,3 @@
+document.getElementById(
+ `no-quotes-on-attr`
+).innerHTML = `No quotes on Attr working`
diff --git a/playground/json/package.json b/playground/json/package.json
index b2c29d3e6f494d..c329f7c4669df3 100644
--- a/playground/json/package.json
+++ b/playground/json/package.json
@@ -14,6 +14,6 @@
"devDependencies": {
"express": "^4.18.1",
"json-module": "file:./json-module",
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
}
}
diff --git a/playground/multiple-entrypoints/package.json b/playground/multiple-entrypoints/package.json
index 8a62eb41c6dbde..742c073a1df9a1 100644
--- a/playground/multiple-entrypoints/package.json
+++ b/playground/multiple-entrypoints/package.json
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"devDependencies": {
- "fast-glob": "^3.2.11",
- "sass": "^1.54.8"
+ "fast-glob": "^3.2.12",
+ "sass": "^1.54.9"
}
}
diff --git a/playground/object-hooks/package.json b/playground/object-hooks/package.json
index a90473c15cfb64..ab6e8a04d8f746 100644
--- a/playground/object-hooks/package.json
+++ b/playground/object-hooks/package.json
@@ -9,6 +9,6 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
}
}
diff --git a/playground/optimize-deps/package.json b/playground/optimize-deps/package.json
index f9254a5e221147..5c46d84ba4c250 100644
--- a/playground/optimize-deps/package.json
+++ b/playground/optimize-deps/package.json
@@ -33,7 +33,7 @@
"react-dom": "^18.2.0",
"resolve-linked": "workspace:0.0.0",
"url": "^0.11.0",
- "vue": "^3.2.38",
+ "vue": "^3.2.39",
"vuex": "^4.0.2",
"lodash": "^4.17.21",
"lodash.clonedeep": "^4.5.0"
diff --git a/playground/preload/package.json b/playground/preload/package.json
index ec11ffd6b10599..154dd22889756e 100644
--- a/playground/preload/package.json
+++ b/playground/preload/package.json
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.2.38",
+ "vue": "^3.2.39",
"vue-router": "^4.1.5"
},
"devDependencies": {
diff --git a/playground/resolve/package.json b/playground/resolve/package.json
index 1b8e76e353a7ff..760fba0c02f5a0 100644
--- a/playground/resolve/package.json
+++ b/playground/resolve/package.json
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
- "@babel/runtime": "^7.18.9",
+ "@babel/runtime": "^7.19.0",
"es5-ext": "0.10.62",
"normalize.css": "^8.0.1",
"require-pkg-with-module-field": "link:./require-pkg-with-module-field",
diff --git a/playground/ssr-vue/package.json b/playground/ssr-vue/package.json
index f3869dc9c1fdf3..bb4edd525549a1 100644
--- a/playground/ssr-vue/package.json
+++ b/playground/ssr-vue/package.json
@@ -16,7 +16,7 @@
},
"dependencies": {
"example-external-component": "file:example-external-component",
- "vue": "^3.2.38",
+ "vue": "^3.2.39",
"vue-router": "^4.1.5",
"vuex": "^4.0.2"
},
diff --git a/playground/tailwind/package.json b/playground/tailwind/package.json
index 0bc57919fdf209..9fa970e7526fe8 100644
--- a/playground/tailwind/package.json
+++ b/playground/tailwind/package.json
@@ -9,9 +9,9 @@
"preview": "vite preview"
},
"dependencies": {
- "autoprefixer": "^10.4.8",
+ "autoprefixer": "^10.4.9",
"tailwindcss": "^3.1.8",
- "vue": "^3.2.38",
+ "vue": "^3.2.39",
"vue-router": "^4.1.5"
},
"devDependencies": {
diff --git a/playground/vue-jsx/package.json b/playground/vue-jsx/package.json
index 8d376c526a9bde..a89519f4e5399b 100644
--- a/playground/vue-jsx/package.json
+++ b/playground/vue-jsx/package.json
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
},
"devDependencies": {
"@vitejs/plugin-vue": "workspace:*",
diff --git a/playground/vue-legacy/package.json b/playground/vue-legacy/package.json
index 9a6267fc79c842..e90be717245628 100644
--- a/playground/vue-legacy/package.json
+++ b/playground/vue-legacy/package.json
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
},
"devDependencies": {
"@vitejs/plugin-vue": "workspace:*",
diff --git a/playground/vue-lib/package.json b/playground/vue-lib/package.json
index e593d30981e3b6..d59f3d626160d4 100644
--- a/playground/vue-lib/package.json
+++ b/playground/vue-lib/package.json
@@ -8,7 +8,7 @@
"build-consumer": "vite build --config ./vite.config.consumer.ts"
},
"dependencies": {
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
},
"devDependencies": {
"@vitejs/plugin-vue": "workspace:*"
diff --git a/playground/vue-server-origin/package.json b/playground/vue-server-origin/package.json
index 754c4122af8a18..2056ec63aa5c08 100644
--- a/playground/vue-server-origin/package.json
+++ b/playground/vue-server-origin/package.json
@@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
},
"devDependencies": {
"@vitejs/plugin-vue": "workspace:*"
diff --git a/playground/vue-sourcemap/package.json b/playground/vue-sourcemap/package.json
index f140a473affb2e..00425f8c301b01 100644
--- a/playground/vue-sourcemap/package.json
+++ b/playground/vue-sourcemap/package.json
@@ -12,9 +12,9 @@
"@vitejs/plugin-vue": "workspace:*",
"less": "^4.1.3",
"postcss-nested": "^5.0.6",
- "sass": "^1.54.8"
+ "sass": "^1.54.9"
},
"dependencies": {
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
}
}
diff --git a/playground/vue/package.json b/playground/vue/package.json
index 7ef2fe5d69c4d4..68b59bee0d297e 100644
--- a/playground/vue/package.json
+++ b/playground/vue/package.json
@@ -10,14 +10,14 @@
},
"dependencies": {
"lodash-es": "^4.17.21",
- "vue": "^3.2.38"
+ "vue": "^3.2.39"
},
"devDependencies": {
"@vitejs/plugin-vue": "workspace:*",
"js-yaml": "^4.1.0",
"less": "^4.1.3",
"pug": "^3.0.2",
- "sass": "^1.54.8",
+ "sass": "^1.54.9",
"stylus": "^0.59.0"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 067ce3335e4593..837648b0bc6362 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,9 +10,9 @@ importers:
.:
specifiers:
- '@babel/types': ^7.18.13
+ '@babel/types': ^7.19.0
'@microsoft/api-extractor': ^7.30.0
- '@rollup/plugin-typescript': ^8.4.0
+ '@rollup/plugin-typescript': ^8.5.0
'@types/babel__core': ^7.1.19
'@types/babel__standalone': ^7.1.4
'@types/convert-source-map': ^1.5.2
@@ -31,22 +31,22 @@ importers:
'@types/semver': ^7.3.12
'@types/stylus': ^0.48.38
'@types/ws': ^8.5.3
- '@typescript-eslint/eslint-plugin': ^5.36.1
- '@typescript-eslint/parser': ^5.36.1
+ '@typescript-eslint/eslint-plugin': ^5.36.2
+ '@typescript-eslint/parser': ^5.36.2
conventional-changelog-cli: ^2.2.2
esbuild: ^0.14.47
- eslint: ^8.23.0
+ eslint: ^8.23.1
eslint-define-config: ^1.7.0
eslint-plugin-import: ^2.26.0
eslint-plugin-node: ^11.1.0
execa: ^6.1.0
- fast-glob: ^3.2.11
+ fast-glob: ^3.2.12
fs-extra: ^10.1.0
lint-staged: ^13.0.3
minimist: ^1.2.6
npm-run-all: ^4.1.5
picocolors: ^1.0.0
- playwright-chromium: ^1.25.1
+ playwright-chromium: ^1.25.2
pnpm: ^7.11.0
prettier: 2.7.1
prompts: ^2.4.2
@@ -62,12 +62,12 @@ importers:
unbuild: ^0.8.10
vite: workspace:*
vitepress: ^1.0.0-alpha.13
- vitest: ^0.23.1
- vue: ^3.2.38
+ vitest: ^0.23.2
+ vue: ^3.2.39
devDependencies:
- '@babel/types': 7.18.13
+ '@babel/types': 7.19.0
'@microsoft/api-extractor': 7.30.0
- '@rollup/plugin-typescript': 8.4.0_7emp2e44zzc74lnyjhc37gdv4y
+ '@rollup/plugin-typescript': 8.5.0_7emp2e44zzc74lnyjhc37gdv4y
'@types/babel__core': 7.1.19
'@types/babel__standalone': 7.1.4
'@types/convert-source-map': 1.5.2
@@ -86,22 +86,22 @@ importers:
'@types/semver': 7.3.12
'@types/stylus': 0.48.38
'@types/ws': 8.5.3
- '@typescript-eslint/eslint-plugin': 5.36.1_g2qdd2k5igsxhudjjarcmw5o7e
- '@typescript-eslint/parser': 5.36.1_pyvvhc3zqdua4akflcggygkl44
+ '@typescript-eslint/eslint-plugin': 5.36.2_awhnkuan3nwzeorz7kw3smrrx4
+ '@typescript-eslint/parser': 5.36.2_3pgpbtxx6aaanl2g7t7xjqhlje
conventional-changelog-cli: 2.2.2
esbuild: 0.14.47
- eslint: 8.23.0
+ eslint: 8.23.1
eslint-define-config: 1.7.0
- eslint-plugin-import: 2.26.0_wyxuyzvlfep3lsyoibc4fosfq4
- eslint-plugin-node: 11.1.0_eslint@8.23.0
+ eslint-plugin-import: 2.26.0_bgdmkk372fjuptfjwugrzcrhfe
+ eslint-plugin-node: 11.1.0_eslint@8.23.1
execa: 6.1.0
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
fs-extra: 10.1.0
lint-staged: 13.0.3
minimist: 1.2.6
npm-run-all: 4.1.5
picocolors: 1.0.0
- playwright-chromium: 1.25.1
+ playwright-chromium: 1.25.2
pnpm: 7.11.0
prettier: 2.7.1
prompts: 2.4.2
@@ -117,46 +117,46 @@ importers:
unbuild: 0.8.10
vite: link:packages/vite
vitepress: 1.0.0-alpha.13
- vitest: 0.23.1
- vue: 3.2.38
+ vitest: 0.23.2
+ vue: 3.2.39
packages/create-vite:
specifiers:
cross-spawn: ^7.0.3
- kolorist: ^1.5.1
+ kolorist: ^1.6.0
minimist: ^1.2.6
prompts: ^2.4.2
devDependencies:
cross-spawn: 7.0.3
- kolorist: 1.5.1
+ kolorist: 1.6.0
minimist: 1.2.6
prompts: 2.4.2
packages/plugin-legacy:
specifiers:
- '@babel/core': ^7.18.13
- '@babel/standalone': ^7.18.13
- core-js: ^3.25.0
+ '@babel/core': ^7.19.0
+ '@babel/standalone': ^7.19.0
+ core-js: ^3.25.1
magic-string: ^0.26.3
picocolors: ^1.0.0
regenerator-runtime: ^0.13.9
systemjs: ^6.12.6
vite: workspace:*
dependencies:
- '@babel/standalone': 7.18.13
- core-js: 3.25.0
+ '@babel/standalone': 7.19.0
+ core-js: 3.25.1
magic-string: 0.26.3
regenerator-runtime: 0.13.9
systemjs: 6.12.6
devDependencies:
- '@babel/core': 7.18.13
+ '@babel/core': 7.19.0
picocolors: 1.0.0
vite: link:../vite
packages/plugin-react:
specifiers:
- '@babel/core': ^7.18.13
- '@babel/plugin-transform-react-jsx': ^7.18.10
+ '@babel/core': ^7.19.0
+ '@babel/plugin-transform-react-jsx': ^7.19.0
'@babel/plugin-transform-react-jsx-development': ^7.18.6
'@babel/plugin-transform-react-jsx-self': ^7.18.6
'@babel/plugin-transform-react-jsx-source': ^7.18.6
@@ -164,11 +164,11 @@ importers:
react-refresh: ^0.14.0
vite: workspace:*
dependencies:
- '@babel/core': 7.18.13
- '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.13
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.13
- '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.18.13
- '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.18.13
+ '@babel/core': 7.19.0
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.0
+ '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.19.0
+ '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.19.0
+ '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.19.0
magic-string: 0.26.3
react-refresh: 0.14.0
devDependencies:
@@ -183,7 +183,7 @@ importers:
slash: ^4.0.0
source-map: ^0.6.1
vite: workspace:*
- vue: ^3.2.38
+ vue: ^3.2.39
devDependencies:
'@jridgewell/gen-mapping': 0.3.2
'@jridgewell/trace-mapping': 0.3.15
@@ -192,35 +192,35 @@ importers:
slash: 4.0.0
source-map: 0.6.1
vite: link:../vite
- vue: 3.2.38
+ vue: 3.2.39
packages/plugin-vue-jsx:
specifiers:
- '@babel/core': ^7.18.13
+ '@babel/core': ^7.19.0
'@babel/plugin-syntax-import-meta': ^7.10.4
- '@babel/plugin-transform-typescript': ^7.18.12
+ '@babel/plugin-transform-typescript': ^7.19.0
'@vue/babel-plugin-jsx': ^1.1.1
vite: workspace:*
dependencies:
- '@babel/core': 7.18.13
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.13
- '@babel/plugin-transform-typescript': 7.18.12_@babel+core@7.18.13
- '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.13
+ '@babel/core': 7.19.0
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.19.0
+ '@babel/plugin-transform-typescript': 7.19.0_@babel+core@7.19.0
+ '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.19.0
devDependencies:
vite: link:../vite
packages/vite:
specifiers:
'@ampproject/remapping': ^2.2.0
- '@babel/parser': ^7.18.13
- '@babel/types': ^7.18.13
+ '@babel/parser': ^7.19.0
+ '@babel/types': ^7.19.0
'@jridgewell/trace-mapping': ^0.3.15
'@rollup/plugin-alias': ^3.1.9
'@rollup/plugin-commonjs': ^22.0.2
'@rollup/plugin-dynamic-import-vars': ^1.4.4
'@rollup/plugin-json': ^4.1.0
- '@rollup/plugin-node-resolve': 13.3.0
- '@rollup/plugin-typescript': ^8.4.0
+ '@rollup/plugin-node-resolve': 14.0.1
+ '@rollup/plugin-typescript': ^8.5.0
'@rollup/pluginutils': ^4.2.1
acorn: ^8.8.0
cac: ^6.7.14
@@ -237,7 +237,7 @@ importers:
esbuild: ^0.15.6
estree-walker: ^3.0.1
etag: ^1.8.1
- fast-glob: ^3.2.11
+ fast-glob: ^3.2.12
fsevents: ~2.3.2
http-proxy: ^1.18.1
json5: ^2.2.1
@@ -277,15 +277,15 @@ importers:
fsevents: 2.3.2
devDependencies:
'@ampproject/remapping': 2.2.0
- '@babel/parser': 7.18.13
- '@babel/types': 7.18.13
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
'@jridgewell/trace-mapping': 0.3.15
'@rollup/plugin-alias': 3.1.9_rollup@2.78.0
'@rollup/plugin-commonjs': 22.0.2_rollup@2.78.0
'@rollup/plugin-dynamic-import-vars': 1.4.4_rollup@2.78.0
'@rollup/plugin-json': 4.1.0_rollup@2.78.0
- '@rollup/plugin-node-resolve': 13.3.0_rollup@2.78.0
- '@rollup/plugin-typescript': 8.4.0_rollup@2.78.0+tslib@2.4.0
+ '@rollup/plugin-node-resolve': 14.0.1_rollup@2.78.0
+ '@rollup/plugin-typescript': 8.5.0_rollup@2.78.0+tslib@2.4.0
'@rollup/pluginutils': 4.2.1
acorn: 8.8.0
cac: 6.7.14
@@ -301,7 +301,7 @@ importers:
es-module-lexer: 1.0.3
estree-walker: 3.0.1
etag: 1.8.1
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
http-proxy: 1.18.1_debug@4.3.4
json5: 2.2.1
launch-editor-middleware: 2.6.0
@@ -345,14 +345,14 @@ importers:
playground/alias:
specifiers:
- '@vue/shared': ^3.2.38
+ '@vue/shared': ^3.2.39
aliased-module: file:./dir/module
resolve-linked: workspace:*
- vue: ^3.2.38
+ vue: ^3.2.39
dependencies:
- '@vue/shared': 3.2.38
+ '@vue/shared': 3.2.39
aliased-module: file:playground/alias/dir/module
- vue: 3.2.38
+ vue: 3.2.39
devDependencies:
resolve-linked: link:../resolve-linked
@@ -367,12 +367,12 @@ importers:
playground/backend-integration:
specifiers:
- fast-glob: ^3.2.11
- sass: ^1.54.8
+ fast-glob: ^3.2.12
+ sass: ^1.54.9
tailwindcss: ^3.1.8
devDependencies:
- fast-glob: 3.2.11
- sass: 1.54.8
+ fast-glob: 3.2.12
+ sass: 1.54.9
tailwindcss: 3.1.8
playground/build-old:
@@ -388,18 +388,18 @@ importers:
specifiers:
css-dep: link:./css-dep
css-js-dep: file:./css-js-dep
- fast-glob: ^3.2.11
+ fast-glob: ^3.2.12
less: ^4.1.3
postcss-nested: ^5.0.6
- sass: ^1.54.8
+ sass: ^1.54.9
stylus: ^0.59.0
devDependencies:
css-dep: link:css-dep
css-js-dep: file:playground/css/css-js-dep
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
less: 4.1.3
postcss-nested: 5.0.6
- sass: 1.54.8
+ sass: 1.54.9
stylus: 0.59.0
playground/css-codesplit:
@@ -412,12 +412,12 @@ importers:
specifiers:
less: ^4.1.3
magic-string: ^0.26.3
- sass: ^1.54.8
+ sass: ^1.54.9
stylus: ^0.59.0
devDependencies:
less: 4.1.3
magic-string: 0.26.3
- sass: 1.54.8
+ sass: 1.54.9
stylus: 0.59.0
playground/css/css-dep:
@@ -464,34 +464,34 @@ importers:
playground/extensions:
specifiers:
- vue: ^3.2.38
+ vue: ^3.2.39
dependencies:
- vue: 3.2.38
+ vue: 3.2.39
playground/external:
specifiers:
'@vitejs/dep-that-imports-vue': file:./dep-that-imports-vue
'@vitejs/dep-that-requires-vue': file:./dep-that-requires-vue
vite: workspace:*
- vue: ^3.2.38
+ vue: ^3.2.39
dependencies:
'@vitejs/dep-that-imports-vue': file:playground/external/dep-that-imports-vue
'@vitejs/dep-that-requires-vue': file:playground/external/dep-that-requires-vue
devDependencies:
vite: link:../../packages/vite
- vue: 3.2.38
+ vue: 3.2.39
playground/external/dep-that-imports-vue:
specifiers:
- vue: ^3.2.38
+ vue: ^3.2.39
dependencies:
- vue: 3.2.38
+ vue: 3.2.39
playground/external/dep-that-requires-vue:
specifiers:
- vue: ^3.2.38
+ vue: ^3.2.39
dependencies:
- vue: 3.2.38
+ vue: 3.2.39
playground/file-delete-restore:
specifiers:
@@ -532,11 +532,11 @@ importers:
specifiers:
express: ^4.18.1
json-module: file:./json-module
- vue: ^3.2.38
+ vue: ^3.2.39
devDependencies:
express: 4.18.1
json-module: file:playground/json/json-module
- vue: 3.2.38
+ vue: 3.2.39
playground/json/json-module:
specifiers: {}
@@ -559,11 +559,11 @@ importers:
playground/multiple-entrypoints:
specifiers:
- fast-glob: ^3.2.11
- sass: ^1.54.8
+ fast-glob: ^3.2.12
+ sass: ^1.54.9
devDependencies:
- fast-glob: 3.2.11
- sass: 1.54.8
+ fast-glob: 3.2.12
+ sass: 1.54.9
playground/nested-deps:
specifiers:
@@ -616,9 +616,9 @@ importers:
playground/object-hooks:
specifiers:
- vue: ^3.2.38
+ vue: ^3.2.39
dependencies:
- vue: 3.2.38
+ vue: 3.2.39
playground/optimize-deps:
specifiers:
@@ -649,7 +649,7 @@ importers:
react-dom: ^18.2.0
resolve-linked: workspace:0.0.0
url: ^0.11.0
- vue: ^3.2.38
+ vue: ^3.2.39
vuex: ^4.0.2
dependencies:
added-in-entries: file:playground/optimize-deps/added-in-entries
@@ -678,8 +678,8 @@ importers:
react-dom: 18.2.0_react@18.2.0
resolve-linked: link:../resolve-linked
url: 0.11.0
- vue: 3.2.38
- vuex: 4.0.2_vue@3.2.38
+ vue: 3.2.39
+ vuex: 4.0.2_vue@3.2.39
devDependencies:
'@vitejs/plugin-vue': link:../../packages/plugin-vue
@@ -770,11 +770,11 @@ importers:
dep-a: file:./dep-a
dep-including-a: file:./dep-including-a
terser: ^5.15.0
- vue: ^3.2.38
+ vue: ^3.2.39
vue-router: ^4.1.5
dependencies:
- vue: 3.2.38
- vue-router: 4.1.5_vue@3.2.38
+ vue: 3.2.39
+ vue-router: 4.1.5_vue@3.2.39
devDependencies:
'@vitejs/plugin-vue': link:../../packages/plugin-vue
dep-a: file:playground/preload/dep-a
@@ -858,7 +858,7 @@ importers:
playground/resolve:
specifiers:
- '@babel/runtime': ^7.18.9
+ '@babel/runtime': ^7.19.0
es5-ext: 0.10.62
normalize.css: ^8.0.1
require-pkg-with-module-field: link:./require-pkg-with-module-field
@@ -872,7 +872,7 @@ importers:
resolve-exports-path: link:./exports-path
resolve-linked: workspace:*
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.19.0
es5-ext: 0.10.62
normalize.css: 8.0.1
require-pkg-with-module-field: link:require-pkg-with-module-field
@@ -1094,14 +1094,14 @@ importers:
example-external-component: file:example-external-component
express: ^4.18.1
serve-static: ^1.15.0
- vue: ^3.2.38
+ vue: ^3.2.39
vue-router: ^4.1.5
vuex: ^4.0.2
dependencies:
example-external-component: file:playground/ssr-vue/example-external-component
- vue: 3.2.38
- vue-router: 4.1.5_vue@3.2.38
- vuex: 4.0.2_vue@3.2.38
+ vue: 3.2.39
+ vue-router: 4.1.5_vue@3.2.39
+ vuex: 4.0.2_vue@3.2.39
devDependencies:
'@vitejs/plugin-vue': link:../../packages/plugin-vue
'@vitejs/plugin-vue-jsx': link:../../packages/plugin-vue-jsx
@@ -1130,16 +1130,16 @@ importers:
playground/tailwind:
specifiers:
'@vitejs/plugin-vue': workspace:*
- autoprefixer: ^10.4.8
+ autoprefixer: ^10.4.9
tailwindcss: ^3.1.8
ts-node: ^10.9.1
- vue: ^3.2.38
+ vue: ^3.2.39
vue-router: ^4.1.5
dependencies:
- autoprefixer: 10.4.8
+ autoprefixer: 10.4.9
tailwindcss: 3.1.8_ts-node@10.9.1
- vue: 3.2.38
- vue-router: 4.1.5_vue@3.2.38
+ vue: 3.2.39
+ vue-router: 4.1.5_vue@3.2.39
devDependencies:
'@vitejs/plugin-vue': link:../../packages/plugin-vue
ts-node: 10.9.1
@@ -1163,27 +1163,27 @@ importers:
less: ^4.1.3
lodash-es: ^4.17.21
pug: ^3.0.2
- sass: ^1.54.8
+ sass: ^1.54.9
stylus: ^0.59.0
- vue: ^3.2.38
+ vue: ^3.2.39
dependencies:
lodash-es: 4.17.21
- vue: 3.2.38
+ vue: 3.2.39
devDependencies:
'@vitejs/plugin-vue': link:../../packages/plugin-vue
js-yaml: 4.1.0
less: 4.1.3
pug: 3.0.2
- sass: 1.54.8
+ sass: 1.54.9
stylus: 0.59.0
playground/vue-jsx:
specifiers:
'@vitejs/plugin-vue': workspace:*
'@vitejs/plugin-vue-jsx': workspace:*
- vue: ^3.2.38
+ vue: ^3.2.39
dependencies:
- vue: 3.2.38
+ vue: 3.2.39
devDependencies:
'@vitejs/plugin-vue': link:../../packages/plugin-vue
'@vitejs/plugin-vue-jsx': link:../../packages/plugin-vue-jsx
@@ -1192,9 +1192,9 @@ importers:
specifiers:
'@vitejs/plugin-legacy': workspace:*
'@vitejs/plugin-vue': workspace:*
- vue: ^3.2.38
+ vue: ^3.2.39
dependencies:
- vue: 3.2.38
+ vue: 3.2.39
devDependencies:
'@vitejs/plugin-legacy': link:../../packages/plugin-legacy
'@vitejs/plugin-vue': link:../../packages/plugin-vue
@@ -1202,18 +1202,18 @@ importers:
playground/vue-lib:
specifiers:
'@vitejs/plugin-vue': workspace:*
- vue: ^3.2.38
+ vue: ^3.2.39
dependencies:
- vue: 3.2.38
+ vue: 3.2.39
devDependencies:
'@vitejs/plugin-vue': link:../../packages/plugin-vue
playground/vue-server-origin:
specifiers:
'@vitejs/plugin-vue': workspace:*
- vue: ^3.2.38
+ vue: ^3.2.39
dependencies:
- vue: 3.2.38
+ vue: 3.2.39
devDependencies:
'@vitejs/plugin-vue': link:../../packages/plugin-vue
@@ -1222,15 +1222,15 @@ importers:
'@vitejs/plugin-vue': workspace:*
less: ^4.1.3
postcss-nested: ^5.0.6
- sass: ^1.54.8
- vue: ^3.2.38
+ sass: ^1.54.9
+ vue: ^3.2.39
dependencies:
- vue: 3.2.38
+ vue: 3.2.39
devDependencies:
'@vitejs/plugin-vue': link:../../packages/plugin-vue
less: 4.1.3
postcss-nested: 5.0.6
- sass: 1.54.8
+ sass: 1.54.9
playground/wasm:
specifiers: {}
@@ -1370,42 +1370,30 @@ packages:
'@jridgewell/gen-mapping': 0.1.1
'@jridgewell/trace-mapping': 0.3.15
- /@babel/code-frame/7.16.7:
- resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/highlight': 7.18.6
- dev: true
-
/@babel/code-frame/7.18.6:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.18.6
- /@babel/compat-data/7.17.10:
- resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==}
+ /@babel/compat-data/7.19.0:
+ resolution: {integrity: sha512-y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw==}
engines: {node: '>=6.9.0'}
- dev: true
- /@babel/compat-data/7.18.8:
- resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==}
- engines: {node: '>=6.9.0'}
-
- /@babel/core/7.18.13:
- resolution: {integrity: sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A==}
+ /@babel/core/7.19.0:
+ resolution: {integrity: sha512-reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.13
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.13
- '@babel/helper-module-transforms': 7.18.9
- '@babel/helpers': 7.18.9
- '@babel/parser': 7.18.13
+ '@babel/generator': 7.19.0
+ '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.0
+ '@babel/helper-module-transforms': 7.19.0
+ '@babel/helpers': 7.19.0
+ '@babel/parser': 7.19.0
'@babel/template': 7.18.10
- '@babel/traverse': 7.18.13
- '@babel/types': 7.18.13
+ '@babel/traverse': 7.19.0
+ '@babel/types': 7.19.0
convert-source-map: 1.8.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -1414,97 +1402,43 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/core/7.18.5:
- resolution: {integrity: sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ==}
+ /@babel/generator/7.19.0:
+ resolution: {integrity: sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@ampproject/remapping': 2.2.0
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.18.2
- '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5
- '@babel/helper-module-transforms': 7.18.0
- '@babel/helpers': 7.18.2
- '@babel/parser': 7.18.5
- '@babel/template': 7.16.7
- '@babel/traverse': 7.18.5
- '@babel/types': 7.18.13
- convert-source-map: 1.8.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/generator/7.18.13:
- resolution: {integrity: sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.13
+ '@babel/types': 7.19.0
'@jridgewell/gen-mapping': 0.3.2
jsesc: 2.5.2
- /@babel/generator/7.18.2:
- resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.13
- '@jridgewell/gen-mapping': 0.3.1
- jsesc: 2.5.2
- dev: true
-
- /@babel/generator/7.18.9:
- resolution: {integrity: sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.13
- '@jridgewell/gen-mapping': 0.3.2
- jsesc: 2.5.2
- dev: false
-
/@babel/helper-annotate-as-pure/7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
dev: false
- /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.5:
- resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/compat-data': 7.17.10
- '@babel/core': 7.18.5
- '@babel/helper-validator-option': 7.16.7
- browserslist: 4.20.3
- semver: 6.3.0
- dev: true
-
- /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.13:
- resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==}
+ /@babel/helper-compilation-targets/7.19.0_@babel+core@7.19.0:
+ resolution: {integrity: sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.18.8
- '@babel/core': 7.18.13
+ '@babel/compat-data': 7.19.0
+ '@babel/core': 7.19.0
'@babel/helper-validator-option': 7.18.6
browserslist: 4.21.3
semver: 6.3.0
- /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.13:
- resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==}
+ /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.0:
+ resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.18.13
+ '@babel/core': 7.19.0
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.18.9
+ '@babel/helper-function-name': 7.19.0
'@babel/helper-member-expression-to-functions': 7.18.9
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-replace-supers': 7.18.9
@@ -1513,87 +1447,45 @@ packages:
- supports-color
dev: false
- /@babel/helper-environment-visitor/7.16.7:
- resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.13
- dev: true
-
- /@babel/helper-environment-visitor/7.18.2:
- resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==}
- engines: {node: '>=6.9.0'}
- dev: true
-
/@babel/helper-environment-visitor/7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
engines: {node: '>=6.9.0'}
- /@babel/helper-function-name/7.17.9:
- resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.16.7
- '@babel/types': 7.18.13
- dev: true
-
- /@babel/helper-function-name/7.18.9:
- resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==}
+ /@babel/helper-function-name/7.19.0:
+ resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.18.10
- '@babel/types': 7.18.13
-
- /@babel/helper-hoist-variables/7.16.7:
- resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.13
- dev: true
+ '@babel/types': 7.19.0
/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.13
+ '@babel/types': 7.19.0
/@babel/helper-member-expression-to-functions/7.18.9:
resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
dev: false
/@babel/helper-module-imports/7.16.7:
resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
+ dev: false
/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
- /@babel/helper-module-transforms/7.18.0:
- resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-environment-visitor': 7.16.7
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-simple-access': 7.17.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/helper-validator-identifier': 7.18.6
- '@babel/template': 7.16.7
- '@babel/traverse': 7.18.5
- '@babel/types': 7.18.13
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-module-transforms/7.18.9:
- resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==}
+ /@babel/helper-module-transforms/7.19.0:
+ resolution: {integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.9
@@ -1602,8 +1494,8 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.18.6
'@babel/template': 7.18.10
- '@babel/traverse': 7.18.13
- '@babel/types': 7.18.13
+ '@babel/traverse': 7.19.0
+ '@babel/types': 7.19.0
transitivePeerDependencies:
- supports-color
@@ -1611,7 +1503,7 @@ packages:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.10
+ '@babel/types': 7.19.0
dev: false
/@babel/helper-plugin-utils/7.16.7:
@@ -1627,6 +1519,11 @@ packages:
/@babel/helper-plugin-utils/7.18.9:
resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==}
engines: {node: '>=6.9.0'}
+ dev: true
+
+ /@babel/helper-plugin-utils/7.19.0:
+ resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==}
+ engines: {node: '>=6.9.0'}
/@babel/helper-replace-supers/7.18.9:
resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==}
@@ -1635,78 +1532,43 @@ packages:
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-member-expression-to-functions': 7.18.9
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/traverse': 7.18.9
- '@babel/types': 7.18.10
+ '@babel/traverse': 7.19.0
+ '@babel/types': 7.19.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/helper-simple-access/7.17.7:
- resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.13
- dev: true
-
/@babel/helper-simple-access/7.18.6:
resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.13
-
- /@babel/helper-split-export-declaration/7.16.7:
- resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.13
- dev: true
+ '@babel/types': 7.19.0
/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.13
+ '@babel/types': 7.19.0
/@babel/helper-string-parser/7.18.10:
resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier/7.16.7:
- resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==}
- engines: {node: '>=6.9.0'}
- dev: true
-
/@babel/helper-validator-identifier/7.18.6:
resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option/7.16.7:
- resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==}
- engines: {node: '>=6.9.0'}
- dev: true
-
/@babel/helper-validator-option/7.18.6:
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
engines: {node: '>=6.9.0'}
- /@babel/helpers/7.18.2:
- resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.16.7
- '@babel/traverse': 7.18.5
- '@babel/types': 7.18.13
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helpers/7.18.9:
- resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==}
+ /@babel/helpers/7.19.0:
+ resolution: {integrity: sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.18.10
- '@babel/traverse': 7.18.13
- '@babel/types': 7.18.13
+ '@babel/traverse': 7.19.0
+ '@babel/types': 7.19.0
transitivePeerDependencies:
- supports-color
@@ -1718,35 +1580,12 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser/7.18.11:
- resolution: {integrity: sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.18.13
-
- /@babel/parser/7.18.13:
- resolution: {integrity: sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.18.13
-
- /@babel/parser/7.18.5:
- resolution: {integrity: sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==}
+ /@babel/parser/7.19.0:
+ resolution: {integrity: sha512-74bEXKX2h+8rrfQUfsBfuZZHzsEs6Eql4pqy/T4Nn6Y9wNPggQOqD6z6pn5Bl8ZfysKouFZT/UXEH94ummEeQw==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.18.4
- dev: true
-
- /@babel/parser/7.18.9:
- resolution: {integrity: sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.18.13
- dev: false
+ '@babel/types': 7.19.0
/@babel/plugin-proposal-pipeline-operator/7.18.9:
resolution: {integrity: sha512-Pc33e6m8f4MJhRXVCUwiKZNtEm+W2CUPHIL0lyJNtkp+w6d75CLw3gsBKQ81VAMUgT9jVPIEU8gwJ5nJgmJ1Ag==}
@@ -1758,23 +1597,23 @@ packages:
'@babel/plugin-syntax-pipeline-operator': 7.18.6
dev: true
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.13:
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.19.0:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.13
+ '@babel/core': 7.19.0
'@babel/helper-plugin-utils': 7.16.7
dev: false
- /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.18.13:
+ /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.19.0:
resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.13
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: false
/@babel/plugin-syntax-jsx/7.18.6:
@@ -1783,16 +1622,16 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.13:
+ /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.0:
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.13
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: false
/@babel/plugin-syntax-pipeline-operator/7.18.6:
@@ -1804,82 +1643,82 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.13:
+ /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.0:
resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.13
- '@babel/helper-plugin-utils': 7.18.9
+ '@babel/core': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
dev: false
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.13:
+ /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.19.0:
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.13
- '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.13
+ '@babel/core': 7.19.0
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.0
dev: false
- /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.18.13:
+ /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.19.0:
resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.13
+ '@babel/core': 7.19.0
'@babel/helper-plugin-utils': 7.18.6
dev: false
- /@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.18.13:
+ /@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.19.0:
resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.13
+ '@babel/core': 7.19.0
'@babel/helper-plugin-utils': 7.18.6
dev: false
- /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.18.13:
- resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==}
+ /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.19.0:
+ resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.13
+ '@babel/core': 7.19.0
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.13
- '@babel/types': 7.18.10
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.0
+ '@babel/types': 7.19.0
dev: false
- /@babel/plugin-transform-typescript/7.18.12_@babel+core@7.18.13:
- resolution: {integrity: sha512-2vjjam0cum0miPkenUbQswKowuxs/NjMwIKEq0zwegRxXk12C9YOF9STXnaUptITOtOJHKHpzvvWYOjbm6tc0w==}
+ /@babel/plugin-transform-typescript/7.19.0_@babel+core@7.19.0:
+ resolution: {integrity: sha512-DOOIywxPpkQHXijXv+s9MDAyZcLp12oYRl3CMWZ6u7TjSoCBq/KqHR/nNFR3+i2xqheZxoF0H2XyL7B6xeSRuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.18.13
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.13
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.13
+ '@babel/core': 7.19.0
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/runtime/7.18.9:
- resolution: {integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==}
+ /@babel/runtime/7.19.0:
+ resolution: {integrity: sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.9
- /@babel/standalone/7.18.13:
- resolution: {integrity: sha512-5hjvvFkaXyfQri+s4CAZtx6FTKclfTNd2QN2RwgzCVJhnYYgKh4YFBCnNJSxurzvpSKD2NmpCkoWAkMc+j9y+g==}
+ /@babel/standalone/7.19.0:
+ resolution: {integrity: sha512-P8lYynBl10MYpgkhGEV1fOsGDE/6lQSYp+e2YvqUPMWHT4JaQrOkM49FizjswrRzJ6KZTgG6ZY90/1GYvAR3/Q==}
engines: {node: '>=6.9.0'}
/@babel/template/7.16.7:
@@ -1887,120 +1726,61 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
+ dev: false
/@babel/template/7.18.10:
resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.18.13
- '@babel/types': 7.18.13
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
/@babel/traverse/7.17.10:
resolution: {integrity: sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.9
+ '@babel/generator': 7.19.0
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.18.9
+ '@babel/helper-function-name': 7.19.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.18.11
- '@babel/types': 7.18.10
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/traverse/7.18.13:
- resolution: {integrity: sha512-N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA==}
+ /@babel/traverse/7.19.0:
+ resolution: {integrity: sha512-4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.13
+ '@babel/generator': 7.19.0
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.18.9
+ '@babel/helper-function-name': 7.19.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.18.13
- '@babel/types': 7.18.13
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/traverse/7.18.5:
- resolution: {integrity: sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.2
- '@babel/helper-environment-visitor': 7.18.2
- '@babel/helper-function-name': 7.17.9
- '@babel/helper-hoist-variables': 7.16.7
- '@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.18.13
- '@babel/types': 7.18.13
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/traverse/7.18.9:
- resolution: {integrity: sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@babel/generator': 7.18.9
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.18.9
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.18.9
- '@babel/types': 7.18.10
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/types/7.17.10:
- resolution: {integrity: sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.18.6
- to-fast-properties: 2.0.0
- dev: false
-
- /@babel/types/7.18.10:
- resolution: {integrity: sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.18.10
- '@babel/helper-validator-identifier': 7.18.6
- to-fast-properties: 2.0.0
-
- /@babel/types/7.18.13:
- resolution: {integrity: sha512-ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ==}
+ /@babel/types/7.19.0:
+ resolution: {integrity: sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.18.10
'@babel/helper-validator-identifier': 7.18.6
to-fast-properties: 2.0.0
- /@babel/types/7.18.4:
- resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.16.7
- to-fast-properties: 2.0.0
- dev: true
-
/@cloudflare/workers-types/2.2.2:
resolution: {integrity: sha512-kaMn2rueJ0PL1TYVGknTCh0X0x0d9G+FNXAFep7/4uqecEZoQb/63o6rOmMuiqI09zLuHV6xhKRXinokV/MY9A==}
dev: true
@@ -2056,7 +1836,7 @@ packages:
dependencies:
'@babel/helper-module-imports': 7.18.6
'@babel/plugin-syntax-jsx': 7.18.6
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.19.0
'@emotion/hash': 0.9.0
'@emotion/memoize': 0.8.0
'@emotion/serialize': 1.1.0
@@ -2095,7 +1875,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.19.0
'@emotion/babel-plugin': 11.10.2
'@emotion/cache': 11.10.0
'@emotion/serialize': 1.1.0
@@ -2166,8 +1946,8 @@ packages:
requiresBuild: true
optional: true
- /@eslint/eslintrc/1.3.1:
- resolution: {integrity: sha512-OhSY22oQQdw3zgPOOwdoj01l/Dzl1Z+xyUP33tkSN+aqyEhymJCcPHyXt+ylW8FSe0TfRC2VG+ROQOapD0aZSQ==}
+ /@eslint/eslintrc/1.3.2:
+ resolution: {integrity: sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
@@ -2223,15 +2003,6 @@ packages:
'@jridgewell/set-array': 1.1.1
'@jridgewell/sourcemap-codec': 1.4.13
- /@jridgewell/gen-mapping/0.3.1:
- resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.1.1
- '@jridgewell/sourcemap-codec': 1.4.13
- '@jridgewell/trace-mapping': 0.3.13
- dev: true
-
/@jridgewell/gen-mapping/0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
engines: {node: '>=6.0.0'}
@@ -2258,13 +2029,6 @@ packages:
/@jridgewell/sourcemap-codec/1.4.13:
resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==}
- /@jridgewell/trace-mapping/0.3.13:
- resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==}
- dependencies:
- '@jridgewell/resolve-uri': 3.0.7
- '@jridgewell/sourcemap-codec': 1.4.13
- dev: true
-
/@jridgewell/trace-mapping/0.3.15:
resolution: {integrity: sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==}
dependencies:
@@ -2453,7 +2217,7 @@ packages:
dependencies:
'@rollup/pluginutils': 4.2.1
estree-walker: 2.0.2
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
magic-string: 0.25.9
rollup: 2.78.0
dev: true
@@ -2476,34 +2240,34 @@ packages:
rollup: 2.79.0
dev: true
- /@rollup/plugin-node-resolve/13.3.0_rollup@2.78.0:
+ /@rollup/plugin-node-resolve/13.3.0_rollup@2.79.0:
resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==}
engines: {node: '>= 10.0.0'}
peerDependencies:
rollup: ^2.42.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.78.0
+ '@rollup/pluginutils': 3.1.0_rollup@2.79.0
'@types/resolve': 1.17.1
deepmerge: 4.2.2
is-builtin-module: 3.1.0
is-module: 1.0.0
resolve: 1.22.1
- rollup: 2.78.0
+ rollup: 2.79.0
dev: true
- /@rollup/plugin-node-resolve/13.3.0_rollup@2.79.0:
- resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==}
+ /@rollup/plugin-node-resolve/14.0.1_rollup@2.78.0:
+ resolution: {integrity: sha512-YvSs0ev00QWTQS8u+yaCJkIUPBgpmBsnzRJFvg8c2chbky85ZKoZtoNuRH0k9rjZT4xpgEPOiVTyeJTj1/iMdQ==}
engines: {node: '>= 10.0.0'}
peerDependencies:
- rollup: ^2.42.0
+ rollup: ^2.78.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.79.0
+ '@rollup/pluginutils': 3.1.0_rollup@2.78.0
'@types/resolve': 1.17.1
deepmerge: 4.2.2
is-builtin-module: 3.1.0
is-module: 1.0.0
resolve: 1.22.1
- rollup: 2.79.0
+ rollup: 2.78.0
dev: true
/@rollup/plugin-replace/4.0.0_rollup@2.79.0:
@@ -2516,8 +2280,8 @@ packages:
rollup: 2.79.0
dev: true
- /@rollup/plugin-typescript/8.4.0_7emp2e44zzc74lnyjhc37gdv4y:
- resolution: {integrity: sha512-QssfoOP6V4/6skX12EfOW5UzJAv/c334F4OJWmQpe2kg3agEa0JwVCckwmfuvEgDixyX+XyxjFenH7M2rDKUyQ==}
+ /@rollup/plugin-typescript/8.5.0_7emp2e44zzc74lnyjhc37gdv4y:
+ resolution: {integrity: sha512-wMv1/scv0m/rXx21wD2IsBbJFba8wGF3ErJIr6IKRfRj49S85Lszbxb4DCo8iILpluTjk2GAAu9CoZt4G3ppgQ==}
engines: {node: '>=8.0.0'}
peerDependencies:
rollup: ^2.14.0
@@ -2534,8 +2298,8 @@ packages:
typescript: 4.6.4
dev: true
- /@rollup/plugin-typescript/8.4.0_rollup@2.78.0+tslib@2.4.0:
- resolution: {integrity: sha512-QssfoOP6V4/6skX12EfOW5UzJAv/c334F4OJWmQpe2kg3agEa0JwVCckwmfuvEgDixyX+XyxjFenH7M2rDKUyQ==}
+ /@rollup/plugin-typescript/8.5.0_rollup@2.78.0+tslib@2.4.0:
+ resolution: {integrity: sha512-wMv1/scv0m/rXx21wD2IsBbJFba8wGF3ErJIr6IKRfRj49S85Lszbxb4DCo8iILpluTjk2GAAu9CoZt4G3ppgQ==}
engines: {node: '>=8.0.0'}
peerDependencies:
rollup: ^2.14.0
@@ -2635,8 +2399,8 @@ packages:
/@types/babel__core/7.1.19:
resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==}
dependencies:
- '@babel/parser': 7.18.5
- '@babel/types': 7.18.13
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.17.1
@@ -2645,13 +2409,13 @@ packages:
/@types/babel__generator/7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
- '@babel/types': 7.18.13
+ '@babel/types': 7.19.0
dev: true
/@types/babel__standalone/7.1.4:
resolution: {integrity: sha512-HijIDmcNl3Wmo0guqjYkQvMzyRCM6zMCkYcdG8f+2X7mPBNa9ikSeaQlWs2Yg18KN1klOJzyupX5BPOf+7ahaw==}
dependencies:
- '@babel/core': 7.18.5
+ '@babel/core': 7.19.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -2659,14 +2423,14 @@ packages:
/@types/babel__template/7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
- '@babel/parser': 7.18.5
- '@babel/types': 7.18.13
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
dev: true
/@types/babel__traverse/7.17.1:
resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==}
dependencies:
- '@babel/types': 7.18.13
+ '@babel/types': 7.19.0
dev: true
/@types/braces/3.0.1:
@@ -2814,8 +2578,8 @@ packages:
'@types/node': 17.0.42
dev: true
- /@typescript-eslint/eslint-plugin/5.36.1_g2qdd2k5igsxhudjjarcmw5o7e:
- resolution: {integrity: sha512-iC40UK8q1tMepSDwiLbTbMXKDxzNy+4TfPWgIL661Ym0sD42vRcQU93IsZIrmi+x292DBr60UI/gSwfdVYexCA==}
+ /@typescript-eslint/eslint-plugin/5.36.2_awhnkuan3nwzeorz7kw3smrrx4:
+ resolution: {integrity: sha512-OwwR8LRwSnI98tdc2z7mJYgY60gf7I9ZfGjN5EjCwwns9bdTuQfAXcsjSB2wSQ/TVNYSGKf4kzVXbNGaZvwiXw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
@@ -2825,12 +2589,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.36.1_pyvvhc3zqdua4akflcggygkl44
- '@typescript-eslint/scope-manager': 5.36.1
- '@typescript-eslint/type-utils': 5.36.1_pyvvhc3zqdua4akflcggygkl44
- '@typescript-eslint/utils': 5.36.1_pyvvhc3zqdua4akflcggygkl44
+ '@typescript-eslint/parser': 5.36.2_3pgpbtxx6aaanl2g7t7xjqhlje
+ '@typescript-eslint/scope-manager': 5.36.2
+ '@typescript-eslint/type-utils': 5.36.2_3pgpbtxx6aaanl2g7t7xjqhlje
+ '@typescript-eslint/utils': 5.36.2_3pgpbtxx6aaanl2g7t7xjqhlje
debug: 4.3.4
- eslint: 8.23.0
+ eslint: 8.23.1
functional-red-black-tree: 1.0.1
ignore: 5.2.0
regexpp: 3.2.0
@@ -2841,8 +2605,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser/5.36.1_pyvvhc3zqdua4akflcggygkl44:
- resolution: {integrity: sha512-/IsgNGOkBi7CuDfUbwt1eOqUXF9WGVBW9dwEe1pi+L32XrTsZIgmDFIi2RxjzsvB/8i+MIf5JIoTEH8LOZ368A==}
+ /@typescript-eslint/parser/5.36.2_3pgpbtxx6aaanl2g7t7xjqhlje:
+ resolution: {integrity: sha512-qS/Kb0yzy8sR0idFspI9Z6+t7mqk/oRjnAYfewG+VN73opAUvmYL3oPIMmgOX6CnQS6gmVIXGshlb5RY/R22pA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -2851,26 +2615,26 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.36.1
- '@typescript-eslint/types': 5.36.1
- '@typescript-eslint/typescript-estree': 5.36.1_typescript@4.6.4
+ '@typescript-eslint/scope-manager': 5.36.2
+ '@typescript-eslint/types': 5.36.2
+ '@typescript-eslint/typescript-estree': 5.36.2_typescript@4.6.4
debug: 4.3.4
- eslint: 8.23.0
+ eslint: 8.23.1
typescript: 4.6.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/scope-manager/5.36.1:
- resolution: {integrity: sha512-pGC2SH3/tXdu9IH3ItoqciD3f3RRGCh7hb9zPdN2Drsr341zgd6VbhP5OHQO/reUqihNltfPpMpTNihFMarP2w==}
+ /@typescript-eslint/scope-manager/5.36.2:
+ resolution: {integrity: sha512-cNNP51L8SkIFSfce8B1NSUBTJTu2Ts4nWeWbFrdaqjmn9yKrAaJUBHkyTZc0cL06OFHpb+JZq5AUHROS398Orw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.36.1
- '@typescript-eslint/visitor-keys': 5.36.1
+ '@typescript-eslint/types': 5.36.2
+ '@typescript-eslint/visitor-keys': 5.36.2
dev: true
- /@typescript-eslint/type-utils/5.36.1_pyvvhc3zqdua4akflcggygkl44:
- resolution: {integrity: sha512-xfZhfmoQT6m3lmlqDvDzv9TiCYdw22cdj06xY0obSznBsT///GK5IEZQdGliXpAOaRL34o8phEvXzEo/VJx13Q==}
+ /@typescript-eslint/type-utils/5.36.2_3pgpbtxx6aaanl2g7t7xjqhlje:
+ resolution: {integrity: sha512-rPQtS5rfijUWLouhy6UmyNquKDPhQjKsaKH0WnY6hl/07lasj8gPaH2UD8xWkePn6SC+jW2i9c2DZVDnL+Dokw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -2879,23 +2643,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.36.1_typescript@4.6.4
- '@typescript-eslint/utils': 5.36.1_pyvvhc3zqdua4akflcggygkl44
+ '@typescript-eslint/typescript-estree': 5.36.2_typescript@4.6.4
+ '@typescript-eslint/utils': 5.36.2_3pgpbtxx6aaanl2g7t7xjqhlje
debug: 4.3.4
- eslint: 8.23.0
+ eslint: 8.23.1
tsutils: 3.21.0_typescript@4.6.4
typescript: 4.6.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types/5.36.1:
- resolution: {integrity: sha512-jd93ShpsIk1KgBTx9E+hCSEuLCUFwi9V/urhjOWnOaksGZFbTOxAT47OH2d4NLJnLhkVD+wDbB48BuaycZPLBg==}
+ /@typescript-eslint/types/5.36.2:
+ resolution: {integrity: sha512-9OJSvvwuF1L5eS2EQgFUbECb99F0mwq501w0H0EkYULkhFa19Qq7WFbycdw1PexAc929asupbZcgjVIe6OK/XQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/5.36.1_typescript@4.6.4:
- resolution: {integrity: sha512-ih7V52zvHdiX6WcPjsOdmADhYMDN15SylWRZrT2OMy80wzKbc79n8wFW0xpWpU0x3VpBz/oDgTm2xwDAnFTl+g==}
+ /@typescript-eslint/typescript-estree/5.36.2_typescript@4.6.4:
+ resolution: {integrity: sha512-8fyH+RfbKc0mTspfuEjlfqA4YywcwQK2Amcf6TDOwaRLg7Vwdu4bZzyvBZp4bjt1RRjQ5MDnOZahxMrt2l5v9w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -2903,8 +2667,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.36.1
- '@typescript-eslint/visitor-keys': 5.36.1
+ '@typescript-eslint/types': 5.36.2
+ '@typescript-eslint/visitor-keys': 5.36.2
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -2915,29 +2679,29 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/utils/5.36.1_pyvvhc3zqdua4akflcggygkl44:
- resolution: {integrity: sha512-lNj4FtTiXm5c+u0pUehozaUWhh7UYKnwryku0nxJlYUEWetyG92uw2pr+2Iy4M/u0ONMKzfrx7AsGBTCzORmIg==}
+ /@typescript-eslint/utils/5.36.2_3pgpbtxx6aaanl2g7t7xjqhlje:
+ resolution: {integrity: sha512-uNcopWonEITX96v9pefk9DC1bWMdkweeSsewJ6GeC7L6j2t0SJywisgkr9wUTtXk90fi2Eljj90HSHm3OGdGRg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@types/json-schema': 7.0.11
- '@typescript-eslint/scope-manager': 5.36.1
- '@typescript-eslint/types': 5.36.1
- '@typescript-eslint/typescript-estree': 5.36.1_typescript@4.6.4
- eslint: 8.23.0
+ '@typescript-eslint/scope-manager': 5.36.2
+ '@typescript-eslint/types': 5.36.2
+ '@typescript-eslint/typescript-estree': 5.36.2_typescript@4.6.4
+ eslint: 8.23.1
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.23.0
+ eslint-utils: 3.0.0_eslint@8.23.1
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/visitor-keys/5.36.1:
- resolution: {integrity: sha512-ojB9aRyRFzVMN3b5joSYni6FAS10BBSCAfKJhjJAV08t/a95aM6tAhz+O1jF+EtgxktuSO3wJysp2R+Def/IWQ==}
+ /@typescript-eslint/visitor-keys/5.36.2:
+ resolution: {integrity: sha512-BtRvSR6dEdrNt7Net2/XDjbYKU5Ml6GqJgVfXT0CxTCJlnIqK7rAGreuWKMT2t8cFUT2Msv5oxw0GMRD7T5J7A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.36.1
+ '@typescript-eslint/types': 5.36.2
eslint-visitor-keys: 3.3.0
dev: true
@@ -2945,14 +2709,14 @@ packages:
resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==}
dev: false
- /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.18.13:
+ /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.19.0:
resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==}
dependencies:
'@babel/helper-module-imports': 7.16.7
- '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.18.13
+ '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.19.0
'@babel/template': 7.16.7
'@babel/traverse': 7.17.10
- '@babel/types': 7.17.10
+ '@babel/types': 7.19.0
'@vue/babel-helper-vue-transform-on': 1.0.2
camelcase: 6.3.0
html-tags: 3.2.0
@@ -2962,39 +2726,39 @@ packages:
- supports-color
dev: false
- /@vue/compiler-core/3.2.38:
- resolution: {integrity: sha512-/FsvnSu7Z+lkd/8KXMa4yYNUiqQrI22135gfsQYVGuh5tqEgOB0XqrUdb/KnCLa5+TmQLPwvyUnKMyCpu+SX3Q==}
+ /@vue/compiler-core/3.2.39:
+ resolution: {integrity: sha512-mf/36OWXqWn0wsC40nwRRGheR/qoID+lZXbIuLnr4/AngM0ov8Xvv8GHunC0rKRIkh60bTqydlqTeBo49rlbqw==}
dependencies:
- '@babel/parser': 7.18.13
- '@vue/shared': 3.2.38
+ '@babel/parser': 7.19.0
+ '@vue/shared': 3.2.39
estree-walker: 2.0.2
source-map: 0.6.1
- /@vue/compiler-dom/3.2.38:
- resolution: {integrity: sha512-zqX4FgUbw56kzHlgYuEEJR8mefFiiyR3u96498+zWPsLeh1WKvgIReoNE+U7gG8bCUdvsrJ0JRmev0Ky6n2O0g==}
+ /@vue/compiler-dom/3.2.39:
+ resolution: {integrity: sha512-HMFI25Be1C8vLEEv1hgEO1dWwG9QQ8LTTPmCkblVJY/O3OvWx6r1+zsox5mKPMGvqYEZa6l8j+xgOfUspgo7hw==}
dependencies:
- '@vue/compiler-core': 3.2.38
- '@vue/shared': 3.2.38
+ '@vue/compiler-core': 3.2.39
+ '@vue/shared': 3.2.39
- /@vue/compiler-sfc/3.2.38:
- resolution: {integrity: sha512-KZjrW32KloMYtTcHAFuw3CqsyWc5X6seb8KbkANSWt3Cz9p2qA8c1GJpSkksFP9ABb6an0FLCFl46ZFXx3kKpg==}
+ /@vue/compiler-sfc/3.2.39:
+ resolution: {integrity: sha512-fqAQgFs1/BxTUZkd0Vakn3teKUt//J3c420BgnYgEOoVdTwYpBTSXCMJ88GOBCylmUBbtquGPli9tVs7LzsWIA==}
dependencies:
- '@babel/parser': 7.18.13
- '@vue/compiler-core': 3.2.38
- '@vue/compiler-dom': 3.2.38
- '@vue/compiler-ssr': 3.2.38
- '@vue/reactivity-transform': 3.2.38
- '@vue/shared': 3.2.38
+ '@babel/parser': 7.19.0
+ '@vue/compiler-core': 3.2.39
+ '@vue/compiler-dom': 3.2.39
+ '@vue/compiler-ssr': 3.2.39
+ '@vue/reactivity-transform': 3.2.39
+ '@vue/shared': 3.2.39
estree-walker: 2.0.2
magic-string: 0.25.9
postcss: 8.4.16
source-map: 0.6.1
- /@vue/compiler-ssr/3.2.38:
- resolution: {integrity: sha512-bm9jOeyv1H3UskNm4S6IfueKjUNFmi2kRweFIGnqaGkkRePjwEcfCVqyS3roe7HvF4ugsEkhf4+kIvDhip6XzQ==}
+ /@vue/compiler-ssr/3.2.39:
+ resolution: {integrity: sha512-EoGCJ6lincKOZGW+0Ky4WOKsSmqL7hp1ZYgen8M7u/mlvvEQUaO9tKKOy7K43M9U2aA3tPv0TuYYQFrEbK2eFQ==}
dependencies:
- '@vue/compiler-dom': 3.2.38
- '@vue/shared': 3.2.38
+ '@vue/compiler-dom': 3.2.39
+ '@vue/shared': 3.2.39
/@vue/devtools-api/6.1.4:
resolution: {integrity: sha512-IiA0SvDrJEgXvVxjNkHPFfDx6SXw0b/TUkqMcDZWNg9fnCAHbTpoo59YfJ9QLFkwa3raau5vSlRVzMSLDnfdtQ==}
@@ -3003,52 +2767,52 @@ packages:
/@vue/devtools-api/6.2.1:
resolution: {integrity: sha512-OEgAMeQXvCoJ+1x8WyQuVZzFo0wcyCmUR3baRVLmKBo1LmYZWMlRiXlux5jd0fqVJu6PfDbOrZItVqUEzLobeQ==}
- /@vue/reactivity-transform/3.2.38:
- resolution: {integrity: sha512-3SD3Jmi1yXrDwiNJqQ6fs1x61WsDLqVk4NyKVz78mkaIRh6d3IqtRnptgRfXn+Fzf+m6B1KxBYWq1APj6h4qeA==}
+ /@vue/reactivity-transform/3.2.39:
+ resolution: {integrity: sha512-HGuWu864zStiWs9wBC6JYOP1E00UjMdDWIG5W+FpUx28hV3uz9ODOKVNm/vdOy/Pvzg8+OcANxAVC85WFBbl3A==}
dependencies:
- '@babel/parser': 7.18.13
- '@vue/compiler-core': 3.2.38
- '@vue/shared': 3.2.38
+ '@babel/parser': 7.19.0
+ '@vue/compiler-core': 3.2.39
+ '@vue/shared': 3.2.39
estree-walker: 2.0.2
magic-string: 0.25.9
- /@vue/reactivity/3.2.38:
- resolution: {integrity: sha512-6L4myYcH9HG2M25co7/BSo0skKFHpAN8PhkNPM4xRVkyGl1K5M3Jx4rp5bsYhvYze2K4+l+pioN4e6ZwFLUVtw==}
+ /@vue/reactivity/3.2.39:
+ resolution: {integrity: sha512-vlaYX2a3qMhIZfrw3Mtfd+BuU+TZmvDrPMa+6lpfzS9k/LnGxkSuf0fhkP0rMGfiOHPtyKoU9OJJJFGm92beVQ==}
dependencies:
- '@vue/shared': 3.2.38
+ '@vue/shared': 3.2.39
- /@vue/runtime-core/3.2.38:
- resolution: {integrity: sha512-kk0qiSiXUU/IKxZw31824rxmFzrLr3TL6ZcbrxWTKivadoKupdlzbQM4SlGo4MU6Zzrqv4fzyUasTU1jDoEnzg==}
+ /@vue/runtime-core/3.2.39:
+ resolution: {integrity: sha512-xKH5XP57JW5JW+8ZG1khBbuLakINTgPuINKL01hStWLTTGFOrM49UfCFXBcFvWmSbci3gmJyLl2EAzCaZWsx8g==}
dependencies:
- '@vue/reactivity': 3.2.38
- '@vue/shared': 3.2.38
+ '@vue/reactivity': 3.2.39
+ '@vue/shared': 3.2.39
- /@vue/runtime-dom/3.2.38:
- resolution: {integrity: sha512-4PKAb/ck2TjxdMSzMsnHViOrrwpudk4/A56uZjhzvusoEU9xqa5dygksbzYepdZeB5NqtRw5fRhWIiQlRVK45A==}
+ /@vue/runtime-dom/3.2.39:
+ resolution: {integrity: sha512-4G9AEJP+sLhsqf5wXcyKVWQKUhI+iWfy0hWQgea+CpaTD7BR0KdQzvoQdZhwCY6B3oleSyNLkLAQwm0ya/wNoA==}
dependencies:
- '@vue/runtime-core': 3.2.38
- '@vue/shared': 3.2.38
+ '@vue/runtime-core': 3.2.39
+ '@vue/shared': 3.2.39
csstype: 2.6.20
- /@vue/server-renderer/3.2.38_vue@3.2.38:
- resolution: {integrity: sha512-pg+JanpbOZ5kEfOZzO2bt02YHd+ELhYP8zPeLU1H0e7lg079NtuuSB8fjLdn58c4Ou8UQ6C1/P+528nXnLPAhA==}
+ /@vue/server-renderer/3.2.39_vue@3.2.39:
+ resolution: {integrity: sha512-1yn9u2YBQWIgytFMjz4f/t0j43awKytTGVptfd3FtBk76t1pd8mxbek0G/DrnjJhd2V7mSTb5qgnxMYt8Z5iSQ==}
peerDependencies:
- vue: 3.2.38
+ vue: 3.2.39
dependencies:
- '@vue/compiler-ssr': 3.2.38
- '@vue/shared': 3.2.38
- vue: 3.2.38
+ '@vue/compiler-ssr': 3.2.39
+ '@vue/shared': 3.2.39
+ vue: 3.2.39
- /@vue/shared/3.2.38:
- resolution: {integrity: sha512-dTyhTIRmGXBjxJE+skC8tTWCGLCVc4wQgRRLt8+O9p5ewBAjoBwtCAkLPrtToSr1xltoe3st21Pv953aOZ7alg==}
+ /@vue/shared/3.2.39:
+ resolution: {integrity: sha512-D3dl2ZB9qE6mTuWPk9RlhDeP1dgNRUKC3NJxji74A4yL8M2MwlhLKUC/49WHjrNzSPug58fWx/yFbaTzGAQSBw==}
- /@vueuse/core/9.1.0_vue@3.2.38:
+ /@vueuse/core/9.1.0_vue@3.2.39:
resolution: {integrity: sha512-BIroqvXEqt826aE9r3K5cox1zobuPuAzdYJ36kouC2TVhlXvFKIILgFVWrpp9HZPwB3aLzasmG3K87q7TSyXZg==}
dependencies:
'@types/web-bluetooth': 0.0.15
'@vueuse/metadata': 9.1.0
- '@vueuse/shared': 9.1.0_vue@3.2.38
- vue-demi: 0.13.1_vue@3.2.38
+ '@vueuse/shared': 9.1.0_vue@3.2.39
+ vue-demi: 0.13.1_vue@3.2.39
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -3058,10 +2822,10 @@ packages:
resolution: {integrity: sha512-8OEhlog1iaAGTD3LICZ8oBGQdYeMwByvXetOtAOZCJOzyCRSwqwdggTsmVZZ1rkgYIEqgUBk942AsAPwM21s6A==}
dev: true
- /@vueuse/shared/9.1.0_vue@3.2.38:
+ /@vueuse/shared/9.1.0_vue@3.2.39:
resolution: {integrity: sha512-pB/3njQu4tfJJ78ajELNda0yMG6lKfpToQW7Soe09CprF1k3QuyoNi1tBNvo75wBDJWD+LOnr+c4B5HZ39jY/Q==}
dependencies:
- vue-demi: 0.13.1_vue@3.2.38
+ vue-demi: 0.13.1_vue@3.2.39
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -3321,15 +3085,15 @@ packages:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
dev: false
- /autoprefixer/10.4.8:
- resolution: {integrity: sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw==}
+ /autoprefixer/10.4.9:
+ resolution: {integrity: sha512-Uu67eduPEmOeA0vyJby5ghu1AAELCCNSsLAjK+lz6kYzNM5sqnBO36MqfsjhPjQF/BaJM5U/UuFYyl7PavY/wQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
browserslist: 4.21.3
- caniuse-lite: 1.0.30001373
+ caniuse-lite: 1.0.30001397
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -3349,7 +3113,7 @@ packages:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.19.0
cosmiconfig: 7.0.1
resolve: 1.22.1
@@ -3357,7 +3121,7 @@ packages:
resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@babel/types': 7.18.13
+ '@babel/types': 7.19.0
dev: true
/balanced-match/1.0.2:
@@ -3424,24 +3188,12 @@ packages:
dependencies:
fill-range: 7.0.1
- /browserslist/4.20.3:
- resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001339
- electron-to-chromium: 1.4.137
- escalade: 3.1.1
- node-releases: 2.0.4
- picocolors: 1.0.0
- dev: true
-
/browserslist/4.21.3:
resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001373
+ caniuse-lite: 1.0.30001397
electron-to-chromium: 1.4.206
node-releases: 2.0.6
update-browserslist-db: 1.0.5_browserslist@4.21.3
@@ -3511,12 +3263,8 @@ packages:
engines: {node: '>=10'}
dev: false
- /caniuse-lite/1.0.30001339:
- resolution: {integrity: sha512-Es8PiVqCe+uXdms0Gu5xP5PF2bxLR7OBp3wUzUnuO7OHzhOfCyg3hdiGWVPVxhiuniOzng+hTc1u3fEQ0TlkSQ==}
- dev: true
-
- /caniuse-lite/1.0.30001373:
- resolution: {integrity: sha512-pJYArGHrPp3TUqQzFYRmP/lwJlj8RCbVe3Gd3eJQkAV8SAC6b19XS9BjMvRdvaS8RMkaTN8ZhoHP6S1y8zzwEQ==}
+ /caniuse-lite/1.0.30001397:
+ resolution: {integrity: sha512-SW9N2TbCdLf0eiNDRrrQXx2sOkaakNZbCjgNpPyMJJbiOrU5QzMIrXOVMRM1myBXTD5iTkdrtU/EguCrBocHlA==}
/chai/4.3.6:
resolution: {integrity: sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==}
@@ -3593,7 +3341,7 @@ packages:
commander: 7.2.0
compatfactory: 0.0.6_typescript@4.6.4
crosspath: 0.0.8
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
helpertypes: 0.0.2
reserved-words: 0.1.2
resolve: 1.22.1
@@ -3781,8 +3529,8 @@ packages:
/constantinople/4.0.1:
resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==}
dependencies:
- '@babel/parser': 7.18.13
- '@babel/types': 7.18.13
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
dev: true
/content-disposition/0.5.4:
@@ -3980,8 +3728,8 @@ packages:
is-what: 3.14.1
dev: true
- /core-js/3.25.0:
- resolution: {integrity: sha512-CVU1xvJEfJGhyCpBrzzzU1kjCfgsGUxhEvwUV2e/cOedYWHdmluamx+knDnmhqALddMG16fZvIqvs9aijsHHaA==}
+ /core-js/3.25.1:
+ resolution: {integrity: sha512-sr0FY4lnO1hkQ4gLDr24K0DGnweGO1QwSj5BpfQjpSJPdqWalja4cTps29Y/PJVG/P7FYlPDkH3hO+Tr0CvDgQ==}
requiresBuild: true
dev: false
@@ -4268,10 +4016,6 @@ packages:
resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
dev: true
- /electron-to-chromium/1.4.137:
- resolution: {integrity: sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==}
- dev: true
-
/electron-to-chromium/1.4.206:
resolution: {integrity: sha512-h+Fadt1gIaQ06JaIiyqPsBjJ08fV5Q7md+V8bUvQW/9OvXfL2LRICTz2EcnnCP7QzrFTS6/27MRV6Bl9Yn97zA==}
@@ -5022,7 +4766,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils/2.7.3_632zrvmnhpkgiajg2zqauquf6u:
+ /eslint-module-utils/2.7.3_vcyzkqbdgh7pbhuc7ez2cv5xqa:
resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==}
engines: {node: '>=4'}
peerDependencies:
@@ -5040,7 +4784,7 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.36.1_pyvvhc3zqdua4akflcggygkl44
+ '@typescript-eslint/parser': 5.36.2_3pgpbtxx6aaanl2g7t7xjqhlje
debug: 3.2.7
eslint-import-resolver-node: 0.3.6
find-up: 2.1.0
@@ -5048,18 +4792,18 @@ packages:
- supports-color
dev: true
- /eslint-plugin-es/3.0.1_eslint@8.23.0:
+ /eslint-plugin-es/3.0.1_eslint@8.23.1:
resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==}
engines: {node: '>=8.10.0'}
peerDependencies:
eslint: '>=4.19.1'
dependencies:
- eslint: 8.23.0
+ eslint: 8.23.1
eslint-utils: 2.1.0
regexpp: 3.2.0
dev: true
- /eslint-plugin-import/2.26.0_wyxuyzvlfep3lsyoibc4fosfq4:
+ /eslint-plugin-import/2.26.0_bgdmkk372fjuptfjwugrzcrhfe:
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
@@ -5069,14 +4813,14 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.36.1_pyvvhc3zqdua4akflcggygkl44
+ '@typescript-eslint/parser': 5.36.2_3pgpbtxx6aaanl2g7t7xjqhlje
array-includes: 3.1.5
array.prototype.flat: 1.3.0
debug: 2.6.9
doctrine: 2.1.0
- eslint: 8.23.0
+ eslint: 8.23.1
eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.3_632zrvmnhpkgiajg2zqauquf6u
+ eslint-module-utils: 2.7.3_vcyzkqbdgh7pbhuc7ez2cv5xqa
has: 1.0.3
is-core-module: 2.9.0
is-glob: 4.0.3
@@ -5090,14 +4834,14 @@ packages:
- supports-color
dev: true
- /eslint-plugin-node/11.1.0_eslint@8.23.0:
+ /eslint-plugin-node/11.1.0_eslint@8.23.1:
resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==}
engines: {node: '>=8.10.0'}
peerDependencies:
eslint: '>=5.16.0'
dependencies:
- eslint: 8.23.0
- eslint-plugin-es: 3.0.1_eslint@8.23.0
+ eslint: 8.23.1
+ eslint-plugin-es: 3.0.1_eslint@8.23.1
eslint-utils: 2.1.0
ignore: 5.2.0
minimatch: 3.1.2
@@ -5128,13 +4872,13 @@ packages:
eslint-visitor-keys: 1.3.0
dev: true
- /eslint-utils/3.0.0_eslint@8.23.0:
+ /eslint-utils/3.0.0_eslint@8.23.1:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
eslint: '>=5'
dependencies:
- eslint: 8.23.0
+ eslint: 8.23.1
eslint-visitor-keys: 2.1.0
dev: true
@@ -5153,12 +4897,12 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint/8.23.0:
- resolution: {integrity: sha512-pBG/XOn0MsJcKcTRLr27S5HpzQo4kLr+HjLQIyK4EiCsijDl/TB+h5uEuJU6bQ8Edvwz1XWOjpaP2qgnXGpTcA==}
+ /eslint/8.23.1:
+ resolution: {integrity: sha512-w7C1IXCc6fNqjpuYd0yPlcTKKmHlHHktRkzmBPZ+7cvNBQuiNjx0xaMTjAJGCafJhQkrFJooREv0CtrVzmHwqg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint/eslintrc': 1.3.1
+ '@eslint/eslintrc': 1.3.2
'@humanwhocodes/config-array': 0.10.4
'@humanwhocodes/gitignore-to-minimatch': 1.0.2
'@humanwhocodes/module-importer': 1.0.1
@@ -5169,7 +4913,7 @@ packages:
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.1.1
- eslint-utils: 3.0.0_eslint@8.23.0
+ eslint-utils: 3.0.0_eslint@8.23.1
eslint-visitor-keys: 3.3.0
espree: 9.4.0
esquery: 1.4.0
@@ -5177,7 +4921,6 @@ packages:
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
find-up: 5.0.0
- functional-red-black-tree: 1.0.1
glob-parent: 6.0.2
globals: 13.15.0
globby: 11.1.0
@@ -5186,6 +4929,7 @@ packages:
import-fresh: 3.3.0
imurmurhash: 0.1.4
is-glob: 4.0.3
+ js-sdsl: 4.1.4
js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
@@ -5328,8 +5072,8 @@ packages:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
dev: true
- /fast-glob/3.2.11:
- resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==}
+ /fast-glob/3.2.12:
+ resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -5690,7 +5434,7 @@ packages:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
ignore: 5.2.0
merge2: 1.4.1
slash: 3.0.0
@@ -5701,7 +5445,7 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
dir-glob: 3.0.1
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
ignore: 5.2.0
merge2: 1.4.1
slash: 4.0.0
@@ -5788,7 +5532,7 @@ packages:
/history/5.3.0:
resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==}
dependencies:
- '@babel/runtime': 7.18.9
+ '@babel/runtime': 7.19.0
dev: false
/hoist-non-react-statics/3.3.2:
@@ -6055,7 +5799,7 @@ packages:
is-extglob: 2.1.1
/is-module/1.0.0:
- resolution: {integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=}
+ resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
dev: true
/is-negative-zero/2.0.2:
@@ -6179,6 +5923,10 @@ packages:
engines: {node: '>=10'}
dev: true
+ /js-sdsl/4.1.4:
+ resolution: {integrity: sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw==}
+ dev: true
+
/js-stringify/1.0.2:
resolution: {integrity: sha1-Fzb939lyTyijaCrcYjCufk6Weds=}
dev: true
@@ -6282,8 +6030,8 @@ packages:
engines: {node: '>=6'}
dev: true
- /kolorist/1.5.1:
- resolution: {integrity: sha512-lxpCM3HTvquGxKGzHeknB/sUjuVoUElLlfYnXZT73K8geR9jQbroGlSCFBax9/0mpGoD3kzcMLnOlGQPJJNyqQ==}
+ /kolorist/1.6.0:
+ resolution: {integrity: sha512-dLkz37Ab97HWMx9KTes3Tbi3D1ln9fCAy2zr2YVExJasDRPGRaKcoE4fycWNtnCAJfjFqe0cnY+f8KT2JePEXQ==}
dev: true
/launch-editor-middleware/2.6.0:
@@ -6852,10 +6600,6 @@ packages:
engines: {node: '>= 6.0.0'}
dev: true
- /node-releases/2.0.4:
- resolution: {integrity: sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ==}
- dev: true
-
/node-releases/2.0.6:
resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
@@ -7256,17 +7000,17 @@ packages:
pathe: 0.3.5
dev: true
- /playwright-chromium/1.25.1:
- resolution: {integrity: sha512-X/B6ycySwV4L+smHu9t+rytPnBLCLI5RAV5TpjVwInv6RPYF6TWZ62zymwiSLxYXeNkyyx0pxTS7jqeOEmMM2g==}
+ /playwright-chromium/1.25.2:
+ resolution: {integrity: sha512-FqksO/sLuppuwz4rbLMhBx3AadBzsYn2xG6jAewjNchwqzMYeGP1CyL2AQSYcT7ILyF5pQj3nwKqal13pbkEcA==}
engines: {node: '>=14'}
hasBin: true
requiresBuild: true
dependencies:
- playwright-core: 1.25.1
+ playwright-core: 1.25.2
dev: true
- /playwright-core/1.25.1:
- resolution: {integrity: sha512-lSvPCmA2n7LawD2Hw7gSCLScZ+vYRkhU8xH0AapMyzwN+ojoDqhkH/KIEUxwNu2PjPoE/fcE0wLAksdOhJ2O5g==}
+ /playwright-core/1.25.2:
+ resolution: {integrity: sha512-0yTbUE9lIddkEpLHL3u8PoCL+pWiZtj5A/j3U7YoNjcmKKDGBnCrgHJMzwd2J5vy6l28q4ki3JIuz7McLHhl1A==}
engines: {node: '>=14'}
hasBin: true
dev: true
@@ -7552,7 +7296,7 @@ packages:
jstransformer: 1.0.0
pug-error: 2.0.0
pug-walk: 2.0.0
- resolve: 1.22.0
+ resolve: 1.22.1
dev: true
/pug-lexer/5.0.1:
@@ -7877,15 +7621,6 @@ packages:
path-parse: 1.0.7
dev: true
- /resolve/1.22.0:
- resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==}
- hasBin: true
- dependencies:
- is-core-module: 2.9.0
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
- dev: true
-
/resolve/1.22.1:
resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
hasBin: true
@@ -8008,8 +7743,8 @@ packages:
truncate-utf8-bytes: 1.0.2
dev: true
- /sass/1.54.8:
- resolution: {integrity: sha512-ib4JhLRRgbg6QVy6bsv5uJxnJMTS2soVcCp9Y88Extyy13A8vV0G1fAwujOzmNkFQbR3LvedudAMbtuNRPbQww==}
+ /sass/1.54.9:
+ resolution: {integrity: sha512-xb1hjASzEH+0L0WI9oFjqhRi51t/gagWnxLiwUNMltA0Ab6jIDkAacgKiGYKM9Jhy109osM7woEEai6SXeJo5Q==}
engines: {node: '>=12.0.0'}
hasBin: true
dependencies:
@@ -8479,7 +8214,7 @@ packages:
detective: 5.2.1
didyoumean: 1.2.2
dlv: 1.1.3
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
glob-parent: 6.0.2
is-glob: 4.0.3
lilconfig: 2.0.6
@@ -8509,7 +8244,7 @@ packages:
detective: 5.2.1
didyoumean: 1.2.2
dlv: 1.1.3
- fast-glob: 3.2.11
+ fast-glob: 3.2.12
glob-parent: 6.0.2
is-glob: 4.0.3
lilconfig: 2.0.6
@@ -8595,13 +8330,12 @@ packages:
resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
dev: false
- /tinybench/2.1.4:
- resolution: {integrity: sha512-NFWIw2Gg7EUPdeE8nL1Dc7AMVlk7sOr2PmSNKVuQrZ0YwTOFoshPQ+hcLrgnhK8dTP3FWMCJaf4N+/hXp6lKPw==}
- engines: {node: '>=16.0.0'}
+ /tinybench/2.1.5:
+ resolution: {integrity: sha512-ak+PZZEuH3mw6CCFOgf5S90YH0MARnZNhxjhjguAmoJimEMAJuNip/rJRd6/wyylHItomVpKTzZk9zrhTrQCoQ==}
dev: true
- /tinypool/0.2.4:
- resolution: {integrity: sha512-Vs3rhkUH6Qq1t5bqtb816oT+HeJTXfwt2cbPH17sWHIYKTotQIFPk3tf2fgqRrVyMDVOc1EnPgzIxfIulXVzwQ==}
+ /tinypool/0.3.0:
+ resolution: {integrity: sha512-NX5KeqHOBZU6Bc0xj9Vr5Szbb1j8tUHIeD18s41aDJaPeC5QTdEhK0SpdpUrZlj2nv5cctNcSjaKNanXlfcVEQ==}
engines: {node: '>=14.0.0'}
dev: true
@@ -8897,9 +8631,9 @@ packages:
/untyped/0.4.7:
resolution: {integrity: sha512-hBgCv7fnqIRzAagn2cUZxxVmhTE7NcMAgI8CfQelFVacG4O55VrurigpK0G504ph4sQSqVsGEo52O5EKFCnJ9g==}
dependencies:
- '@babel/core': 7.18.13
- '@babel/standalone': 7.18.13
- '@babel/types': 7.18.13
+ '@babel/core': 7.19.0
+ '@babel/standalone': 7.19.0
+ '@babel/types': 7.19.0
scule: 0.3.2
transitivePeerDependencies:
- supports-color
@@ -8974,11 +8708,11 @@ packages:
'@docsearch/js': 3.2.1
'@vitejs/plugin-vue': link:packages/plugin-vue
'@vue/devtools-api': 6.2.1
- '@vueuse/core': 9.1.0_vue@3.2.38
+ '@vueuse/core': 9.1.0_vue@3.2.39
body-scroll-lock: 4.0.0-beta.0
shiki: 0.11.1
vite: link:packages/vite
- vue: 3.2.38
+ vue: 3.2.39
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -8987,8 +8721,8 @@ packages:
- react-dom
dev: true
- /vitest/0.23.1:
- resolution: {integrity: sha512-kn9pG+h6VA3yj/xRvwgLKEd33rOlzMqJEg3tl5HSm3WUPlkY1Lr1FK8RN1uIqVKvFxmz6HGU3EQW+xW2kazRkQ==}
+ /vitest/0.23.2:
+ resolution: {integrity: sha512-kTBKp3ROPDkYC+x2zWt4znkDtnT08W1FQ6ngRFuqxpBGNuNVS+eWZKfffr8y2JGvEzZ9EzMAOcNaiqMj/FZqMw==}
engines: {node: '>=v14.16.0'}
hasBin: true
peerDependencies:
@@ -9016,8 +8750,8 @@ packages:
debug: 4.3.4
local-pkg: 0.4.2
strip-literal: 0.4.0
- tinybench: 2.1.4
- tinypool: 0.2.4
+ tinybench: 2.1.5
+ tinypool: 0.3.0
tinyspy: 1.0.2
vite: link:packages/vite
transitivePeerDependencies:
@@ -9037,7 +8771,7 @@ packages:
resolution: {integrity: sha512-gu73tuZfJgu+mvCSy4UZwd2JXykjK9zAZsfmDeut5dx/1a7FeTk0XwJsSuqQn+cuMCGVbIBfl+s53X4T19DnzQ==}
dev: true
- /vue-demi/0.13.1_vue@3.2.38:
+ /vue-demi/0.13.1_vue@3.2.39:
resolution: {integrity: sha512-xmkJ56koG3ptpLnpgmIzk9/4nFf4CqduSJbUM0OdPoU87NwRuZ6x49OLhjSa/fC15fV+5CbEnrxU4oyE022svg==}
engines: {node: '>=12'}
hasBin: true
@@ -9049,34 +8783,34 @@ packages:
'@vue/composition-api':
optional: true
dependencies:
- vue: 3.2.38
+ vue: 3.2.39
dev: true
- /vue-router/4.1.5_vue@3.2.38:
+ /vue-router/4.1.5_vue@3.2.39:
resolution: {integrity: sha512-IsvoF5D2GQ/EGTs/Th4NQms9gd2NSqV+yylxIyp/OYp8xOwxmU8Kj/74E9DTSYAyH5LX7idVUngN3JSj1X4xcQ==}
peerDependencies:
vue: ^3.2.0
dependencies:
'@vue/devtools-api': 6.2.1
- vue: 3.2.38
+ vue: 3.2.39
dev: false
- /vue/3.2.38:
- resolution: {integrity: sha512-hHrScEFSmDAWL0cwO4B6WO7D3sALZPbfuThDsGBebthrNlDxdJZpGR3WB87VbjpPh96mep1+KzukYEhpHDFa8Q==}
+ /vue/3.2.39:
+ resolution: {integrity: sha512-tRkguhRTw9NmIPXhzk21YFBqXHT2t+6C6wPOgQ50fcFVWnPdetmRqbmySRHznrYjX2E47u0cGlKGcxKZJ38R/g==}
dependencies:
- '@vue/compiler-dom': 3.2.38
- '@vue/compiler-sfc': 3.2.38
- '@vue/runtime-dom': 3.2.38
- '@vue/server-renderer': 3.2.38_vue@3.2.38
- '@vue/shared': 3.2.38
+ '@vue/compiler-dom': 3.2.39
+ '@vue/compiler-sfc': 3.2.39
+ '@vue/runtime-dom': 3.2.39
+ '@vue/server-renderer': 3.2.39_vue@3.2.39
+ '@vue/shared': 3.2.39
- /vuex/4.0.2_vue@3.2.38:
+ /vuex/4.0.2_vue@3.2.39:
resolution: {integrity: sha512-M6r8uxELjZIK8kTKDGgZTYX/ahzblnzC4isU1tpmEuOIIKmV+TRdc+H4s8ds2NuZ7wpUTdGRzJRtoj+lI+pc0Q==}
peerDependencies:
vue: ^3.0.2
dependencies:
'@vue/devtools-api': 6.1.4
- vue: 3.2.38
+ vue: 3.2.39
dev: false
/web-streams-polyfill/3.2.1:
@@ -9154,8 +8888,8 @@ packages:
resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@babel/parser': 7.18.13
- '@babel/types': 7.18.13
+ '@babel/parser': 7.19.0
+ '@babel/types': 7.19.0
assert-never: 1.2.1
babel-walk: 3.0.0-canary-5
dev: true
@@ -9314,7 +9048,7 @@ packages:
name: '@vitejs/dep-that-imports-vue'
version: 0.0.0
dependencies:
- vue: 3.2.38
+ vue: 3.2.39
dev: false
file:playground/external/dep-that-requires-vue:
@@ -9322,7 +9056,7 @@ packages:
name: '@vitejs/dep-that-requires-vue'
version: 0.0.0
dependencies:
- vue: 3.2.38
+ vue: 3.2.39
dev: false
file:playground/import-assertion/import-assertion-dep: