Fork me on GitHub
#shadow-cljs
<
2021-12-06
>
borkdude17:12:02

Where should the opts go? Before or after the build ids?

borkdude17:12:59

I have this:

shadow-cljs --verbose --config-merge shadow-cljs-no-hash-names.edn ...
the no-hash-names tries to "undo" the module-hash-names from the normal shadow-cljs.edn

borkdude17:12:05

but it seems it's not being overriden

borkdude17:12:06

so {:builds {:website {:module-hash-names true}}} merged with {:builds {:website {:module-hash-names false}}} should disable it

thheller19:12:19

config merge only merges the build config. so just the inner map

borkdude19:12:18

I see, so the second map should be just {:module-hash-names false}?

borkdude19:12:34

when I try {:module-hash-names :duude}, then I don't get an error

borkdude19:12:26

but that does seem to work.