Skip to content
Open
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
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"play": "pnpm run -r play",
"build:size": "pnpm run -r build:size",
"lint": "oxfmt --check",
"fmt": "oxfmt",
"lint:fix": "oxfmt",
"test": "pnpm run -r test",
"postinstall": "simple-git-hooks"
Expand Down Expand Up @@ -63,7 +64,10 @@
"pnpm": {
"overrides": {
"@types/node": "^24.10.4",
"vite": "^7.3.0"
"vite": "^7.3.0",
"vue": "https://pkg.pr.new/vue@d3fca3b",
"@vue/runtime-dom": "https://pkg.pr.new/@vue/runtime-dom@d3fca3b",
"@vue/server-renderer": "https://pkg.pr.new/@vue/server-renderer@d3fca3b"
Comment on lines +68 to +70
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🌐 Web query:

latest Vue 3.6 version npm registry

💡 Result:

Latest Vue 3.6.x published on the npm registry (prerelease) is 3.6.0-beta.5, published Jan 30, 2026. [1]


🏁 Script executed:

# Check if this is a known temporary state and find any related context
cd /dev/null
# First, let's look at the full package.json to understand the broader context
head -100 package.json

Repository: vuejs/router

Length of output: 2732


Replace pkg.pr.new URLs with proper npm version specifiers before merging.

These pkg.pr.new URLs are appropriate for WIP testing against unreleased Vue 3.6 features, but should not be included in production branches. Vue 3.6.0-beta.5 is now available on npm (published Jan 30, 2026) and can be used instead of the commit-pinned URLs (d3fca3b), or remove these overrides entirely once Vue 3.6 reaches stable release.

🤖 Prompt for AI Agents
In `@package.json` around lines 68 - 70, The package entries for "vue",
"@vue/runtime-dom", and "@vue/server-renderer" currently point to pkg.pr.new
commit URLs; replace those URL overrides with proper npm version specifiers (for
example "3.6.0-beta.5") or remove the overrides entirely so package.json uses
standard npm versions; update the three keys ("vue", "@vue/runtime-dom",
"@vue/server-renderer") to the chosen semver strings and run npm install / yarn
install to verify dependency resolution.

},
"peerDependencyRules": {
"ignoreMissing": [
Expand Down
8 changes: 3 additions & 5 deletions packages/experiments-playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,16 @@
"build-only": "vite build",
"type-check": "vue-tsc --build"
},
"dependencies": {
"vue": "3.6.0-beta.2",
"vue-router": "workspace:*"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@types/node": "^24.10.4",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/tsconfig": "^0.8.1",
"typescript": "~5.9.3",
"vite": "^7.3.0",
"vite-plugin-vue-devtools": "^8.0.5",
"vite-plugin-vue-devtools": "^8.0.6",
"vue": "https://pkg.pr.new/vue@d3fca3b",
"vue-router": "workspace:*",
"vue-tsc": "^3.2.4"
}
}
4 changes: 2 additions & 2 deletions packages/playground-file-based/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"preview": "vite preview --port 4173"
},
"dependencies": {
"vue": "^3.6.0-beta.2",
"vue": "https://pkg.pr.new/vue@d3fca3b",
"vue-router": "workspace:*"
},
"devDependencies": {
Expand All @@ -20,7 +20,7 @@
"auto-scaffold": "^0.2.0",
"unplugin-auto-import": "^21.0.0",
"vite": "^7.3.0",
"vite-plugin-vue-devtools": "^8.0.5",
"vite-plugin-vue-devtools": "^8.0.6",
"vue-tsc": "^3.2.4"
}
}
4 changes: 1 addition & 3 deletions packages/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,13 @@
"types": "vue-tsc --noEmit",
"preview": "vite preview --port 4173"
},
"dependencies": {
"vue": "3.6.0-beta.2"
},
"devDependencies": {
"@types/node": "^24.10.4",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/compiler-sfc": "~3.5.26",
"@vue/tsconfig": "^0.8.1",
"vite": "^7.3.0",
"vue": "https://pkg.pr.new/vue@d3fca3b",
"vue-router": "workspace:*",
"vue-tsc": "^3.2.4"
}
Expand Down
Loading