2015-08-22 05:07:37 +00:00
|
|
|
(defproject $PROJECT_NAME_HYPHENATED$ "0.1.0-SNAPSHOT"
|
2015-11-27 22:57:14 +00:00
|
|
|
:description "FIXME: write description"
|
|
|
|
:url "http://example.com/FIXME"
|
|
|
|
:license {:name "Eclipse Public License"
|
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
2017-04-29 20:16:37 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.9.0-alpha16"]
|
2017-05-12 13:38:37 +00:00
|
|
|
[org.clojure/clojurescript "1.9.542"]
|
2016-02-07 12:48:00 +00:00
|
|
|
$INTERFACE_DEPS$]
|
2016-10-11 18:42:04 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.1.4"]
|
2017-04-29 20:16:37 +00:00
|
|
|
[lein-figwheel "0.5.10"]]
|
2017-04-13 09:04:31 +00:00
|
|
|
:clean-targets ["target/" #_($PLATFORM_CLEAN$)]
|
2015-11-27 22:57:14 +00:00
|
|
|
:aliases {"prod-build" ^{:doc "Recompile code with prod profile."}
|
|
|
|
["do" "clean"
|
2017-02-21 07:40:08 +00:00
|
|
|
["with-profile" "prod" "cljsbuild" "once"]]}
|
2017-04-29 20:16:37 +00:00
|
|
|
:profiles {:dev {:dependencies [[figwheel-sidecar "0.5.10"]
|
2015-12-14 22:02:40 +00:00
|
|
|
[com.cemerick/piggieback "0.2.1"]]
|
|
|
|
:source-paths ["src" "env/dev"]
|
2017-04-12 10:07:11 +00:00
|
|
|
:cljsbuild {:builds [
|
2017-04-13 09:04:31 +00:00
|
|
|
#_($DEV_PROFILES$)]}
|
2015-12-14 22:02:40 +00:00
|
|
|
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}}
|
2017-04-12 10:07:11 +00:00
|
|
|
:prod {:cljsbuild {:builds [
|
2017-04-13 09:04:31 +00:00
|
|
|
#_($PROD_PROFILES$)]}}})
|
2017-04-12 10:07:11 +00:00
|
|
|
|
|
|
|
|