Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@
"@nuxt/eslint-config": "^1.17.0",
"@nuxt/nitro-server": "^4.5.2",
"@nuxt/test-utils": "^4.3.2",
"@types/node": "^24.13.5",
"@types/node": "^24.13.6",
"@vitest/coverage-v8": "^4.1.11",
"ansivision": "^0.4.0",
"changelogen": "^0.6.2",
"eslint": "^10.10.0",
"eslint": "^10.11.0",
"exsolve": "^1.1.1",
"fast-check": "^4.10.1",
"knip": "^6.35.1",
"fast-check": "^4.10.2",
"knip": "^6.37.0",
"nf3": "^0.3.24",
"nuxt": "^4.5.2",
"pkg-pr-new": "^0.0.88",
Expand All @@ -60,7 +60,7 @@
"unplugin-purge-polyfills": "^0.1.0",
"uqr": "^0.1.3",
"vitest": "^4.1.11",
"vue": "^3.5.42",
"vue": "^3.5.43",
"vue-router": "^5.3.1"
}
}
2 changes: 1 addition & 1 deletion packages/create-nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"devDependencies": {
"@bomb.sh/tab": "^0.0.22",
"@clack/prompts": "^1.8.1",
"@types/node": "^24.13.5",
"@types/node": "^24.13.6",
"citty": "^0.2.2",
"giget": "^3.3.1",
"nypm": "^0.6.10",
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
}
},
"devDependencies": {
"@types/node": "^24.13.5",
"@types/node": "^24.13.6",
"citty": "^0.2.2",
"jiti": "^2.7.0",
"std-env": "^4.2.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/nuxt-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@
"tinyclip": "^1.0.3",
"tinyexec": "^1.3.1",
"uqr": "^0.1.3",
"verkit": "^0.4.0"
"verkit": "^0.5.0"
},
"devDependencies": {
"@bomb.sh/tab": "^0.0.22",
"@nuxt/kit": "^4.5.2",
"@nuxt/schema": "^4.5.2",
"@nuxt/test-utils": "^4.3.2",
"@speed-highlight/core": "^2.1.0",
"@types/node": "^24.13.5",
"@types/node": "^24.13.6",
"citty": "^0.2.2",
"giget": "^3.3.1",
"h3": "^1.15.11",
Expand All @@ -102,7 +102,7 @@
"nitropack": "^2.13.4",
"nypm": "^0.6.10",
"rolldown": "^1.2.8",
"rollup": "^4.63.3",
"rollup": "^4.63.4",
"tsdown": "^0.23.0",
"typescript": "^6.0.3",
"undici": "^8.10.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/nuxt-cli/src/utils/update-check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { styleText } from 'node:util'

import { readUser, updateUser } from 'rc9'
import { isCI, isTest, provider } from 'std-env'
import { isGreater, tryParse } from 'verkit'
import { isGreaterThan, tryParse } from 'verkit'

import { fetchJson } from './fetch'
import { debug, writeNotice } from './logger'
Expand Down Expand Up @@ -124,7 +124,7 @@ export async function checkForUpdate(name: string, current: string | undefined):
return undefined
}

if (!isGreater(latest, current)) {
if (!isGreaterThan(latest, current)) {
return undefined
}

Expand Down
2 changes: 1 addition & 1 deletion playground-nightly/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"dependencies": {
"nuxt": "npm:nuxt-nightly@5.0.0-29825840.b6182049",
"vue": "^3.5.42",
"vue": "^3.5.43",
"vue-router": "^5.3.1"
},
"devDependencies": {
Expand Down
1,782 changes: 894 additions & 888 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ overrides:
'@nuxt/schema@^4': 4.5.2
create-nuxt: workspace:*
create-nuxt-app: workspace:*
eslint-plugin-jsdoc: 64.5.1
eslint-plugin-jsdoc: 64.5.4
eslint-plugin-unicorn: 76.0.0
# scoped by range: nitro v3 in `playground-nightly` needs h3 v2
h3@^1: ^1.15.11
Expand Down
Loading