> I'll probably write the simple version today and see how things work out.
So the simple version sort of works. http://thheller.com/webpack-cljs-preview/index.html http://thheller.com/webpack-cljs-preview/bundle.js This was generated by "webpack -d" and index.js: --- var foo = require("webpack-cljs/dummy.foo"); console.log(foo.bar()); --- dummy/foo.cljs: --- (ns dummy.foo) (js/console.log "dummy.foo") (defn bar [] "bar") --- Nothing special but works well enough, still haven't figured out most of the webpack things though. Currently they shadow-devtools just runs independently and generates files into ./node_modules/webpack-cljs/dummy.foo.js to make the require "pretty" (I really do not like relative paths). Will polish things a bit and maybe provide a public repo tomorrow. Still convinced that this is a very bad idea though. ;) -- 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 https://groups.google.com/group/clojurescript.
