You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CLJS-3237: compiling with --target node errors at runtime with document undefined
The problem was uncovered by the change in default-compile to pull in all relevant
compiler options from repl-options returned from the repl-env.
The issue was that --target node would still use the browser-repl repl-env which
sets :browser-repl true.
Add a target->repl-env helper that looks at the target and returns the true
repl-env in all cases.
This also means you can start a node REPL now with `clj -m cljs.main -t node -r`
Fixes the later half of the Quick Start
0 commit comments