@juhoteperi: how can I tell cljsjs which version of the libraries to use? like dev vs. prod, im trying to use un-minified version
ClojureScript selects one based on optimization mode
advanced minified and non-minified else
if you absolutely have to change that, you could try redefining the foreign-lib in local deps.cljs
, but I don't remember if that works
ok so, it would seem both versions are coming up in my dev console
in the same stack trace
huh, shouldn't be possible
oh it’s a different lib
so I have this in my build.boot (cljs :optimizations :none :source-map true)
and im still getting the minified version of the library
What library is that? Could be some libraries only have minified version
The semantic UI that I PR'ed the other day,has both versions
Did I miss something in my pr?
build.boot looks correct
I see jquery unminified
so i build a version of the cljsjs package without minified files and that worked, testing again with minified version