I have a situation where a ClojureScript subproject generates an public/js folder and I would like to delete it when lein clean runs. When using relative paths in :clean-targets, this works as any other lein project. However, running lein monolith each clean results in a warning, since "public/js" resolves to ${root-of-monolith}/public/js, which does not exist and does not correspond to any project.
If necessary, I can set up a minimal project with the exact situation.
Hi,
I have a situation where a ClojureScript subproject generates an
public/js
folder and I would like to delete it whenlein clean
runs. When using relative paths in:clean-targets
, this works as any other lein project. However, runninglein monolith each clean
results in a warning, since"public/js"
resolves to${root-of-monolith}/public/js
, which does not exist and does not correspond to any project.If necessary, I can set up a minimal project with the exact situation.
Thanks