chore(deps): update dependencies and refresh pnpm-lock - #210
Conversation
Run pnpm update across the workspace to refresh transitive dependencies within existing semver ranges. Reduces known vulnerabilities reported by pnpm audit from 34 to 5 (the remaining are deep transitive deps in example apps without in-range fixes). Build succeeds and all 59 tests pass.
✅ Deploy Preview for locale-router-advanced ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for component-scoped-csr ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for fallback-locale ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for component-scoped-ssr ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for preprocess-example ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for locale-param ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for one-page-example ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for single-load ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for loaders-example ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for parser-default ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for locale-router-static ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for parser-icu ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for multi-page-example ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
What
Refreshes dependencies across the workspace via
pnpm update -r, updatingpnpm-lock.yamland bumping the^/~minimums in the root and all 14 examplepackage.jsonfiles to the installed in-range versions.Why
Reduces known vulnerabilities reported by
pnpm auditfrom 34 → 5. The 5 remaining are deep transitive dependencies in the example apps that have no fix available within the current semver ranges (would require major bumps of@sveltejs/kitchains, out of scope here).All updates stay within the existing semver ranges declared in the manifests — no intentional major-version jumps.
How
Testing
pnpm install --frozen-lockfileclean from master before changespnpm run buildsucceeds (tsup, CJS + ESM + DTS)pnpm test— all 59 tests passpnpm audit: 34 → 5 vulnerabilitiesNotes
Per request the scope is the lockfile refresh; the accompanying
package.jsonrange-minimum bumps are the standard side effect ofpnpm updateand keep manifests consistent with the lockfile.Generated by Claude Code