looks like cljs 1.12.134 is being used on master, but not published yet, would you mind publishing? trying to fix the Vector warnings, thanks
I fixed those before? you still getting them?
thanks, 3.3.4 fixed it
Is there some way I can override the name of the shadow-cljs.edn file? To switch between different configs
why would you want that? isn't two different builds enough?
and no, there is not currently
To be able to use different sets of deps aliases. We have some dev tooling that we want to ensure doesn't somehow end up in the production build.
then just use the aliases directly via clj
shadow-cljs release app is identical to clj -A:whatever -M -m shadow.cljs.devtools.cli release app
you aren't bound to only ever using the aliases defined via :deps in shadow-cljs.edn, when using clj directly the :deps setting is ignored entirely.
but generally shadow-cljs is designed in a way that creeping dev dependencies into a release build should not happen
build reports lets you verify this easily https://shadow-cljs.github.io/docs/UsersGuide.html#build-report
Cool, thanks 👍