Fork me on GitHub
#polylith
<
2023-03-24
>
Jungin Kwon06:03:58

When REPL is executed using top-level deps.edn and 'dev', 'test' alias, is there a way to execute REPL as if not only the alias of top-level deps.edn but also the 'test' alias of (polylith) projects are applied? I don't want to copy and paste all the extra-deps of the project 'test' alias.

seancorfield12:03:10

No, the workspace-level deps.edn needs the :extra-paths for the test paths (not the :extra-deps).

mynomoto15:03:05

You could generate a deps.edn that has the test paths and extra-deps merged on the top level but I'm pretty sure this may bite you later. Something like having a deps.template.edn as the source of true that generate a deps.edn.

Jungin Kwon15:03:10

Okay. Thank you for answering.