-
Notifications
You must be signed in to change notification settings - Fork 9
chore(deps): update dependency typescript to v7 #291
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.18.0", | ||
| "engines": { | ||
| "node": ">=24.0.0" | ||
| }, | ||
|
|
@@ -15,44 +15,44 @@ | |
| "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/image": "2.0.0", | ||
| "@nuxtjs/i18n": "10.4.0", | ||
| "@nuxtjs/mdc": "0.22.0", | ||
| "@nuxt/icon": "2.4.1", | ||
| "@nuxt/image": "2.1.0", | ||
| "@nuxtjs/i18n": "10.6.0", | ||
| "@nuxtjs/mdc": "0.22.2", | ||
| "@resvg/resvg-js": "2.6.2", | ||
| "@vueuse/core": "14.3.0", | ||
| "csv-parse": "7.0.0", | ||
| "eslint": "10.6.0", | ||
| "@vueuse/core": "14.4.0", | ||
| "csv-parse": "7.0.1", | ||
| "eslint": "10.8.0", | ||
| "leaflet": "1.9.4", | ||
| "nuxt": "4.4.8", | ||
| "nuxt": "4.5.1", | ||
| "nuxt-gtag": "4.1.0", | ||
| "satori": "0.26.0", | ||
| "satori": "0.29.0", | ||
| "ufo": "1.6.4", | ||
| "vue": "3.5.39", | ||
| "vue-router": "5.1.0", | ||
| "vue": "3.5.40", | ||
| "vue-router": "5.2.0", | ||
| "zod": "4.4.3" | ||
| }, | ||
| "devDependencies": { | ||
| "@antfu/eslint-config": "9.1.0", | ||
| "@antfu/eslint-config": "9.2.0", | ||
| "@iconify-json/noto": "1.2.7", | ||
| "@iconify-json/tabler": "1.2.35", | ||
| "@iconify-json/tabler": "1.2.38", | ||
| "@nuxt/fonts": "0.14.0", | ||
| "@takumi-rs/core": "1.7.0", | ||
| "@takumi-rs/core": "1.8.7", | ||
| "@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", | ||
| "cross-env": "10.1.0", | ||
| "eslint-plugin-format": "2.0.1", | ||
| "nuxt-og-image": "6.5.2", | ||
| "typescript": "6.0.3", | ||
| "unocss": "66.7.3", | ||
| "nuxt-og-image": "6.7.5", | ||
| "typescript": "7.0.2", | ||
|
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.
This affects the Useful? React with πΒ / π. |
||
| "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.
This project runs
pnpm lintin both CI and deploy workflows, and the lockfile resolves the Nuxt/Antfu ESLint stack through@typescript-eslint8.61/8.62 packages that still declaretypescript: '>=4.8.4 <6.1.0'(for examplepnpm-lock.yaml:2947,2955, and2962-2976). Bumping only TypeScript to 7.0.2 puts those TypeScript-aware lint rules on an unsupported compiler API, so TS/Vue linting can warn, fail, or mis-parse code until the ESLint/@typescript-eslint/Nuxt ESLint dependencies are upgraded to versions that support TS 7.Useful? React with πΒ / π.