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
2 changes: 1 addition & 1 deletion .github/workflows/agent-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: AgentScan
id: agentscan
uses: MatteoGabriele/agentscan-action@e02ef270c024bfad3541b2a71619c3c9f20b3312 # v2.2.0
uses: MatteoGabriele/agentscan-action@cf7615ba9f4fa86beab3323bc84b803ab430f8dc # v2.3.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
mode: silent
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nuxi-workspace",
"type": "module",
"private": true,
"packageManager": "pnpm@11.21.0",
"packageManager": "pnpm@11.22.0",
"description": "⚡️ Nuxt Generation CLI Experience",
"license": "MIT",
"repository": "nuxt/cli",
Expand All @@ -27,23 +27,23 @@
"@nuxt/nitro-server": "^4.5.2",
"@nuxt/test-utils": "^4.1.0",
"@types/node": "^24.13.3",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/coverage-v8": "^4.1.11",
"ansivision": "^0.4.0",
"changelogen": "^0.6.2",
"eslint": "^10.8.1",
"exsolve": "^1.1.1",
"knip": "^6.32.0",
"knip": "^6.32.2",
"nf3": "^0.3.23",
"nuxt": "^4.5.2",
"pkg-pr-new": "^0.0.87",
"pkg-pr-new": "^0.0.88",
"rolldown": "^1.2.4",
"rollup-plugin-visualizer": "^7.0.1",
"rollup-plugin-visualizer": "^7.1.1",
"std-env": "^4.2.0",
"tinyexec": "^1.3.0",
"tsdown": "^0.22.14",
"typescript": "^6.0.3",
"unplugin-purge-polyfills": "^0.1.0",
"vitest": "^4.1.10",
"vitest": "^4.1.11",
"vue": "^3.5.41",
"vue-router": "^5.2.0"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/nuxi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"test:dist": "node ./bin/nuxi.mjs info ../../playground && node --experimental-strip-types ../../scripts/check-dist.ts"
},
"peerDependencies": {
"@nuxt/cli": ">=3.37.0",
"jiti": "^2.7.0"
"@nuxt/cli": ">=3.26.0",
"jiti": "^2.3.0"
},
"peerDependenciesMeta": {
"@nuxt/cli": {
Expand Down
14 changes: 7 additions & 7 deletions packages/nuxt-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
},
"peerDependencies": {
"@nuxt/docs": "^4.0.0",
"@nuxt/schema": "^4.5.2",
"jiti": "^2.7.0",
"oxc-parser": ">=0.143.0",
"@nuxt/schema": "^3.0.0 || ^4.0.0",
"jiti": "^2.3.0",
"oxc-parser": ">=0.56.3",
"rolldown": "^1.0.0-rc.16 || ^1.0.0",
"serve": "^14.2.6"
"serve": "^14.0.0"
},
"peerDependenciesMeta": {
"@nuxt/docs": {
Expand Down Expand Up @@ -69,7 +69,7 @@
"consola": "^3.4.2",
"defu": "^6.1.7",
"exsolve": "^1.1.1",
"fuzzysort": "^4.0.1",
"fuzzysort": "^4.0.2",
"get-port-please": "^3.2.0",
"obug": "^2.1.4",
"pathe": "^2.0.3",
Expand All @@ -82,7 +82,7 @@
"tinyclip": "^1.0.1",
"tinyexec": "^1.3.0",
"uqr": "^0.1.3",
"verkit": "^0.3.2"
"verkit": "^0.4.0"
},
"devDependencies": {
"@bomb.sh/tab": "^0.0.22",
Expand All @@ -103,7 +103,7 @@
"tsdown": "^0.22.14",
"typescript": "^6.0.3",
"undici": "^8.10.0",
"vitest": "^4.1.10",
"vitest": "^4.1.11",
"youch": "^4.1.1",
"youch-core": "^0.3.3"
}
Expand Down
5 changes: 3 additions & 2 deletions packages/nuxt-cli/src/utils/versions.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { readPackageJSON } from 'pkg-types'
import { coerce, findMaxSatisfying } from 'verkit'
import { coerce, findMaxSatisfying, normalize } from 'verkit'

import { resolveCatalogEntry } from './catalog'
import { fetchJson } from './fetch'
Expand Down Expand Up @@ -29,7 +29,8 @@ export async function getNuxtVersion(cwd: string) {
const pkg = await readPackageJSON(cwd)
const pkgDep = resolveCatalogEntry(cwd, pkg, 'nuxt')?.specifier
?? (pkg?.dependencies?.nuxt || pkg?.devDependencies?.nuxt)
return (pkgDep && coerce(pkgDep)) || DEFAULT_NUXT_VERSION
const coerced = pkgDep && coerce(pkgDep)
return (coerced && normalize(coerced)) || DEFAULT_NUXT_VERSION
}

/**
Expand Down
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"devDependencies": {
"@nuxt/test-utils": "^4.1.0",
"typescript": "^6.0.3",
"vue-tsc": "^3.3.9"
"vue-tsc": "^3.3.10"
}
}
814 changes: 418 additions & 396 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 @@ -19,7 +19,7 @@ overrides:
'@nuxt/schema': 4.5.2
create-nuxt: workspace:*
create-nuxt-app: workspace:*
eslint-plugin-jsdoc: 64.0.2
eslint-plugin-jsdoc: 64.2.1
eslint-plugin-unicorn: 73.0.0
h3: ^1.15.11
httpxy: 0.5.5
Expand Down
4 changes: 4 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
"dependencyDashboardApproval": true,
"description": "Pinned in .github/workflows/ci.yml; 2.7.5+ regress nuxi dev server / ws tests. Surface bumps as their own PR for manual approval."
},
{
"matchDepTypes": ["peerDependencies"],
"rangeStrategy": "widen"
},
{
"matchPackageNames": ["rolldown", "@rolldown/**"],
"groupName": "rolldown",
Expand Down
Loading