Closed pbaille closed 9 years ago
I have the same issue
I think it comes from the (run-specs) call, for me, just removing this call , remove the error... but I don't really understand.
Yep, I got the same error. (In Clojurescript)
The problem is here. require
might work in clj but it doesn't in cljs. (It gets turned into the non-existent cljs.core.require
)
I removed any use of (run-specs)
and found it still worked.
I see. run-specs is a macro that's not expected in cljs specs. I've updated the macro to be benign when compiling cljs specs.
it point to this line of my main.js cljs.core.require.call(null, new cljs.core.PersistentVector(null, 1, 5, cljs.core.PersistentVector.EMPTY_NODE, [new cljs.core.Symbol(null, "speclj.cli", "speclj.cli", 1748828644, null)], null));
any idea? I don't understand at all