Jason, Where would that requirement be explained? I'm only trying to load a plain rhino repl, which as far as I know is not even aware of your application code. I updated the project.clj below to whitespace to see if that worked and I still see it.
with this: (https://github.com/emezeske/lein-cljsbuild/blob/master/doc/REPL.md) lein trampoline cljsbuild repl-rhino (defproject googbug "0.1.0-SNAPSHOT" :description "FIXME: write this!" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2268"]] :plugins [[lein-cljsbuild "1.0.4-SNAPSHOT"]] :source-paths ["src"] :injections [(require '[cljs.repl :as repl]) (require '[cljs.repl.rhino :as rhino]) (defn rhino-repl [] (repl/repl (rhino/repl-env)))] :cljsbuild { :builds [{:id "googbug" :source-paths ["src"] :compiler { :output-to "googbug.js" :source-map "googbug.js.map" :optimizations :whitespace}}]}) -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/clojurescript.
