Skip to content

Instantly share code, notes, and snippets.

@mateusz-fiolka
Created November 9, 2014 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mateusz-fiolka/d8f45b656c449861724b to your computer and use it in GitHub Desktop.
Save mateusz-fiolka/d8f45b656c449861724b to your computer and use it in GitHub Desktop.
(defproject gh-helper "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2342"]
[figwheel "0.1.5-SNAPSHOT"]]
:plugins [[lein-cljsbuild "1.0.3"]
[lein-figwheel "0.1.5-SNAPSHOT"]]
:source-paths ["src"]
:cljsbuild {:builds [{:id "example"
:source-paths ["src"]
:compiler { :output-to "resources/public/js/compiled/example.js"
:output-dir "resources/public/js/compiled/out"
:optimizations :none}}]}
;:main ^:skip-aot gh-helper.core
;:target-path "target/%s"
;:profiles {:uberjar {:aot :all}}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment