[Figwheel] Failed to compile build prod in 0.025 seconds.
[Figwheel:WARNING] Compile Exception: contains? not supported on type: java.lang.Boolean
[Figwheel:SEVERE] contains? not supported on type: java.lang.Boolean
Execution error (IllegalArgumentException) at cljs.closure/compute-upstream-npm-deps$fn (closure.clj:2440).
contains? not supported on type: java.lang.Boolean
I get this when trying to build with :target :bundle ?Yes, update clojurescript to 1.10.773 should help =)…
@didibus ^
Hm, I’m using 0.2.7 and building with auto-test, seems auto-test is overwriting the regular main.js
:
[Figwheel] Successfully compiled build basedev to "resources/public/js/main.out/index.js" in 42.267 seconds.
[Figwheel] Bundling: npx webpack --mode=development resources/public/js/main.out/index.js -o resources/public/js/main.js
[Figwheel] Outputting main file: resources/public/js/main.out/index-auto-testing.js
[Figwheel] Bundling: npx webpack --mode=development resources/public/js/main.out/index-auto-testing.js -o resources/public/js/main.js
[Figwheel] Watching paths: ("src/clojure" "test/clojure") to compile build - basedev
@ingesol what are your compiler options?
{:main my.main
:output-to "resources/public/js/main.out/index.js"
:auto-testing true
:output-dir "resources/public/js/main.out",
:asset-path "/js/main.out"
:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true}
:preloads [my.preloads]}
figwheel-main.edn
{:auto-testing true
:watch-dirs ["src/clojure" "test/clojure"],
:css-dirs ["resources/public/css"],
:open-url "false"
:helpful-classpaths false
:auto-bundle :webpack
:final-output-to "resources/public/js/main.js"}
well that’s a bug then
could it be the specification of :final-output-to?
no it’s a bug I must have introduced recently
final-output-to is supposed to be munged
I THINK I tested this with both auto-test and in main somewhere on 0.2.7-SNAPSHOT
I refactored
so
probably missed something
Well, logging is really to the point so was easy to spot what’s wrong with the output
yep I found the bug
thanks
Let me know if you want me to retest snapshot
@ingesol 0.2.8-SNAPSHOT
confirmed 🙂
both main app and auto-test page works onw
great 👍
Also I want to point out a CLJS issue to keep an eye on
That's the version I am using
Along with fighweel "0.2.7"
Seems to be caused by me having :install-deps true
in my config
:clojure.main/message
"Execution error (IllegalArgumentException) at cljs.closure/compute-upstream-npm-deps$fn (closure.clj:2440).\ncontains? not supported on type: java.lang.Boolean\n",
:clojure.main/triage
{:clojure.error/class java.lang.IllegalArgumentException,
:clojure.error/line 2440,
:clojure.error/cause
"contains? not supported on type: java.lang.Boolean",
:clojure.error/symbol cljs.closure/compute-upstream-npm-deps$fn,
:clojure.error/source "closure.clj",
:clojure.error/phase :execution}
Check your deps tree? you might be running a different version than you think you are… (I’ve done this..)
With deps.edn
it’s clj -Stree
and with lein
it’s lein deps :tree
Hum, checked -Stree, still shows org.clojure/clojurescript 1.10.773
@didibus it really shouldn’t be happening with that version
Hum, something else that happens is that it doesn't se to apply the bundle-cmd after the build
I have to manually run it