-
Notifications
You must be signed in to change notification settings - Fork 8
fix(deps): update all non-major dependencies #244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| "name": "coscup-2026", | ||
| "type": "module", | ||
| "private": true, | ||
| "packageManager": "pnpm@11.9.0", | ||
| "packageManager": "pnpm@11.17.0", | ||
| "engines": { | ||
| "node": ">=24.0.0" | ||
| }, | ||
|
|
@@ -15,37 +15,37 @@ | |
| "typecheck": "nuxt typecheck" | ||
| }, | ||
| "dependencies": { | ||
| "@nuxt/content": "3.14.0", | ||
| "@nuxt/content": "3.15.2", | ||
| "@nuxt/eslint": "1.16.0", | ||
| "@nuxt/icon": "2.2.4", | ||
| "@nuxt/icon": "2.3.1", | ||
| "@nuxt/image": "2.0.0", | ||
| "@nuxtjs/i18n": "10.4.0", | ||
| "@nuxtjs/mdc": "0.22.0", | ||
| "@nuxtjs/i18n": "10.5.0", | ||
| "@nuxtjs/mdc": "0.22.2", | ||
| "@vueuse/core": "14.3.0", | ||
| "csv-parse": "7.0.0", | ||
| "eslint": "10.6.0", | ||
| "csv-parse": "7.0.1", | ||
| "eslint": "10.8.0", | ||
| "leaflet": "1.9.4", | ||
| "nuxt": "4.4.8", | ||
| "nuxt": "4.5.0", | ||
| "nuxt-gtag": "4.1.0", | ||
| "ufo": "1.6.4", | ||
| "vue": "3.5.39", | ||
| "vue-router": "5.1.0", | ||
| "vue": "3.5.40", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
With this bump the app's direct Useful? React with 👍 / 👎. |
||
| "vue-router": "5.2.0", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
With this dependency set under pnpm, the root app/Nuxt now resolves Useful? React with 👍 / 👎. |
||
| "zod": "4.4.3" | ||
| }, | ||
| "devDependencies": { | ||
| "@antfu/eslint-config": "9.1.0", | ||
| "@iconify-json/tabler": "1.2.35", | ||
| "@antfu/eslint-config": "9.2.0", | ||
| "@iconify-json/tabler": "1.2.37", | ||
| "@types/geojson": "7946.0.16", | ||
| "@types/leaflet": "1.9.21", | ||
| "@unocss/eslint-plugin": "66.7.3", | ||
| "@unocss/extractor-mdc": "66.7.3", | ||
| "@unocss/nuxt": "66.7.3", | ||
| "@unocss/preset-wind4": "66.7.3", | ||
| "@unocss/transformer-directives": "66.7.3", | ||
| "@unocss/eslint-plugin": "66.7.5", | ||
| "@unocss/extractor-mdc": "66.7.5", | ||
| "@unocss/nuxt": "66.7.5", | ||
| "@unocss/preset-wind4": "66.7.5", | ||
| "@unocss/transformer-directives": "66.7.5", | ||
| "eslint-plugin-format": "2.0.1", | ||
| "typescript": "6.0.3", | ||
| "unocss": "66.7.3", | ||
| "unocss": "66.7.5", | ||
| "unocss-preset-theme": "0.14.1", | ||
| "vue-tsc": "3.3.5" | ||
| "vue-tsc": "3.3.8" | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Nuxt 4.5.0 bump pulls build/runtime packages that no longer support the whole
>=24.0.0range: the updated lockfile records@nuxt/nitro-server@4.5.0requiring^22.19.0 || ^24.11.0 || >=26.0.0and@nuxt/vite-builder@4.5.0requiring^22.18.0 || ^24.11.0 || >=26.0.0(pnpm-lock.yamllines 1270-1299). On a workstation or self-hosted runner pinned to Node 24.0–24.10, which this repo still advertises as supported, installs with engine checks ornuxt generatecan run against an unsupported Node version; updateengines.node/CI to the Nuxt 4.5 floor or avoid this bump.Useful? React with 👍 / 👎.