about prod & dev dependencies in deno projects
What are best practices for managing prod/dev dependencies in a clear separate manner with deno?
1. Without workspaces?
2. With workspaces?
3. Using
import_map.json
(both cases)?
4. Is a separate dev_import_map.json
recommended?
Please help me solve it. Thanks!"7 Replies
None of this. The way dependencies work in Deno is that only the ones get used that are referenced from your entry point. So when you do
deno run foo.ts
only the dependencies reachable from foo.ts
will be installed during deployment. Or in other words: Put all your dependencies into the "imports"
section in deno.json
and just make sure that you don't import dev deps in prod codehow we can avoid import dev deps in prod code?
There is currently no built-in way to do this
ok thanks
can't we maintain two diff import_map.json like
prod_import_map.json
& dev_import_map.json
and pass it with the import map flag?
is it the right way as of now?
@marvinh. Can you please help us here?You can do that sure OR have a separate entry point for dev stuff. Then all dependencies can live in one import map. I personally prefer the latter approach. As marvinh said, those import map dependencies are only defined in the import map - they are not automatically used or loaded so defining stuff there is "free". They are actually loaded only if your entry point specifically needs (imports) it. So if your prod entry point does not import dev stuff, none of the dev stuff is loaded.
ok got it can you please share example from any open source repo, thanks in advance
sorry but save the thanks, I'm not super keen on doing that kind of legwork :)