leiningen

N.B. The maintainers are on #leiningen on Libera chat IRC. Go there for direct support/bug reports.
uosl 2019-09-26T10:35:47.025700Z

If I forget to include with-profile +uberjar when I run lein deploy, it won't include compiled css and js assets in the jar. Is there a way to make it so lein deploy always runs with the uberjar profile?

2019-09-26T10:52:32.027300Z

@regen I think you can create an alias: :aliases {"deploy" ["with-profile" "+uberjar" "deploy"]}.

1✅
2019-09-26T10:53:18.027900Z

At least I’ve done similar with repl and test tasks with success.

uosl 2019-09-26T11:23:09.028100Z

Thanks, that worked perfectly!