Skip to content

Instantly share code, notes, and snippets.

@tgallant
Created October 20, 2014 05:58
Show Gist options
  • Select an option

  • Save tgallant/450b0361b06a5de7bcd8 to your computer and use it in GitHub Desktop.

Select an option

Save tgallant/450b0361b06a5de7bcd8 to your computer and use it in GitHub Desktop.
(defproject example "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:jvm-opts ^:replace ["-Xmx1g" "-server"]
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2371"]]
:plugins [[lein-cljsbuild "1.0.3"]]
:source-paths ["src/"]
:resource-paths ["resources"]
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src/"]
:compiler {
:output-to "resources/public/scripts/main.js"
:output-dir "resources/public/scripts/out"
:optimizations :none
:source-map true}}]})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment