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
marvinh.
marvinh.2w ago
Deno
deno outdated
Check for outdated dependencies in your project and safely update them with an interactive CLI
Martin Carlsson
Martin CarlssonOP2w ago
It didn't do anything
No description
Martin Carlsson
Martin CarlssonOP2w ago
Hono is now 4.7.5 https://jsr.io/@hono/hono
Martin Carlsson
Martin CarlssonOP2w ago
FYI // import_map.json
{
"imports": {
"@hono/hono": "jsr:@hono/hono@^3.0.0",
"@/": "./src/"
}
}
{
"imports": {
"@hono/hono": "jsr:@hono/hono@^3.0.0",
"@/": "./src/"
}
}
// deno.jsonc
// deno.jsonc
{
"importMap": "./import_map.json",
"compilerOptions": {
"lib": ["dom", "deno.ns"]
},
"tasks": {
"start": "deno serve --allow-net --allow-env src/mod.ts"
}
}
// deno.jsonc
{
"importMap": "./import_map.json",
"compilerOptions": {
"lib": ["dom", "deno.ns"]
},
"tasks": {
"start": "deno serve --allow-net --allow-env src/mod.ts"
}
}
No description
Martin Carlsson
Martin CarlssonOP2w ago
Technically, what I'm looking for is something similar to: npm install -g npm-check-updates && ncu -u && npm i
marvinh.
marvinh.2w ago
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...
Martin Carlsson
Martin CarlssonOP2w ago
Awesome, thank you so much!

Did you find this page helpful?