Skip to content

Instantly share code, notes, and snippets.

@hsestupin
Created February 2, 2014 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hsestupin/8775181 to your computer and use it in GitHub Desktop.
Save hsestupin/8775181 to your computer and use it in GitHub Desktop.
(defproject cljs-gwt "0.1.0-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2138"]
[compojure "1.0.4"]
[hiccup "1.0.0"]]
:plugins [[lein-cljsbuild "1.0.1"]
[lein-ring "0.7.0"]]
:ring {:handler cljs-gwt.core/app}
:source-paths ["src/clj"]
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src/cljs"]
:compiler {
:output-dir "resources/public/js/"
:output-to "resources/public/js/cljs_gwt.js"
:source-map "resources/public/js/cljs_gwt.js.map"
:optimizations :none}}
{:id "prod"
:source-paths ["src/cljs"]
:compiler {
:output-to "resources/public/js/cljs_gwt.js"
:optimizations :advanced}}]})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment