-
I noticed that when I build my project newly, it's giving the following warning:
Do you know how to figure out which module is causing this? I know it's because there's a module import without a version specifier somewhere but I don't know how to find it. I also know that this can be a problem if/when a module API changes as that could potentially break the import. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Run
It reveals that the offending module is |
Beta Was this translation helpful? Give feedback.
Run
deno info <url to the entry point>
and search forhttps://deno.land/std@0.206.0/path/mod.ts
.It reveals that the offending module is
recursive_readdir
. You can replace it withstd/fs/walk.ts
.