Check dependencies version
Hi
I am new to Deno.
I mostly work in highly regulated industries, so part of my development and maintenance workflow is to frequently and automatically check if any dependencies are out of date.
Are there any ways to check if any dependency is out of date?
7 Replies
Deno
deno outdated
Check for outdated dependencies in your project and safely update them with an interactive CLI
It didn't do anything

Hono is now 4.7.5 https://jsr.io/@hono/hono
FYI
// import_map.json
// deno.jsonc

Technically, what I'm looking for is something similar to:
npm install -g npm-check-updates && ncu -u && npm i
That looks like a bug. I've filed an issue for that https://github.com/denoland/deno/issues/28631 . It should work the same way as
npm-check-udpates
GitHub
Bug:
deno outdated
not working with JSR · Issue #28631 · denola...Running deno outdated or deno outdated --latest does nothing. It doesn't find newer versions. Steps to reproduce Create a deno.json with these contents: { "imports": { "@hono/hon...
Awesome, thank you so much!