nrepl / weasel

ClojureScript browser REPL using WebSockets
The Unlicense
324 stars 35 forks source link

Patching goog.require is wrong #54

Closed swannodette closed 9 years ago

swannodette commented 9 years ago

Instead we need to patch goog.provide and goog.writeScriptTag_. The previous approach will fail when loading namespaces never explicitly required in the client code. This fix has been landed in ClojureScript master already for the browser REPL.

tomjakubowski commented 9 years ago

Thanks, David!