bump deps

This commit is contained in:
Gauthier Roebroeck 2025-07-10 16:07:57 +08:00
parent 8aea0a999b
commit 4b534fb1ca
3 changed files with 512 additions and 496 deletions

File diff suppressed because it is too large Load diff

View file

@ -30,62 +30,62 @@
"dependencies": {
"@pinia/colada": "^0.17.1",
"@pinia/colada-plugin-auto-refetch": "^0.2.0",
"@vueuse/core": "^13.4.0",
"core-js": "^3.43.0",
"marked": "^15.0.12",
"@vueuse/core": "^13.5.0",
"core-js": "^3.44.0",
"marked": "^16.0.0",
"openapi-fetch": "^0.14.0",
"pinia": "^3.0.3",
"pinia-plugin-persistedstate": "^4.3.0",
"pinia-plugin-persistedstate": "^4.4.1",
"vue": "^3.5.17",
"vue-intl": "^6.5.25",
"vuetify": "^3.8.11"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.1",
"@eslint/js": "^9.29.0",
"@eslint/js": "^9.30.1",
"@formatjs/cli": "^6.7.2",
"@iconify-json/mdi": "^1.2.3",
"@storybook/addon-a11y": "^9.0.13",
"@storybook/addon-docs": "^9.0.13",
"@storybook/addon-themes": "^9.0.13",
"@storybook/addon-vitest": "^9.0.13",
"@storybook/vue3-vite": "^9.0.13",
"@storybook/addon-a11y": "^9.0.16",
"@storybook/addon-docs": "^9.0.16",
"@storybook/addon-themes": "^9.0.16",
"@storybook/addon-vitest": "^9.0.16",
"@storybook/vue3-vite": "^9.0.16",
"@testing-library/vue": "^8.1.0",
"@tsconfig/node22": "^22.0.2",
"@types/node": "^24.0.4",
"@unocss/preset-icons": "^66.3.1",
"@types/node": "^24.0.12",
"@unocss/preset-icons": "^66.3.3",
"@vitejs/plugin-vue": "^5.2.4",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.1",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.7.0",
"chromatic": "^13.0.1",
"eslint": "^9.29.0",
"chromatic": "^13.1.2",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-formatjs": "^5.4.0",
"eslint-plugin-storybook": "^9.0.13",
"eslint-plugin-vue": "^10.2.0",
"eslint-plugin-storybook": "^9.0.16",
"eslint-plugin-vue": "^10.3.0",
"happy-dom": "^18.0.1",
"msw": "^2.10.2",
"msw": "^2.10.3",
"msw-storybook-addon": "^2.0.5",
"npm-run-all2": "^8.0.4",
"openapi-msw": "^1.2.0",
"openapi-typescript": "^7.8.0",
"playwright": "^1.53.1",
"prettier": "^3.6.0",
"playwright": "^1.53.2",
"prettier": "^3.6.2",
"sass": "^1.89.2",
"sass-embedded": "^1.89.2",
"storybook": "^9.0.13",
"storybook": "^9.0.16",
"typescript": "^5.8.3",
"unocss": "^66.3.1",
"unocss": "^66.3.3",
"unplugin-auto-import": "^19.3.0",
"unplugin-fonts": "^1.1.1",
"unplugin-vue-components": "^28.7.0",
"unplugin-vue-router": "^0.12.0",
"unplugin-vue-components": "^28.8.0",
"unplugin-vue-router": "^0.14.0",
"vite": "^6.3.5",
"vite-plugin-dir2json": "^1.3.0",
"vite-plugin-vue-layouts-next": "^0.1.5",
"vite-plugin-vue-layouts-next": "^1.0.0",
"vite-plugin-vuetify": "^2.0.3",
"vitest": "^3.2.4",
"vue-router": "^4.4.0",

View file

@ -7,7 +7,7 @@
* - Please do NOT modify this file.
*/
const PACKAGE_VERSION = '2.10.2'
const PACKAGE_VERSION = '2.10.3'
const INTEGRITY_CHECKSUM = 'f5825c521429caf22a4dd13b66e243af'
const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
const activeClientIds = new Set()
@ -101,7 +101,10 @@ addEventListener('fetch', function (event) {
// Opening the DevTools triggers the "only-if-cached" request
// that cannot be handled by the worker. Bypass such requests.
if (event.request.cache === 'only-if-cached' && event.request.mode !== 'same-origin') {
if (
event.request.cache === 'only-if-cached' &&
event.request.mode !== 'same-origin'
) {
return
}
@ -217,7 +220,9 @@ async function getResponse(event, client, requestId) {
const acceptHeader = headers.get('accept')
if (acceptHeader) {
const values = acceptHeader.split(',').map((value) => value.trim())
const filteredValues = values.filter((value) => value !== 'msw/passthrough')
const filteredValues = values.filter(
(value) => value !== 'msw/passthrough',
)
if (filteredValues.length > 0) {
headers.set('accept', filteredValues.join(', '))
@ -287,7 +292,10 @@ function sendToClient(client, message, transferrables = []) {
resolve(event.data)
}
client.postMessage(message, [channel.port2, ...transferrables.filter(Boolean)])
client.postMessage(message, [
channel.port2,
...transferrables.filter(Boolean),
])
})
}