pomdtr
pomdtr6mo ago

How to update in a cli distributed via jsr?

My cli is installed using:
deno install -Agf jsr:@smallweb/embed
deno install -Agf jsr:@smallweb/embed
Is there an equivalent to npm update -g in deno ?
2 Replies
marvinh.
marvinh.6mo ago
You're probably looking for the -r,--reload flag which tells Deno to ignore the local cache and fetch all dependencies from remotes
pomdtr
pomdtrOP6mo ago
thanks ! I was not sure if the entrypoint (jsr:@smallweb/embed) counted as a dependency