Provide a Command to Upgrade Dependencies Similar to pnpm update #26211
etienne-dldc
started this conversation in
Ideas
Replies: 1 comment
-
FYI I started working on a prototype for that before Deno 2, but was not able to finish it. I got |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
pnpm offers a
pnpm update
command that allows users to automatically upgrade dependencies. This functionality is something I rely on heavily, and it’s currently one of the main reasons I haven’t fully switched to using Deno 2 over Node/PNPM.Details on the pnpm Command
Deno Ecosystem
There are a few community projects that attempt to address this issue:
The challenge with these user-land solutions is that they often lag behind changes in the Deno ecosystem. For example, after the introduction of JSR support, it took time for these tools to adapt. I’m facing a similar issue now with @molt/cli, which does not yet understand version 4 of the lockfile format.
Minimal Expected Functionality
At a minimum, I would expect the ability to list outdated dependencies, updating in place could come later...
Beta Was this translation helpful? Give feedback.
All reactions