-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): update package dependencies #36
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
Changes from 1 commit
6abb890
9b333c2
47dbdcb
b4e9fdb
dc2c118
f7c6839
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 |
|---|---|---|
|
|
@@ -92,26 +92,26 @@ | |
| } | ||
| }, | ||
| "dependencies": { | ||
| "@clack/prompts": "^1.0.0", | ||
| "cac": "^6.7.14", | ||
| "cli-truncate": "^4.0.0", | ||
| "@clack/prompts": "^1.2.0", | ||
| "cac": "^7.0.0", | ||
| "cli-truncate": "^6.0.0", | ||
| "execa": "^9.6.1", | ||
| "fast-glob": "^3.3.2", | ||
| "log-update": "^7.0.2", | ||
| "fast-glob": "^3.3.3", | ||
| "log-update": "^8.0.0", | ||
|
||
| "picocolors": "^1.1.1", | ||
| "picomatch": "^4.0.4", | ||
| "zod": "^4.3.6" | ||
| }, | ||
| "devDependencies": { | ||
| "@biomejs/biome": "^2.3.14", | ||
| "@size-limit/file": "^12.0.0", | ||
| "@types/node": "^25.2.0", | ||
| "bumpp": "^10.3.2", | ||
| "c8": "^10.1.3", | ||
| "jiti": "^2.5.1", | ||
| "lint-staged": "^16.2.7", | ||
| "@biomejs/biome": "^2.4.11", | ||
| "@size-limit/file": "^12.0.1", | ||
| "@types/node": "^25.6.0", | ||
| "bumpp": "^11.0.1", | ||
| "c8": "^11.0.0", | ||
| "jiti": "^2.6.1", | ||
| "lint-staged": "^16.4.0", | ||
| "simple-git-hooks": "^2.13.1", | ||
| "size-limit": "^12.0.0", | ||
| "size-limit": "^12.0.1", | ||
| "tinybench": "^6.0.0", | ||
| "ts-complex": "^1.0.0", | ||
| "typescript": "^5.9.3", | ||
|
|
||
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.
These runtime dependency bumps effectively drop compatibility below the package's declared
engines.nodefloor:pnpm-lock.yamlnow resolvescac@7.0.0withnode >=20.19.0and bothcli-truncate@6.0.0andlog-update@8.0.0withnode >=22, whilepackage.jsonstill claims>=18. In environments that rely on the advertised engine range (for example Node 18/20 users installing the CLI), this can cause install or runtime failures when argument parsing/output code imports these packages, so the dependency versions or declared engine range need to be aligned.Useful? React with 👍 / 👎.