From ec387ea8e5db281916effbddda04ac5c4677cbc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BF=A0?= Date: Thu, 5 Jun 2025 17:46:40 +0900 Subject: [PATCH 1/4] fix(hmr): use monotonicDateNow for timestamp (#20158) --- guide/api-environment-instances.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/api-environment-instances.md b/guide/api-environment-instances.md index 0399ddf1..d59ef543 100644 --- a/guide/api-environment-instances.md +++ b/guide/api-environment-instances.md @@ -185,7 +185,7 @@ export class EnvironmentModuleGraph { invalidateModule( mod: EnvironmentModuleNode, seen: Set = new Set(), - timestamp: number = Date.now(), + timestamp: number = monotonicDateNow(), isHmr: boolean = false, ): void From 005ce02befb4fef521e7207e916229c4ce6a8852 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 6 Jun 2025 15:14:02 +0900 Subject: [PATCH 2/4] fix(deps): update all non-major dependencies (#20141) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 7ad4e2a8..db7eb036 100644 --- a/package.json +++ b/package.json @@ -10,11 +10,11 @@ "devDependencies": { "@shikijs/vitepress-twoslash": "^2.5.0", "@types/express": "^5.0.2", - "feed": "^5.0.1", + "feed": "^5.1.0", "gsap": "^3.13.0", "vitepress": "^1.6.3", - "vitepress-plugin-group-icons": "^1.5.5", - "vitepress-plugin-llms": "^1.3.3", - "vue": "^3.5.14" + "vitepress-plugin-group-icons": "^1.6.0", + "vitepress-plugin-llms": "^1.3.4", + "vue": "^3.5.16" } } From f0fe7a3504f0635d853b3e57e91b03316cec6a99 Mon Sep 17 00:00:00 2001 From: patak <583075+patak-dev@users.noreply.github.com> Date: Fri, 6 Jun 2025 10:41:29 +0200 Subject: [PATCH 3/4] fix: applyToEnvironment after configResolved (#20170) --- guide/api-environment-plugins.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guide/api-environment-plugins.md b/guide/api-environment-plugins.md index 221f127f..e886006e 100644 --- a/guide/api-environment-plugins.md +++ b/guide/api-environment-plugins.md @@ -184,6 +184,8 @@ export default defineConfig({ }) ``` +The `applyToEnvironment` hook is called at config time, currently after `configResolved` due to projects in the ecosystem modifying the plugins in it. Environment plugins resolution may be moved before `configResolved` in the future. + ## Environment in Build Hooks In the same way as during dev, plugin hooks also receive the environment instance during build, replacing the `ssr` boolean. From 961688d36c39cb0041ddd1f85576e604f18c4d17 Mon Sep 17 00:00:00 2001 From: thinkasany <480968828@qq.com> Date: Sat, 7 Jun 2025 13:33:45 +0800 Subject: [PATCH 4/4] fix: resolved conflict --- guide/api-environment-plugins.md | 8 +- package.json | 27 +--- pnpm-lock.yaml | 212 +++++++++++++------------------ 3 files changed, 95 insertions(+), 152 deletions(-) diff --git a/guide/api-environment-plugins.md b/guide/api-environment-plugins.md index 4e459125..3cd27d3a 100644 --- a/guide/api-environment-plugins.md +++ b/guide/api-environment-plugins.md @@ -184,13 +184,9 @@ export default defineConfig({ }) ``` -<<<<<<< HEAD -## 构建钩子中的环境 {#environment-in-build-hooks} -======= -The `applyToEnvironment` hook is called at config time, currently after `configResolved` due to projects in the ecosystem modifying the plugins in it. Environment plugins resolution may be moved before `configResolved` in the future. +`applyToEnvironment` 钩子在配置时调用,目前在 `configResolved` 之后调用,因为生态系统中的项目正在修改其中的插件。未来,环境插件解析可能会移至 `configResolved` 之前。 -## Environment in Build Hooks ->>>>>>> f0fe7a3504f0635d853b3e57e91b03316cec6a99 +## 构建钩子中的环境 {#environment-in-build-hooks} 与开发期间一样,插件钩子在构建期间也接收环境实例,取代了 `ssr` 布尔值。 这同样适用于 `renderChunk`、`generateBundle` 和其他仅在构建时使用的钩子。 diff --git a/package.json b/package.json index 6fc15c4a..7ece4727 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,4 @@ { -<<<<<<< HEAD "name": "vite-docs-cn", "version": "1.0.0", "description": "Vite.js documentation Chinese translation.", @@ -11,10 +10,10 @@ "devDependencies": { "@shikijs/vitepress-twoslash": "^2.5.0", "@types/express": "^5.0.2", - "feed": "^5.0.1", + "feed": "^5.1.0", "vitepress": "^1.6.3", - "vitepress-plugin-group-icons": "^1.5.5", - "vue": "^3.5.14", + "vitepress-plugin-group-icons": "^1.6.0", + "vue": "^3.5.16", "@types/node": "^20.9.2", "@type-challenges/utils": "^0.1.1", "chalk": "^4.1.2", @@ -33,24 +32,4 @@ "gitHooks": { "commit-msg": "node scripts/verifyCommit.js" } -======= - "name": "docs", - "private": true, - "type": "module", - "scripts": { - "docs": "vitepress dev", - "docs-build": "vitepress build", - "docs-serve": "vitepress serve" - }, - "devDependencies": { - "@shikijs/vitepress-twoslash": "^2.5.0", - "@types/express": "^5.0.2", - "feed": "^5.1.0", - "gsap": "^3.13.0", - "vitepress": "^1.6.3", - "vitepress-plugin-group-icons": "^1.6.0", - "vitepress-plugin-llms": "^1.3.4", - "vue": "^3.5.16" - } ->>>>>>> f0fe7a3504f0635d853b3e57e91b03316cec6a99 } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 77229132..db3768ee 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,8 +24,8 @@ importers: specifier: ^4.1.2 version: 4.1.2 feed: - specifier: ^5.0.1 - version: 5.0.1 + specifier: ^5.1.0 + version: 5.1.0 gray-matter: specifier: ^4.0.3 version: 4.0.3 @@ -42,11 +42,11 @@ importers: specifier: ^1.6.3 version: 1.6.3(@algolia/client-search@5.20.0)(@types/node@20.12.12)(postcss@8.5.3)(search-insights@2.13.0)(typescript@5.4.5) vitepress-plugin-group-icons: - specifier: ^1.5.5 - version: 1.5.5(markdown-it@14.1.0)(vite@6.3.0-beta.0(@types/node@20.12.12)) + specifier: ^1.6.0 + version: 1.6.0(markdown-it@14.1.0)(vite@6.3.0-beta.0(@types/node@20.12.12)) vue: - specifier: ^3.5.14 - version: 3.5.15(typescript@5.4.5) + specifier: ^3.5.16 + version: 3.5.16(typescript@5.4.5) yorkie: specifier: ^2.0.0 version: 2.0.0 @@ -131,36 +131,19 @@ packages: '@antfu/utils@8.1.1': resolution: {integrity: sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ==} - '@babel/helper-string-parser@7.25.7': - resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==} - engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.27.1': resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.25.7': - resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==} - engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.27.1': resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} engines: {node: '>=6.9.0'} - '@babel/parser@7.25.7': - resolution: {integrity: sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==} - engines: {node: '>=6.0.0'} - hasBin: true - '@babel/parser@7.27.2': resolution: {integrity: sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw==} engines: {node: '>=6.0.0'} hasBin: true - '@babel/types@7.25.7': - resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==} - engines: {node: '>=6.9.0'} - '@babel/types@7.27.1': resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==} engines: {node: '>=6.9.0'} @@ -837,23 +820,23 @@ packages: '@volar/source-map@2.4.1': resolution: {integrity: sha512-Xq6ep3OZg9xUqN90jEgB9ztX5SsTz1yiV8wiQbcYNjWkek+Ie3dc8l7AVt3EhDm9mSIR58oWczHkzM2H6HIsmQ==} - '@vue/compiler-core@3.5.13': - resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==} - '@vue/compiler-core@3.5.15': resolution: {integrity: sha512-nGRc6YJg/kxNqbv/7Tg4juirPnjHvuVdhcmDvQWVZXlLHjouq7VsKmV1hIxM/8yKM0VUfwT/Uzc0lO510ltZqw==} - '@vue/compiler-dom@3.5.13': - resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==} + '@vue/compiler-core@3.5.16': + resolution: {integrity: sha512-AOQS2eaQOaaZQoL1u+2rCJIKDruNXVBZSiUD3chnUrsoX5ZTQMaCvXlWNIfxBJuU15r1o7+mpo5223KVtIhAgQ==} '@vue/compiler-dom@3.5.15': resolution: {integrity: sha512-ZelQd9n+O/UCBdL00rlwCrsArSak+YLZpBVuNDio1hN3+wrCshYZEDUO3khSLAzPbF1oQS2duEoMDUHScUlYjA==} - '@vue/compiler-sfc@3.5.15': - resolution: {integrity: sha512-3zndKbxMsOU6afQWer75Zot/aydjtxNj0T2KLg033rAFaQUn2PGuE32ZRe4iMhflbTcAxL0yEYsRWFxtPro8RQ==} + '@vue/compiler-dom@3.5.16': + resolution: {integrity: sha512-SSJIhBr/teipXiXjmWOVWLnxjNGo65Oj/8wTEQz0nqwQeP75jWZ0n4sF24Zxoht1cuJoWopwj0J0exYwCJ0dCQ==} + + '@vue/compiler-sfc@3.5.16': + resolution: {integrity: sha512-rQR6VSFNpiinDy/DVUE0vHoIDUF++6p910cgcZoaAUm3POxgNOOdS/xgoll3rNdKYTYPnnbARDCZOyZ+QSe6Pw==} - '@vue/compiler-ssr@3.5.15': - resolution: {integrity: sha512-gShn8zRREZbrXqTtmLSCffgZXDWv8nHc/GhsW+mbwBfNZL5pI96e7IWcIq8XGQe1TLtVbu7EV9gFIVSmfyarPg==} + '@vue/compiler-ssr@3.5.16': + resolution: {integrity: sha512-d2V7kfxbdsjrDSGlJE7my1ZzCXViEcqN6w14DOsDrUCHEA6vbnVCpRFfrc4ryCP/lCKzX2eS1YtnLE/BuC9f/A==} '@vue/compiler-vue2@2.7.16': resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} @@ -875,19 +858,19 @@ packages: typescript: optional: true - '@vue/reactivity@3.5.15': - resolution: {integrity: sha512-GaA5VUm30YWobCwpvcs9nvFKf27EdSLKDo2jA0IXzGS344oNpFNbEQ9z+Pp5ESDaxyS8FcH0vFN/XSe95BZtHQ==} + '@vue/reactivity@3.5.16': + resolution: {integrity: sha512-FG5Q5ee/kxhIm1p2bykPpPwqiUBV3kFySsHEQha5BJvjXdZTUfmya7wP7zC39dFuZAcf/PD5S4Lni55vGLMhvA==} - '@vue/runtime-core@3.5.15': - resolution: {integrity: sha512-CZAlIOQ93nj0OPpWWOx4+QDLCMzBNY85IQR4Voe6vIID149yF8g9WQaWnw042f/6JfvLttK7dnyWlC1EVCRK8Q==} + '@vue/runtime-core@3.5.16': + resolution: {integrity: sha512-bw5Ykq6+JFHYxrQa7Tjr+VSzw7Dj4ldR/udyBZbq73fCdJmyy5MPIFR9IX/M5Qs+TtTjuyUTCnmK3lWWwpAcFQ==} - '@vue/runtime-dom@3.5.15': - resolution: {integrity: sha512-wFplHKzKO/v998up2iCW3RN9TNUeDMhdBcNYZgs5LOokHntrB48dyuZHspcahKZczKKh3v6i164gapMPxBTKNw==} + '@vue/runtime-dom@3.5.16': + resolution: {integrity: sha512-T1qqYJsG2xMGhImRUV9y/RseB9d0eCYZQ4CWca9ztCuiPj/XWNNN+lkNBuzVbia5z4/cgxdL28NoQCvC0Xcfww==} - '@vue/server-renderer@3.5.15': - resolution: {integrity: sha512-Gehc693kVTYkLt6QSYEjGvqvdK2zZ/gf/D5zkgmvBdeB30dNnVZS8yY7+IlBmHRd1rR/zwaqeu06Ij04ZxBscg==} + '@vue/server-renderer@3.5.16': + resolution: {integrity: sha512-BrX0qLiv/WugguGsnQUJiYOE0Fe5mZTwi6b7X/ybGB0vfrPH9z0gD/Y6WOR1sGCgX4gc25L1RYS5eYQKDMoNIg==} peerDependencies: - vue: 3.5.15 + vue: 3.5.16 '@vue/shared@3.5.13': resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==} @@ -895,6 +878,9 @@ packages: '@vue/shared@3.5.15': resolution: {integrity: sha512-bKvgFJJL1ZX9KxMCTQY6xD9Dhe3nusd1OhyOb1cJYGqvAr0Vg8FIjHPMOEVbJ9GDT9HG+Bjdn4oS8ohKP8EvoA==} + '@vue/shared@3.5.16': + resolution: {integrity: sha512-c/0fWy3Jw6Z8L9FmTyYfkpM5zklnqqa9+a6dz3DvONRKW2NEbh46BP0FHuLFSWi2TnQEtp91Z6zOWNrU6QiyPg==} + '@vueuse/core@12.7.0': resolution: {integrity: sha512-jtK5B7YjZXmkGNHjviyGO4s3ZtEhbzSgrbX+s5o+Lr8i2nYqNyHuPVOeTdM1/hZ5Tkxg/KktAuAVDDiHMraMVA==} @@ -1085,8 +1071,8 @@ packages: picomatch: optional: true - feed@5.0.1: - resolution: {integrity: sha512-kOveKLHucVZ6RI91bdWAts9O0L1N2mGzRGVCDQPRnHh4HmgqLdN66Cp/5dMeJZGn/qnBslWliwX37FEBq8DCIA==} + feed@5.1.0: + resolution: {integrity: sha512-qGNhgYygnefSkAHHrNHqC7p3R8J0/xQDS/cYUud8er/qD9EFGWyCdUDfULHTJQN1d3H3WprzVwMc9MfB4J50Wg==} engines: {node: '>=20', pnpm: '>=10'} floating-vue@5.2.2: @@ -1489,10 +1475,6 @@ packages: resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==} engines: {node: '>=12.0.0'} - to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - trim-lines@3.0.1: resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} @@ -1615,8 +1597,8 @@ packages: yaml: optional: true - vitepress-plugin-group-icons@1.5.5: - resolution: {integrity: sha512-eVnBL3lVOYxByQg5xo44QZtGPv41JyxWI7YxuwrGcNUU+W8MMIjb9XlivBXb3W8CosFllJlLGiqNCBTnFZHFTA==} + vitepress-plugin-group-icons@1.6.0: + resolution: {integrity: sha512-+nxuVETpFkOYR5qHdvj3M5otWusJyS3ozEvVf1aQaE5Oz5e6NR0naYKTtH0Zf3Qss4vnhqaYt2Lq4jUTn9JVuA==} peerDependencies: markdown-it: '>=14' vite: '>=3' @@ -1638,8 +1620,8 @@ packages: peerDependencies: vue: ^3.0.0 - vue@3.5.15: - resolution: {integrity: sha512-aD9zK4rB43JAMK/5BmS4LdPiEp8Fdh8P1Ve/XNuMF5YRf78fCyPE6FUbQwcaWQ5oZ1R2CD9NKE0FFOVpMR7gEQ==} + vue@3.5.16: + resolution: {integrity: sha512-rjOV2ecxMd5SiAmof2xzh2WxntRcigkX/He4YFJ6WdRvVUrbt6DxC1Iujh10XLl8xCDRDtGKMeO3D+pRQ1PP9w==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -1778,28 +1760,14 @@ snapshots: '@antfu/utils@8.1.1': {} - '@babel/helper-string-parser@7.25.7': {} - '@babel/helper-string-parser@7.27.1': {} - '@babel/helper-validator-identifier@7.25.7': {} - '@babel/helper-validator-identifier@7.27.1': {} - '@babel/parser@7.25.7': - dependencies: - '@babel/types': 7.25.7 - '@babel/parser@7.27.2': dependencies: '@babel/types': 7.27.1 - '@babel/types@7.25.7': - dependencies: - '@babel/helper-string-parser': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 - to-fast-properties: 2.0.0 - '@babel/types@7.27.1': dependencies: '@babel/helper-string-parser': 7.27.1 @@ -2221,14 +2189,14 @@ snapshots: '@shikijs/vitepress-twoslash@2.5.0(typescript@5.4.5)': dependencies: '@shikijs/twoslash': 3.0.0(typescript@5.4.5) - floating-vue: 5.2.2(vue@3.5.15(typescript@5.4.5)) + floating-vue: 5.2.2(vue@3.5.16(typescript@5.4.5)) mdast-util-from-markdown: 2.0.2 mdast-util-gfm: 3.1.0 mdast-util-to-hast: 13.2.0 shiki: 2.5.0 twoslash: 0.2.12(typescript@5.4.5) twoslash-vue: 0.2.12(typescript@5.4.5) - vue: 3.5.15(typescript@5.4.5) + vue: 3.5.16(typescript@5.4.5) transitivePeerDependencies: - '@nuxt/kit' - supports-color @@ -2323,10 +2291,10 @@ snapshots: '@ungap/structured-clone@1.2.0': {} - '@vitejs/plugin-vue@5.2.1(vite@5.4.14(@types/node@20.12.12))(vue@3.5.15(typescript@5.4.5))': + '@vitejs/plugin-vue@5.2.1(vite@5.4.14(@types/node@20.12.12))(vue@3.5.16(typescript@5.4.5))': dependencies: vite: 5.4.14(@types/node@20.12.12) - vue: 3.5.15(typescript@5.4.5) + vue: 3.5.16(typescript@5.4.5) '@volar/language-core@2.4.1': dependencies: @@ -2334,48 +2302,48 @@ snapshots: '@volar/source-map@2.4.1': {} - '@vue/compiler-core@3.5.13': + '@vue/compiler-core@3.5.15': dependencies: - '@babel/parser': 7.25.7 - '@vue/shared': 3.5.13 + '@babel/parser': 7.27.2 + '@vue/shared': 3.5.15 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.1 - '@vue/compiler-core@3.5.15': + '@vue/compiler-core@3.5.16': dependencies: '@babel/parser': 7.27.2 - '@vue/shared': 3.5.15 + '@vue/shared': 3.5.16 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.1 - '@vue/compiler-dom@3.5.13': - dependencies: - '@vue/compiler-core': 3.5.13 - '@vue/shared': 3.5.13 - '@vue/compiler-dom@3.5.15': dependencies: '@vue/compiler-core': 3.5.15 '@vue/shared': 3.5.15 - '@vue/compiler-sfc@3.5.15': + '@vue/compiler-dom@3.5.16': + dependencies: + '@vue/compiler-core': 3.5.16 + '@vue/shared': 3.5.16 + + '@vue/compiler-sfc@3.5.16': dependencies: '@babel/parser': 7.27.2 - '@vue/compiler-core': 3.5.15 - '@vue/compiler-dom': 3.5.15 - '@vue/compiler-ssr': 3.5.15 - '@vue/shared': 3.5.15 + '@vue/compiler-core': 3.5.16 + '@vue/compiler-dom': 3.5.16 + '@vue/compiler-ssr': 3.5.16 + '@vue/shared': 3.5.16 estree-walker: 2.0.2 magic-string: 0.30.17 postcss: 8.5.3 source-map-js: 1.2.1 - '@vue/compiler-ssr@3.5.15': + '@vue/compiler-ssr@3.5.16': dependencies: - '@vue/compiler-dom': 3.5.15 - '@vue/shared': 3.5.15 + '@vue/compiler-dom': 3.5.16 + '@vue/shared': 3.5.16 '@vue/compiler-vue2@2.7.16': dependencies: @@ -2403,9 +2371,9 @@ snapshots: '@vue/language-core@2.1.6(typescript@5.4.5)': dependencies: '@volar/language-core': 2.4.1 - '@vue/compiler-dom': 3.5.13 + '@vue/compiler-dom': 3.5.15 '@vue/compiler-vue2': 2.7.16 - '@vue/shared': 3.5.13 + '@vue/shared': 3.5.15 computeds: 0.0.1 minimatch: 9.0.4 muggle-string: 0.4.1 @@ -2413,38 +2381,40 @@ snapshots: optionalDependencies: typescript: 5.4.5 - '@vue/reactivity@3.5.15': + '@vue/reactivity@3.5.16': dependencies: - '@vue/shared': 3.5.15 + '@vue/shared': 3.5.16 - '@vue/runtime-core@3.5.15': + '@vue/runtime-core@3.5.16': dependencies: - '@vue/reactivity': 3.5.15 - '@vue/shared': 3.5.15 + '@vue/reactivity': 3.5.16 + '@vue/shared': 3.5.16 - '@vue/runtime-dom@3.5.15': + '@vue/runtime-dom@3.5.16': dependencies: - '@vue/reactivity': 3.5.15 - '@vue/runtime-core': 3.5.15 - '@vue/shared': 3.5.15 + '@vue/reactivity': 3.5.16 + '@vue/runtime-core': 3.5.16 + '@vue/shared': 3.5.16 csstype: 3.1.3 - '@vue/server-renderer@3.5.15(vue@3.5.15(typescript@5.4.5))': + '@vue/server-renderer@3.5.16(vue@3.5.16(typescript@5.4.5))': dependencies: - '@vue/compiler-ssr': 3.5.15 - '@vue/shared': 3.5.15 - vue: 3.5.15(typescript@5.4.5) + '@vue/compiler-ssr': 3.5.16 + '@vue/shared': 3.5.16 + vue: 3.5.16(typescript@5.4.5) '@vue/shared@3.5.13': {} '@vue/shared@3.5.15': {} + '@vue/shared@3.5.16': {} + '@vueuse/core@12.7.0(typescript@5.4.5)': dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 12.7.0 '@vueuse/shared': 12.7.0(typescript@5.4.5) - vue: 3.5.15(typescript@5.4.5) + vue: 3.5.16(typescript@5.4.5) transitivePeerDependencies: - typescript @@ -2452,7 +2422,7 @@ snapshots: dependencies: '@vueuse/core': 12.7.0(typescript@5.4.5) '@vueuse/shared': 12.7.0(typescript@5.4.5) - vue: 3.5.15(typescript@5.4.5) + vue: 3.5.16(typescript@5.4.5) optionalDependencies: focus-trap: 7.6.4 transitivePeerDependencies: @@ -2462,7 +2432,7 @@ snapshots: '@vueuse/shared@12.7.0(typescript@5.4.5)': dependencies: - vue: 3.5.15(typescript@5.4.5) + vue: 3.5.16(typescript@5.4.5) transitivePeerDependencies: - typescript @@ -2639,15 +2609,15 @@ snapshots: optionalDependencies: picomatch: 4.0.2 - feed@5.0.1: + feed@5.1.0: dependencies: xml-js: 1.6.11 - floating-vue@5.2.2(vue@3.5.15(typescript@5.4.5)): + floating-vue@5.2.2(vue@3.5.16(typescript@5.4.5)): dependencies: '@floating-ui/dom': 1.1.1 - vue: 3.5.15(typescript@5.4.5) - vue-resize: 2.0.0-alpha.1(vue@3.5.15(typescript@5.4.5)) + vue: 3.5.16(typescript@5.4.5) + vue-resize: 2.0.0-alpha.1(vue@3.5.16(typescript@5.4.5)) focus-trap@7.6.4: dependencies: @@ -3213,8 +3183,6 @@ snapshots: fdir: 6.4.3(picomatch@4.0.2) picomatch: 4.0.2 - to-fast-properties@2.0.0: {} - trim-lines@3.0.1: {} twoslash-protocol@0.2.12: {} @@ -3298,7 +3266,7 @@ snapshots: '@types/node': 20.12.12 fsevents: 2.3.3 - vitepress-plugin-group-icons@1.5.5(markdown-it@14.1.0)(vite@6.3.0-beta.0(@types/node@20.12.12)): + vitepress-plugin-group-icons@1.6.0(markdown-it@14.1.0)(vite@6.3.0-beta.0(@types/node@20.12.12)): dependencies: '@iconify-json/logos': 1.2.4 '@iconify-json/vscode-icons': 1.2.19 @@ -3317,7 +3285,7 @@ snapshots: '@shikijs/transformers': 2.5.0 '@shikijs/types': 2.3.0 '@types/markdown-it': 14.1.2 - '@vitejs/plugin-vue': 5.2.1(vite@5.4.14(@types/node@20.12.12))(vue@3.5.15(typescript@5.4.5)) + '@vitejs/plugin-vue': 5.2.1(vite@5.4.14(@types/node@20.12.12))(vue@3.5.16(typescript@5.4.5)) '@vue/devtools-api': 7.7.1 '@vue/shared': 3.5.13 '@vueuse/core': 12.7.0(typescript@5.4.5) @@ -3327,7 +3295,7 @@ snapshots: minisearch: 7.1.1 shiki: 2.3.0 vite: 5.4.14(@types/node@20.12.12) - vue: 3.5.15(typescript@5.4.5) + vue: 3.5.16(typescript@5.4.5) optionalDependencies: postcss: 8.5.3 transitivePeerDependencies: @@ -3357,17 +3325,17 @@ snapshots: - typescript - universal-cookie - vue-resize@2.0.0-alpha.1(vue@3.5.15(typescript@5.4.5)): + vue-resize@2.0.0-alpha.1(vue@3.5.16(typescript@5.4.5)): dependencies: - vue: 3.5.15(typescript@5.4.5) + vue: 3.5.16(typescript@5.4.5) - vue@3.5.15(typescript@5.4.5): + vue@3.5.16(typescript@5.4.5): dependencies: - '@vue/compiler-dom': 3.5.15 - '@vue/compiler-sfc': 3.5.15 - '@vue/runtime-dom': 3.5.15 - '@vue/server-renderer': 3.5.15(vue@3.5.15(typescript@5.4.5)) - '@vue/shared': 3.5.15 + '@vue/compiler-dom': 3.5.16 + '@vue/compiler-sfc': 3.5.16 + '@vue/runtime-dom': 3.5.16 + '@vue/server-renderer': 3.5.16(vue@3.5.16(typescript@5.4.5)) + '@vue/shared': 3.5.16 optionalDependencies: typescript: 5.4.5