From c1ae637890d3c60cd7760e5b171ccc3983e9bc4c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 27 Jun 2022 18:12:59 +0000 Subject: [PATCH] chore(deps): update all non-major dependencies --- package.json | 14 +- .../create-vite/template-lit-ts/package.json | 2 +- .../create-vite/template-lit/package.json | 2 +- .../template-preact-ts/package.json | 4 +- .../create-vite/template-preact/package.json | 4 +- .../template-react-ts/package.json | 2 +- .../create-vite/template-react/package.json | 2 +- .../template-svelte-ts/package.json | 4 +- .../create-vite/template-svelte/package.json | 2 +- .../template-vanilla-ts/package.json | 2 +- .../create-vite/template-vanilla/package.json | 2 +- .../create-vite/template-vue-ts/package.json | 4 +- .../create-vite/template-vue/package.json | 2 +- packages/plugin-legacy/package.json | 2 +- packages/plugin-vue/package.json | 4 +- packages/vite/package.json | 2 +- playground/backend-integration/package.json | 4 +- playground/css-sourcemap/package.json | 2 +- playground/css/package.json | 2 +- playground/multiple-entrypoints/package.json | 2 +- playground/react-classic/package.json | 4 +- playground/tailwind-sourcemap/package.json | 2 +- playground/tailwind/package.json | 2 +- playground/vue-sourcemap/package.json | 2 +- playground/vue/package.json | 2 +- pnpm-lock.yaml | 256 ++++++++++-------- 26 files changed, 177 insertions(+), 155 deletions(-) diff --git a/package.json b/package.json index 46fd322edb8544..2dc7c7525f0946 100644 --- a/package.json +++ b/package.json @@ -37,14 +37,14 @@ }, "devDependencies": { "@babel/types": "^7.18.4", - "@microsoft/api-extractor": "^7.25.2", + "@microsoft/api-extractor": "^7.27.0", "@rollup/plugin-typescript": "^8.3.3", "@types/babel__core": "^7.1.19", "@types/babel__standalone": "^7.1.4", "@types/convert-source-map": "^1.5.2", "@types/cross-spawn": "^6.0.2", "@types/debug": "^4.1.7", - "@types/estree": "^0.0.51", + "@types/estree": "^0.0.52", "@types/etag": "^1.8.1", "@types/fs-extra": "^9.0.13", "@types/hash-sum": "^1.0.0", @@ -59,8 +59,8 @@ "@types/semver": "^7.3.10", "@types/stylus": "^0.48.38", "@types/ws": "^8.5.3", - "@typescript-eslint/eslint-plugin": "^5.28.0", - "@typescript-eslint/parser": "^5.28.0", + "@typescript-eslint/eslint-plugin": "^5.30.0", + "@typescript-eslint/parser": "^5.30.0", "conventional-changelog-cli": "^2.2.2", "cross-env": "^7.0.3", "esbuild": "^0.14.43", @@ -71,7 +71,7 @@ "execa": "^6.1.0", "fs-extra": "^10.1.0", "kill-port": "^1.6.1", - "lint-staged": "^13.0.2", + "lint-staged": "^13.0.3", "minimist": "^1.2.6", "node-fetch": "^3.2.6", "npm-run-all": "^4.1.5", @@ -90,8 +90,8 @@ "typescript": "^4.6.4", "unbuild": "^0.7.4", "vite": "workspace:*", - "vitepress": "^1.0.0-alpha.2", - "vitest": "^0.15.1", + "vitepress": "^1.0.0-alpha.4", + "vitest": "^0.16.0", "vue": "^3.2.37" }, "simple-git-hooks": { diff --git a/packages/create-vite/template-lit-ts/package.json b/packages/create-vite/template-lit-ts/package.json index a9f954236db246..04b89ac1ff6a2f 100644 --- a/packages/create-vite/template-lit-ts/package.json +++ b/packages/create-vite/template-lit-ts/package.json @@ -21,6 +21,6 @@ }, "devDependencies": { "typescript": "^4.6.4", - "vite": "^2.9.12" + "vite": "^2.9.13" } } diff --git a/packages/create-vite/template-lit/package.json b/packages/create-vite/template-lit/package.json index b373f9f2cb6464..6c24101351e9da 100644 --- a/packages/create-vite/template-lit/package.json +++ b/packages/create-vite/template-lit/package.json @@ -18,6 +18,6 @@ "lit": "^2.2.6" }, "devDependencies": { - "vite": "^2.9.12" + "vite": "^2.9.13" } } diff --git a/packages/create-vite/template-preact-ts/package.json b/packages/create-vite/template-preact-ts/package.json index fdd76de943d8b8..c386bceaa34f47 100644 --- a/packages/create-vite/template-preact-ts/package.json +++ b/packages/create-vite/template-preact-ts/package.json @@ -9,11 +9,11 @@ "preview": "vite preview" }, "dependencies": { - "preact": "^10.8.1" + "preact": "^10.8.2" }, "devDependencies": { "@preact/preset-vite": "^2.2.0", "typescript": "^4.6.4", - "vite": "^2.9.12" + "vite": "^2.9.13" } } diff --git a/packages/create-vite/template-preact/package.json b/packages/create-vite/template-preact/package.json index 6baec44cf45018..54ad7860df6b93 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.8.1" + "preact": "^10.8.2" }, "devDependencies": { "@preact/preset-vite": "^2.2.0", - "vite": "^2.9.12" + "vite": "^2.9.13" } } diff --git a/packages/create-vite/template-react-ts/package.json b/packages/create-vite/template-react-ts/package.json index c3547ded729b4b..d4e368fb9be663 100644 --- a/packages/create-vite/template-react-ts/package.json +++ b/packages/create-vite/template-react-ts/package.json @@ -17,6 +17,6 @@ "@types/react-dom": "^18.0.5", "@vitejs/plugin-react": "^1.3.2", "typescript": "^4.6.4", - "vite": "^2.9.12" + "vite": "^2.9.13" } } diff --git a/packages/create-vite/template-react/package.json b/packages/create-vite/template-react/package.json index 01ebefd0c28df6..ef49229047ce93 100644 --- a/packages/create-vite/template-react/package.json +++ b/packages/create-vite/template-react/package.json @@ -16,6 +16,6 @@ "@types/react": "^18.0.14", "@types/react-dom": "^18.0.5", "@vitejs/plugin-react": "^1.3.2", - "vite": "^2.9.12" + "vite": "^2.9.13" } } diff --git a/packages/create-vite/template-svelte-ts/package.json b/packages/create-vite/template-svelte-ts/package.json index 35754a8efcd2e1..91763551a0f82a 100644 --- a/packages/create-vite/template-svelte-ts/package.json +++ b/packages/create-vite/template-svelte-ts/package.json @@ -13,10 +13,10 @@ "@sveltejs/vite-plugin-svelte": "^1.0.0-next.49", "@tsconfig/svelte": "^3.0.0", "svelte": "^3.48.0", - "svelte-check": "^2.7.2", + "svelte-check": "^2.8.0", "svelte-preprocess": "^4.10.7", "tslib": "^2.4.0", "typescript": "^4.6.4", - "vite": "^2.9.12" + "vite": "^2.9.13" } } diff --git a/packages/create-vite/template-svelte/package.json b/packages/create-vite/template-svelte/package.json index 7b4bb4e615b5a7..1601057ce323b6 100644 --- a/packages/create-vite/template-svelte/package.json +++ b/packages/create-vite/template-svelte/package.json @@ -11,6 +11,6 @@ "devDependencies": { "@sveltejs/vite-plugin-svelte": "^1.0.0-next.49", "svelte": "^3.48.0", - "vite": "^2.9.12" + "vite": "^2.9.13" } } diff --git a/packages/create-vite/template-vanilla-ts/package.json b/packages/create-vite/template-vanilla-ts/package.json index d1df1e67eeb8b6..357f680278e836 100644 --- a/packages/create-vite/template-vanilla-ts/package.json +++ b/packages/create-vite/template-vanilla-ts/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "typescript": "^4.6.4", - "vite": "^2.9.12" + "vite": "^2.9.13" } } diff --git a/packages/create-vite/template-vanilla/package.json b/packages/create-vite/template-vanilla/package.json index 52837e6d7c0ecc..e5d2b2742b9cf1 100644 --- a/packages/create-vite/template-vanilla/package.json +++ b/packages/create-vite/template-vanilla/package.json @@ -9,6 +9,6 @@ "preview": "vite preview" }, "devDependencies": { - "vite": "^2.9.12" + "vite": "^2.9.13" } } diff --git a/packages/create-vite/template-vue-ts/package.json b/packages/create-vite/template-vue-ts/package.json index 687280c74e3b98..06e21979b4c36e 100644 --- a/packages/create-vite/template-vue-ts/package.json +++ b/packages/create-vite/template-vue-ts/package.json @@ -14,7 +14,7 @@ "devDependencies": { "@vitejs/plugin-vue": "^2.3.3", "typescript": "^4.6.4", - "vite": "^2.9.12", - "vue-tsc": "^0.38.1" + "vite": "^2.9.13", + "vue-tsc": "^0.38.2" } } diff --git a/packages/create-vite/template-vue/package.json b/packages/create-vite/template-vue/package.json index f2f7dee1baaf9d..58985a381b00d3 100644 --- a/packages/create-vite/template-vue/package.json +++ b/packages/create-vite/template-vue/package.json @@ -13,6 +13,6 @@ }, "devDependencies": { "@vitejs/plugin-vue": "^2.3.3", - "vite": "^2.9.12" + "vite": "^2.9.13" } } diff --git a/packages/plugin-legacy/package.json b/packages/plugin-legacy/package.json index 01267c9c56ca50..4929834dda0de8 100644 --- a/packages/plugin-legacy/package.json +++ b/packages/plugin-legacy/package.json @@ -36,7 +36,7 @@ "homepage": "https://github.com/vitejs/vite/tree/main/packages/plugin-legacy#readme", "dependencies": { "@babel/standalone": "^7.18.5", - "core-js": "^3.23.1", + "core-js": "^3.23.3", "magic-string": "^0.26.2", "regenerator-runtime": "^0.13.9", "systemjs": "^6.12.1" diff --git a/packages/plugin-vue/package.json b/packages/plugin-vue/package.json index 84cc1983a2c9a5..0fd91b55829172 100644 --- a/packages/plugin-vue/package.json +++ b/packages/plugin-vue/package.json @@ -39,8 +39,8 @@ "vue": "^3.2.25" }, "devDependencies": { - "@jridgewell/gen-mapping": "^0.3.1", - "@jridgewell/trace-mapping": "^0.3.13", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.14", "debug": "^4.3.4", "rollup": "^2.75.6", "slash": "^4.0.0", diff --git a/packages/vite/package.json b/packages/vite/package.json index 7b134fd5770250..1e2b7009cb5d1d 100644 --- a/packages/vite/package.json +++ b/packages/vite/package.json @@ -69,7 +69,7 @@ "@ampproject/remapping": "^2.2.0", "@babel/parser": "^7.18.5", "@babel/types": "^7.18.4", - "@jridgewell/trace-mapping": "^0.3.13", + "@jridgewell/trace-mapping": "^0.3.14", "@rollup/plugin-alias": "^3.1.9", "@rollup/plugin-commonjs": "^22.0.1", "@rollup/plugin-dynamic-import-vars": "^1.4.3", diff --git a/playground/backend-integration/package.json b/playground/backend-integration/package.json index aeb061f095391f..ead0c3a70d8e10 100644 --- a/playground/backend-integration/package.json +++ b/playground/backend-integration/package.json @@ -9,8 +9,8 @@ "preview": "vite preview" }, "devDependencies": { - "sass": "^1.52.3", - "tailwindcss": "^3.1.3", + "sass": "^1.53.0", + "tailwindcss": "^3.1.4", "fast-glob": "^3.2.11" } } diff --git a/playground/css-sourcemap/package.json b/playground/css-sourcemap/package.json index f7a7d480c8ec22..9f71331853f332 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.2", - "sass": "^1.52.3", + "sass": "^1.53.0", "stylus": "^0.58.1" } } diff --git a/playground/css/package.json b/playground/css/package.json index 9663843f43097e..03c4964f0284ea 100644 --- a/playground/css/package.json +++ b/playground/css/package.json @@ -16,7 +16,7 @@ "fast-glob": "^3.2.11", "less": "^4.1.3", "postcss-nested": "^5.0.6", - "sass": "^1.52.3", + "sass": "^1.53.0", "stylus": "^0.58.1" } } diff --git a/playground/multiple-entrypoints/package.json b/playground/multiple-entrypoints/package.json index 555d5b9021ab2c..56a0c90d402414 100644 --- a/playground/multiple-entrypoints/package.json +++ b/playground/multiple-entrypoints/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "fast-glob": "^3.2.11", - "sass": "^1.52.3" + "sass": "^1.53.0" } } diff --git a/playground/react-classic/package.json b/playground/react-classic/package.json index a07684af1feefd..668c88fee47660 100644 --- a/playground/react-classic/package.json +++ b/playground/react-classic/package.json @@ -9,8 +9,8 @@ "preview": "vite preview" }, "dependencies": { - "react": "^18.1.0", - "react-dom": "^18.1.0" + "react": "^18.2.0", + "react-dom": "^18.2.0" }, "devDependencies": { "@vitejs/plugin-react": "workspace:*" diff --git a/playground/tailwind-sourcemap/package.json b/playground/tailwind-sourcemap/package.json index 065159ef4ba44c..3b0ee8ec7c2dcb 100644 --- a/playground/tailwind-sourcemap/package.json +++ b/playground/tailwind-sourcemap/package.json @@ -9,6 +9,6 @@ "preview": "vite preview" }, "dependencies": { - "tailwindcss": "^3.1.3" + "tailwindcss": "^3.1.4" } } diff --git a/playground/tailwind/package.json b/playground/tailwind/package.json index 541b902fe37fa9..6066a5931481cf 100644 --- a/playground/tailwind/package.json +++ b/playground/tailwind/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "autoprefixer": "^10.4.7", - "tailwindcss": "^3.1.3", + "tailwindcss": "^3.1.4", "vue": "^3.2.37", "vue-router": "^4.0.16" }, diff --git a/playground/vue-sourcemap/package.json b/playground/vue-sourcemap/package.json index 9530a527f2398d..778f73be3a100b 100644 --- a/playground/vue-sourcemap/package.json +++ b/playground/vue-sourcemap/package.json @@ -12,7 +12,7 @@ "@vitejs/plugin-vue": "workspace:*", "less": "^4.1.3", "postcss-nested": "^5.0.6", - "sass": "^1.52.3" + "sass": "^1.53.0" }, "dependencies": { "vue": "^3.2.37" diff --git a/playground/vue/package.json b/playground/vue/package.json index 97d4e0fa1879ff..fa1808defade56 100644 --- a/playground/vue/package.json +++ b/playground/vue/package.json @@ -17,7 +17,7 @@ "js-yaml": "^4.1.0", "less": "^4.1.3", "pug": "^3.0.2", - "sass": "^1.52.3", + "sass": "^1.53.0", "stylus": "^0.58.1" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1398973edda041..e5ce47d0c77253 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,14 +11,14 @@ importers: .: specifiers: '@babel/types': ^7.18.4 - '@microsoft/api-extractor': ^7.25.2 + '@microsoft/api-extractor': ^7.27.0 '@rollup/plugin-typescript': ^8.3.3 '@types/babel__core': ^7.1.19 '@types/babel__standalone': ^7.1.4 '@types/convert-source-map': ^1.5.2 '@types/cross-spawn': ^6.0.2 '@types/debug': ^4.1.7 - '@types/estree': ^0.0.51 + '@types/estree': ^0.0.52 '@types/etag': ^1.8.1 '@types/fs-extra': ^9.0.13 '@types/hash-sum': ^1.0.0 @@ -33,8 +33,8 @@ importers: '@types/semver': ^7.3.10 '@types/stylus': ^0.48.38 '@types/ws': ^8.5.3 - '@typescript-eslint/eslint-plugin': ^5.28.0 - '@typescript-eslint/parser': ^5.28.0 + '@typescript-eslint/eslint-plugin': ^5.30.0 + '@typescript-eslint/parser': ^5.30.0 conventional-changelog-cli: ^2.2.2 cross-env: ^7.0.3 esbuild: ^0.14.43 @@ -45,7 +45,7 @@ importers: execa: ^6.1.0 fs-extra: ^10.1.0 kill-port: ^1.6.1 - lint-staged: ^13.0.2 + lint-staged: ^13.0.3 minimist: ^1.2.6 node-fetch: ^3.2.6 npm-run-all: ^4.1.5 @@ -64,19 +64,19 @@ importers: typescript: ^4.6.4 unbuild: ^0.7.4 vite: workspace:* - vitepress: ^1.0.0-alpha.2 - vitest: ^0.15.1 + vitepress: ^1.0.0-alpha.4 + vitest: ^0.16.0 vue: ^3.2.37 devDependencies: '@babel/types': 7.18.4 - '@microsoft/api-extractor': 7.25.2 + '@microsoft/api-extractor': 7.27.0 '@rollup/plugin-typescript': 8.3.3_uct5nfewsakxkk4livyn3qaf3e '@types/babel__core': 7.1.19 '@types/babel__standalone': 7.1.4 '@types/convert-source-map': 1.5.2 '@types/cross-spawn': 6.0.2 '@types/debug': 4.1.7 - '@types/estree': 0.0.51 + '@types/estree': 0.0.52 '@types/etag': 1.8.1 '@types/fs-extra': 9.0.13 '@types/hash-sum': 1.0.0 @@ -91,19 +91,19 @@ importers: '@types/semver': 7.3.10 '@types/stylus': 0.48.38 '@types/ws': 8.5.3 - '@typescript-eslint/eslint-plugin': 5.28.0_ej5swszfh2mpu22thvazbkozje - '@typescript-eslint/parser': 5.28.0_yrtj344k46h67sdw7qqyyz3die + '@typescript-eslint/eslint-plugin': 5.30.0_zxwqcpzpccusit5iasgykeunla + '@typescript-eslint/parser': 5.30.0_yrtj344k46h67sdw7qqyyz3die conventional-changelog-cli: 2.2.2 cross-env: 7.0.3 esbuild: 0.14.43 eslint: 8.18.0 eslint-define-config: 1.5.1 - eslint-plugin-import: 2.26.0_6lykrgsjl6r2vncmjcievjkgyy + eslint-plugin-import: 2.26.0_wno36sjfnklvt2ocf7qbhb2izy eslint-plugin-node: 11.1.0_eslint@8.18.0 execa: 6.1.0 fs-extra: 10.1.0 kill-port: 1.6.1 - lint-staged: 13.0.2 + lint-staged: 13.0.3 minimist: 1.2.6 node-fetch: 3.2.6 npm-run-all: 4.1.5 @@ -122,8 +122,8 @@ importers: typescript: 4.6.4 unbuild: 0.7.4 vite: link:packages/vite - vitepress: 1.0.0-alpha.2 - vitest: 0.15.1 + vitepress: 1.0.0-alpha.4 + vitest: 0.16.0 vue: 3.2.37 packages/create-vite: @@ -140,14 +140,14 @@ importers: specifiers: '@babel/core': ^7.18.5 '@babel/standalone': ^7.18.5 - core-js: ^3.23.1 + core-js: ^3.23.3 magic-string: ^0.26.2 regenerator-runtime: ^0.13.9 systemjs: ^6.12.1 vite: workspace:* dependencies: '@babel/standalone': 7.18.5 - core-js: 3.23.1 + core-js: 3.23.3 magic-string: 0.26.2 regenerator-runtime: 0.13.9 systemjs: 6.12.1 @@ -176,8 +176,8 @@ importers: packages/plugin-vue: specifiers: - '@jridgewell/gen-mapping': ^0.3.1 - '@jridgewell/trace-mapping': ^0.3.13 + '@jridgewell/gen-mapping': ^0.3.2 + '@jridgewell/trace-mapping': ^0.3.14 debug: ^4.3.4 rollup: ^2.75.6 slash: ^4.0.0 @@ -185,8 +185,8 @@ importers: vite: workspace:* vue: ^3.2.37 devDependencies: - '@jridgewell/gen-mapping': 0.3.1 - '@jridgewell/trace-mapping': 0.3.13 + '@jridgewell/gen-mapping': 0.3.2 + '@jridgewell/trace-mapping': 0.3.14 debug: 4.3.4 rollup: 2.75.6 slash: 4.0.0 @@ -214,7 +214,7 @@ importers: '@ampproject/remapping': ^2.2.0 '@babel/parser': ^7.18.5 '@babel/types': ^7.18.4 - '@jridgewell/trace-mapping': ^0.3.13 + '@jridgewell/trace-mapping': ^0.3.14 '@rollup/plugin-alias': ^3.1.9 '@rollup/plugin-commonjs': ^22.0.1 '@rollup/plugin-dynamic-import-vars': ^1.4.3 @@ -281,7 +281,7 @@ importers: '@ampproject/remapping': 2.2.0 '@babel/parser': 7.18.5 '@babel/types': 7.18.4 - '@jridgewell/trace-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.14 '@rollup/plugin-alias': 3.1.9_rollup@2.75.6 '@rollup/plugin-commonjs': 22.0.1_rollup@2.75.6 '@rollup/plugin-dynamic-import-vars': 1.4.3_rollup@2.75.6 @@ -361,12 +361,12 @@ importers: playground/backend-integration: specifiers: fast-glob: ^3.2.11 - sass: ^1.52.3 - tailwindcss: ^3.1.3 + sass: ^1.53.0 + tailwindcss: ^3.1.4 devDependencies: fast-glob: 3.2.11 - sass: 1.52.3 - tailwindcss: 3.1.3 + sass: 1.53.0 + tailwindcss: 3.1.4 playground/cli: specifiers: {} @@ -380,14 +380,14 @@ importers: fast-glob: ^3.2.11 less: ^4.1.3 postcss-nested: ^5.0.6 - sass: ^1.52.3 + sass: ^1.53.0 stylus: ^0.58.1 devDependencies: css-dep: link:css-dep fast-glob: 3.2.11 less: 4.1.3 postcss-nested: 5.0.6 - sass: 1.52.3 + sass: 1.53.0 stylus: 0.58.1 playground/css-codesplit: @@ -400,12 +400,12 @@ importers: specifiers: less: ^4.1.3 magic-string: ^0.26.2 - sass: ^1.52.3 + sass: ^1.53.0 stylus: ^0.58.1 devDependencies: less: 4.1.3 magic-string: 0.26.2 - sass: 1.52.3 + sass: 1.53.0 stylus: 0.58.1 playground/css/css-dep: @@ -535,13 +535,16 @@ importers: playground/lib: specifiers: {} + playground/minify: + specifiers: {} + playground/multiple-entrypoints: specifiers: fast-glob: ^3.2.11 - sass: ^1.52.3 + sass: ^1.53.0 devDependencies: fast-glob: 3.2.11 - sass: 1.52.3 + sass: 1.53.0 playground/nested-deps: specifiers: @@ -761,8 +764,8 @@ importers: playground/react-classic: specifiers: '@vitejs/plugin-react': workspace:* - react: ^18.1.0 - react-dom: ^18.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 dependencies: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -996,13 +999,13 @@ importers: specifiers: '@vitejs/plugin-vue': workspace:* autoprefixer: ^10.4.7 - tailwindcss: ^3.1.3 + tailwindcss: ^3.1.4 ts-node: ^10.8.1 vue: ^3.2.37 vue-router: ^4.0.16 dependencies: autoprefixer: 10.4.7 - tailwindcss: 3.1.3_ts-node@10.8.1 + tailwindcss: 3.1.4_ts-node@10.8.1 vue: 3.2.37 vue-router: 4.0.16_vue@3.2.37 devDependencies: @@ -1011,9 +1014,9 @@ importers: playground/tailwind-sourcemap: specifiers: - tailwindcss: ^3.1.3 + tailwindcss: ^3.1.4 dependencies: - tailwindcss: 3.1.3 + tailwindcss: 3.1.4 playground/tsconfig-json: specifiers: {} @@ -1028,7 +1031,7 @@ importers: less: ^4.1.3 lodash-es: ^4.17.21 pug: ^3.0.2 - sass: ^1.52.3 + sass: ^1.53.0 stylus: ^0.58.1 vue: ^3.2.37 dependencies: @@ -1039,7 +1042,7 @@ importers: js-yaml: 4.1.0 less: 4.1.3 pug: 3.0.2 - sass: 1.52.3 + sass: 1.53.0 stylus: 0.58.1 playground/vue-jsx: @@ -1076,7 +1079,7 @@ importers: '@vitejs/plugin-vue': workspace:* less: ^4.1.3 postcss-nested: ^5.0.6 - sass: ^1.52.3 + sass: ^1.53.0 vue: ^3.2.37 dependencies: vue: 3.2.37 @@ -1084,7 +1087,7 @@ importers: '@vitejs/plugin-vue': link:../../packages/plugin-vue less: 4.1.3 postcss-nested: 5.0.6 - sass: 1.52.3 + sass: 1.53.0 playground/wasm: specifiers: {} @@ -1208,7 +1211,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 - '@jridgewell/trace-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.14 /@babel/code-frame/7.16.7: resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} @@ -1848,6 +1851,15 @@ packages: '@jridgewell/sourcemap-codec': 1.4.13 '@jridgewell/trace-mapping': 0.3.13 + /@jridgewell/gen-mapping/0.3.2: + resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.1 + '@jridgewell/sourcemap-codec': 1.4.13 + '@jridgewell/trace-mapping': 0.3.14 + dev: true + /@jridgewell/resolve-uri/3.0.7: resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==} engines: {node: '>=6.0.0'} @@ -1872,6 +1884,12 @@ packages: '@jridgewell/resolve-uri': 3.0.7 '@jridgewell/sourcemap-codec': 1.4.13 + /@jridgewell/trace-mapping/0.3.14: + resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==} + dependencies: + '@jridgewell/resolve-uri': 3.0.7 + '@jridgewell/sourcemap-codec': 1.4.13 + /@jridgewell/trace-mapping/0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: @@ -1896,24 +1914,24 @@ packages: - supports-color dev: false - /@microsoft/api-extractor-model/7.18.2: - resolution: {integrity: sha512-m7MCvJrudnWyE4iuRhdmgJTdTkYLw+yN/XUp3y9sxicu5/mNdg8y4pflaM82ZbLakhfGreMlB/XgjvyGbLHwkA==} + /@microsoft/api-extractor-model/7.20.0: + resolution: {integrity: sha512-6gK6ipnBsSZ9uLrUBHg3q1V7gvzvB1zVb8lbtrpKl3mQJ7vvXJm2sDNl3Vlt1gy0izgQb9s6mmyy7hLRh1qFRg==} dependencies: '@microsoft/tsdoc': 0.14.1 '@microsoft/tsdoc-config': 0.16.1 - '@rushstack/node-core-library': 3.45.7 + '@rushstack/node-core-library': 3.46.0 dev: true - /@microsoft/api-extractor/7.25.2: - resolution: {integrity: sha512-ITuiZqMszZE38dGqavkFFIAW/GQGfkk8ahgBqVj3j1qD4wioPTRlSidhQDCezExAhrMt/bTkuZ3woLeR0uiSsg==} + /@microsoft/api-extractor/7.27.0: + resolution: {integrity: sha512-rzVl2Rf3LQ2b7ykymVJSXZwRcy/QuwqlLmYh7NRi9Ilkk66aOloJTBgkkni/wlg5/RyohQKSdOmFYHcF+IiS3A==} hasBin: true dependencies: - '@microsoft/api-extractor-model': 7.18.2 + '@microsoft/api-extractor-model': 7.20.0 '@microsoft/tsdoc': 0.14.1 '@microsoft/tsdoc-config': 0.16.1 - '@rushstack/node-core-library': 3.45.7 + '@rushstack/node-core-library': 3.46.0 '@rushstack/rig-package': 0.3.12 - '@rushstack/ts-command-line': 4.11.1 + '@rushstack/ts-command-line': 4.12.0 colors: 1.2.5 lodash: 4.17.21 resolve: 1.17.0 @@ -2153,8 +2171,8 @@ packages: picomatch: 2.3.1 dev: true - /@rushstack/node-core-library/3.45.7: - resolution: {integrity: sha512-DHfOvgPrm9X4uILlUfGgiqcobe5QGNDmqqYLM8dJ5M5fqQ9H5GwyUwBnFeRsxBo0b75RE83l41Oze+gdHKvKaA==} + /@rushstack/node-core-library/3.46.0: + resolution: {integrity: sha512-5iF21WvppEkXUPkxXkkH7HlfK5jDNFTKPJT0M+t3fG8qteoJM2atQoLtXklS0yNgOXy5zNTVTO+9lSzfVUvrCA==} dependencies: '@types/node': 12.20.24 colors: 1.2.5 @@ -2174,8 +2192,8 @@ packages: strip-json-comments: 3.1.1 dev: true - /@rushstack/ts-command-line/4.11.1: - resolution: {integrity: sha512-Xo8LaQOXlNSfp+qIuIPb1tfX7b4H21ksqiMo/HbeZI5AX1klHMqKjWcEs0AqgE9huvQj6cvnCla8Eq/GDcwMIg==} + /@rushstack/ts-command-line/4.12.0: + resolution: {integrity: sha512-+dC3ZwT1PjvsEnybXzM9UUYg4xdDOl6vmE+23eByxbWmAxo/nB8VAD5iFs+jbbUd9MtG/7xqCBWbMWEDA+cBjw==} dependencies: '@types/argparse': 1.0.38 argparse: 1.0.10 @@ -2278,6 +2296,10 @@ packages: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} dev: true + /@types/estree/0.0.52: + resolution: {integrity: sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==} + dev: true + /@types/etag/1.8.1: resolution: {integrity: sha512-bsKkeSqN7HYyYntFRAmzcwx/dKW4Wa+KVMTInANlI72PWLQmOpZu96j0OqHZGArW4VQwCmJPteQlXaUDeOB0WQ==} dependencies: @@ -2383,8 +2405,8 @@ packages: '@types/node': 17.0.42 dev: true - /@typescript-eslint/eslint-plugin/5.28.0_ej5swszfh2mpu22thvazbkozje: - resolution: {integrity: sha512-DXVU6Cg29H2M6EybqSg2A+x8DgO9TCUBRp4QEXQHJceLS7ogVDP0g3Lkg/SZCqcvkAP/RruuQqK0gdlkgmhSUA==} + /@typescript-eslint/eslint-plugin/5.30.0_zxwqcpzpccusit5iasgykeunla: + resolution: {integrity: sha512-lvhRJ2pGe2V9MEU46ELTdiHgiAFZPKtLhiU5wlnaYpMc2+c1R8fh8i80ZAa665drvjHKUJyRRGg3gEm1If54ow==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -2394,10 +2416,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.28.0_yrtj344k46h67sdw7qqyyz3die - '@typescript-eslint/scope-manager': 5.28.0 - '@typescript-eslint/type-utils': 5.28.0_yrtj344k46h67sdw7qqyyz3die - '@typescript-eslint/utils': 5.28.0_yrtj344k46h67sdw7qqyyz3die + '@typescript-eslint/parser': 5.30.0_yrtj344k46h67sdw7qqyyz3die + '@typescript-eslint/scope-manager': 5.30.0 + '@typescript-eslint/type-utils': 5.30.0_yrtj344k46h67sdw7qqyyz3die + '@typescript-eslint/utils': 5.30.0_yrtj344k46h67sdw7qqyyz3die debug: 4.3.4 eslint: 8.18.0 functional-red-black-tree: 1.0.1 @@ -2410,8 +2432,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.28.0_yrtj344k46h67sdw7qqyyz3die: - resolution: {integrity: sha512-ekqoNRNK1lAcKhZESN/PdpVsWbP9jtiNqzFWkp/yAUdZvJalw2heCYuqRmM5eUJSIYEkgq5sGOjq+ZqsLMjtRA==} + /@typescript-eslint/parser/5.30.0_yrtj344k46h67sdw7qqyyz3die: + resolution: {integrity: sha512-2oYYUws5o2liX6SrFQ5RB88+PuRymaM2EU02/9Ppoyu70vllPnHVO7ioxDdq/ypXHA277R04SVjxvwI8HmZpzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -2420,9 +2442,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.28.0 - '@typescript-eslint/types': 5.28.0 - '@typescript-eslint/typescript-estree': 5.28.0_typescript@4.6.4 + '@typescript-eslint/scope-manager': 5.30.0 + '@typescript-eslint/types': 5.30.0 + '@typescript-eslint/typescript-estree': 5.30.0_typescript@4.6.4 debug: 4.3.4 eslint: 8.18.0 typescript: 4.6.4 @@ -2430,16 +2452,16 @@ packages: - supports-color dev: true - /@typescript-eslint/scope-manager/5.28.0: - resolution: {integrity: sha512-LeBLTqF/he1Z+boRhSqnso6YrzcKMTQ8bO/YKEe+6+O/JGof9M0g3IJlIsqfrK/6K03MlFIlycbf1uQR1IjE+w==} + /@typescript-eslint/scope-manager/5.30.0: + resolution: {integrity: sha512-3TZxvlQcK5fhTBw5solQucWSJvonXf5yua5nx8OqK94hxdrT7/6W3/CS42MLd/f1BmlmmbGEgQcTHHCktUX5bQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.28.0 - '@typescript-eslint/visitor-keys': 5.28.0 + '@typescript-eslint/types': 5.30.0 + '@typescript-eslint/visitor-keys': 5.30.0 dev: true - /@typescript-eslint/type-utils/5.28.0_yrtj344k46h67sdw7qqyyz3die: - resolution: {integrity: sha512-SyKjKh4CXPglueyC6ceAFytjYWMoPHMswPQae236zqe1YbhvCVQyIawesYywGiu98L9DwrxsBN69vGIVxJ4mQQ==} + /@typescript-eslint/type-utils/5.30.0_yrtj344k46h67sdw7qqyyz3die: + resolution: {integrity: sha512-GF8JZbZqSS+azehzlv/lmQQ3EU3VfWYzCczdZjJRxSEeXDQkqFhCBgFhallLDbPwQOEQ4MHpiPfkjKk7zlmeNg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -2448,7 +2470,7 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.28.0_yrtj344k46h67sdw7qqyyz3die + '@typescript-eslint/utils': 5.30.0_yrtj344k46h67sdw7qqyyz3die debug: 4.3.4 eslint: 8.18.0 tsutils: 3.21.0_typescript@4.6.4 @@ -2457,13 +2479,13 @@ packages: - supports-color dev: true - /@typescript-eslint/types/5.28.0: - resolution: {integrity: sha512-2OOm8ZTOQxqkPbf+DAo8oc16sDlVR5owgJfKheBkxBKg1vAfw2JsSofH9+16VPlN9PWtv8Wzhklkqw3k/zCVxA==} + /@typescript-eslint/types/5.30.0: + resolution: {integrity: sha512-vfqcBrsRNWw/LBXyncMF/KrUTYYzzygCSsVqlZ1qGu1QtGs6vMkt3US0VNSQ05grXi5Yadp3qv5XZdYLjpp8ag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.28.0_typescript@4.6.4: - resolution: {integrity: sha512-9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA==} + /@typescript-eslint/typescript-estree/5.30.0_typescript@4.6.4: + resolution: {integrity: sha512-hDEawogreZB4n1zoqcrrtg/wPyyiCxmhPLpZ6kmWfKF5M5G0clRLaEexpuWr31fZ42F96SlD/5xCt1bT5Qm4Nw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -2471,8 +2493,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.28.0 - '@typescript-eslint/visitor-keys': 5.28.0 + '@typescript-eslint/types': 5.30.0 + '@typescript-eslint/visitor-keys': 5.30.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -2483,16 +2505,16 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.28.0_yrtj344k46h67sdw7qqyyz3die: - resolution: {integrity: sha512-E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g==} + /@typescript-eslint/utils/5.30.0_yrtj344k46h67sdw7qqyyz3die: + resolution: {integrity: sha512-0bIgOgZflLKIcZsWvfklsaQTM3ZUbmtH0rJ1hKyV3raoUYyeZwcjQ8ZUJTzS7KnhNcsVT1Rxs7zeeMHEhGlltw==} 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.28.0 - '@typescript-eslint/types': 5.28.0 - '@typescript-eslint/typescript-estree': 5.28.0_typescript@4.6.4 + '@typescript-eslint/scope-manager': 5.30.0 + '@typescript-eslint/types': 5.30.0 + '@typescript-eslint/typescript-estree': 5.30.0_typescript@4.6.4 eslint: 8.18.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.18.0 @@ -2501,11 +2523,11 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys/5.28.0: - resolution: {integrity: sha512-BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA==} + /@typescript-eslint/visitor-keys/5.30.0: + resolution: {integrity: sha512-6WcIeRk2DQ3pHKxU1Ni0qMXJkjO/zLjBymlYBy/53qxe7yjEFSvzKLDToJjURUhSl2Fzhkl4SMXQoETauF74cw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/types': 5.30.0 eslint-visitor-keys: 3.3.0 dev: true @@ -3539,8 +3561,8 @@ packages: is-what: 3.14.1 dev: true - /core-js/3.23.1: - resolution: {integrity: sha512-wfMYHWi1WQjpgZNC9kAlN4ut04TM9fUTdi7CqIoTVM7yaiOUQTklOzfb+oWH3r9edQcT3F887swuVmxrV+CC8w==} + /core-js/3.23.3: + resolution: {integrity: sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==} requiresBuild: true dev: false @@ -4548,7 +4570,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.3_cfsupm63rr3qvqifljk6nmy67u: + /eslint-module-utils/2.7.3_s24jsywy72ks6h3c4f2dacxdsa: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: @@ -4566,7 +4588,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.28.0_yrtj344k46h67sdw7qqyyz3die + '@typescript-eslint/parser': 5.30.0_yrtj344k46h67sdw7qqyyz3die debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -4585,7 +4607,7 @@ packages: regexpp: 3.2.0 dev: true - /eslint-plugin-import/2.26.0_6lykrgsjl6r2vncmjcievjkgyy: + /eslint-plugin-import/2.26.0_wno36sjfnklvt2ocf7qbhb2izy: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -4595,14 +4617,14 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.28.0_yrtj344k46h67sdw7qqyyz3die + '@typescript-eslint/parser': 5.30.0_yrtj344k46h67sdw7qqyyz3die array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.18.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_cfsupm63rr3qvqifljk6nmy67u + eslint-module-utils: 2.7.3_s24jsywy72ks6h3c4f2dacxdsa has: 1.0.3 is-core-module: 2.9.0 is-glob: 4.0.3 @@ -5832,8 +5854,8 @@ packages: /lines-and-columns/1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - /lint-staged/13.0.2: - resolution: {integrity: sha512-qQLfLTh9z34eMzfEHENC+QBskZfxjomrf+snF3xJ4BzilORbD989NLqQ00ughsF/A+PT41e87+WsMFabf9++pQ==} + /lint-staged/13.0.3: + resolution: {integrity: sha512-9hmrwSCFroTSYLjflGI8Uk+GWAwMB4OlpU4bMJEAT5d/llQwtYKoim4bLOyLCuWFAhWEupE0vkIFqtw/WIsPug==} engines: {node: ^14.13.1 || >=16.0.0} hasBin: true dependencies: @@ -7457,8 +7479,8 @@ packages: truncate-utf8-bytes: 1.0.2 dev: true - /sass/1.52.3: - resolution: {integrity: sha512-LNNPJ9lafx+j1ArtA7GyEJm9eawXN8KlA1+5dF6IZyoONg1Tyo/g+muOsENWJH/2Q1FHbbV4UwliU0cXMa/VIA==} + /sass/1.53.0: + resolution: {integrity: sha512-zb/oMirbKhUgRQ0/GFz8TSAwRq2IlR29vOUJZOx0l8sV+CkHUfHa4u5nqrG+1VceZp7Jfj59SVW9ogdhTvJDcQ==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -7924,8 +7946,8 @@ packages: resolution: {integrity: sha512-hqTN6kW+pN6/qro6G9OZ7ceDQOcYno020zBQKpZQLsJhYTDMCMNfXi/Y8duF5iW+4WWZr42ry0MMkcRGpbwG2A==} dev: false - /tailwindcss/3.1.3: - resolution: {integrity: sha512-PRJNYdSIthrb8hjmAyymEyEN8Yo61TMXpzyFUpxULeeyRn3Y3gpvuw6FlRTKrJvK7thSGKRnhT36VovVx4WeMA==} + /tailwindcss/3.1.4: + resolution: {integrity: sha512-NrxbFV4tYsga/hpWbRyUfIaBrNMXDxx5BsHgBS4v5tlyjf+sDsgBg5m9OxjrXIqAS/uR9kicxLKP+bEHI7BSeQ==} engines: {node: '>=12.13.0'} hasBin: true dependencies: @@ -7950,12 +7972,12 @@ packages: postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 - resolve: 1.22.0 + resolve: 1.22.1 transitivePeerDependencies: - ts-node - /tailwindcss/3.1.3_ts-node@10.8.1: - resolution: {integrity: sha512-PRJNYdSIthrb8hjmAyymEyEN8Yo61TMXpzyFUpxULeeyRn3Y3gpvuw6FlRTKrJvK7thSGKRnhT36VovVx4WeMA==} + /tailwindcss/3.1.4_ts-node@10.8.1: + resolution: {integrity: sha512-NrxbFV4tYsga/hpWbRyUfIaBrNMXDxx5BsHgBS4v5tlyjf+sDsgBg5m9OxjrXIqAS/uR9kicxLKP+bEHI7BSeQ==} engines: {node: '>=12.13.0'} hasBin: true dependencies: @@ -7980,7 +8002,7 @@ packages: postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 - resolve: 1.22.0 + resolve: 1.22.1 transitivePeerDependencies: - ts-node dev: false @@ -8055,13 +8077,13 @@ packages: resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==} dev: false - /tinypool/0.1.3: - resolution: {integrity: sha512-2IfcQh7CP46XGWGGbdyO4pjcKqsmVqFAPcXfPxcPXmOWt9cYkTP9HcDmGgsfijYoAEc4z9qcpM/BaBz46Y9/CQ==} + /tinypool/0.2.1: + resolution: {integrity: sha512-HFU5ZYVq3wBfhSaf8qdqGsneaqXm0FgJQpoUlJbVdHpRLzm77IneKAD3RjzJWZvIv0YpPB9S7LUW53f6BE6ZSg==} engines: {node: '>=14.0.0'} dev: true - /tinyspy/0.3.2: - resolution: {integrity: sha512-2+40EP4D3sFYy42UkgkFFB+kiX2Tg3URG/lVvAZFfLxgGpnWl5qQJuBw1gaLttq8UOS+2p3C0WrhJnQigLTT2Q==} + /tinyspy/0.3.3: + resolution: {integrity: sha512-gRiUR8fuhUf0W9lzojPf1N1euJYA30ISebSfgca8z76FOvXtVXqd5ojEIaKLWbDQhAaC3ibxZIjqbyi4ybjcTw==} engines: {node: '>=14.0.0'} dev: true @@ -8402,8 +8424,8 @@ packages: engines: {node: '>= 0.8'} dev: true - /vitepress/1.0.0-alpha.2: - resolution: {integrity: sha512-twSsmx2DI/3XgZZ8KLyRAH8RgK2Zj4kJx/kwhZhimwndYqQDrtcIaAcuV+P3FKukZ+cYtm9yt9qohz631jKx4A==} + /vitepress/1.0.0-alpha.4: + resolution: {integrity: sha512-bOAA4KW6vYGlkbcrPLZLTKWTgXVroObU+o9xj9EENyEl6yg26WWvfN7DGA4BftjdM5O8nR93Z5khPQ3W/tFE7Q==} engines: {node: '>=14.6.0'} hasBin: true dependencies: @@ -8423,8 +8445,8 @@ packages: - react-dom dev: true - /vitest/0.15.1: - resolution: {integrity: sha512-NaNFi93JKSuvV4YGnfQ0l0GKYxH0EsLcTrrXaCzd6qfVEZM/RJpjwSevg6waNFqu2DyN6e0aHHdrCZW5/vh5NA==} + /vitest/0.16.0: + resolution: {integrity: sha512-Ntp6jrM8wf2NMtamMBLkRBBdeqHkgAH/WMh5Xryts1j2ft2D8QZQbiSVFkSl4WmEQzcPP0YM069g/Ga1vtnEtg==} engines: {node: '>=v14.16.0'} hasBin: true peerDependencies: @@ -8448,8 +8470,8 @@ packages: chai: 4.3.6 debug: 4.3.4 local-pkg: 0.4.1 - tinypool: 0.1.3 - tinyspy: 0.3.2 + tinypool: 0.2.1 + tinyspy: 0.3.3 vite: link:packages/vite transitivePeerDependencies: - supports-color @@ -8732,7 +8754,7 @@ packages: file:playground/external/dep-that-imports-vue: resolution: {directory: playground/external/dep-that-imports-vue, type: directory} name: '@vitejs/dep-that-imports-vue' - version: 0.0.1 + version: 0.0.0 dependencies: vue: 3.2.37 dev: false @@ -8740,7 +8762,7 @@ packages: file:playground/external/dep-that-requires-vue: resolution: {directory: playground/external/dep-that-requires-vue, type: directory} name: '@vitejs/dep-that-requires-vue' - version: 0.0.1 + version: 0.0.0 dependencies: vue: 3.2.37 dev: false