Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLJS-3237: compiling with --target node errors at runtime with docume…
…nt 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
- Loading branch information