checkouts is definitely the way to do. symlink the directory of your library to
application/checkouts/library you can then cljsbuild auto the library and changes will be automatically picked up by the application I don't have a minimal test case in front of me, so I'm not sure if cljsbuild auto in the application will recompile when the library recompiles, but I'm fairly sure that it will. You shouldn't need to clean, since the dependency itself will have changed causes it to be rebuilt. even better, you can use https://github.com/bhauman/lein-figwheel in the application project, which is essentially a drop in replacement for cljsbuild auto. for om apps, I have a idempotent render function that calls om/root. so I use (fw/watch-and-reload :websocket-url "ws://localhost:3449/figwheel-ws" :jsload-callback #(render/render-mounted)) to rerender the app on recompile. -- 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.
