Closed p-himik closed 6 years ago
shadow-cljs is a bit more strict, so using some.thing/foo without (:require [some.thing]) produces Use of undeclared Var some.thing/foo warnings.
shadow-cljs
some.thing/foo
(:require [some.thing])
Use of undeclared Var some.thing/foo
The cases in re-frame-10x that were reported by shadow-cljs:
re-frame-10x
day8/re_frame_10x/view/parts.cljs:26:28 day8/re_frame_10x/view/parts.cljs:28:34 day8/re_frame_10x/view/parts.cljs:30:34
There may be other cases - I'm not sure.
This should be fixed in 0.2.1 and above, can you confirm whether you are getting these warnings with 0.3.0?
Relates to #164.
Works perfectly, thank you!
shadow-cljs
is a bit more strict, so usingsome.thing/foo
without(:require [some.thing])
producesUse of undeclared Var some.thing/foo
warnings.The cases in
re-frame-10x
that were reported byshadow-cljs
:There may be other cases - I'm not sure.