forked from drapanjanas/re-natal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
29 lines (29 loc) · 1.72 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(defproject $PROJECT_NAME_HYPHENATED$ "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"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.339"]
$INTERFACE_DEPS$]
:plugins [[lein-cljsbuild "1.1.4"]
[lein-figwheel "0.5.14"]]
:clean-targets ["target/" #_($PLATFORM_CLEAN$)]
:aliases {"prod-build" ^{:doc "Recompile code with prod profile."}
["do" "clean"
["with-profile" "prod" "cljsbuild" "once"]]
"advanced-build" ^{:doc "Recompile code for production using :advanced compilation."}
["do" "clean"
["with-profile" "advanced" "cljsbuild" "once"]]}
:jvm-opts ["-XX:+IgnoreUnrecognizedVMOptions" "--add-modules=java.xml.bind"]
:profiles {:dev {:dependencies [[figwheel-sidecar "0.5.14"]
[cider/piggieback "0.4.0"]]
:source-paths ["src" "env/dev"]
:cljsbuild {:builds [
#_($DEV_PROFILES$)]}
:repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}}
:prod {:cljsbuild {:builds [
#_($PROD_PROFILES$)]}}
:advanced {:dependencies [[react-native-externs "0.2.0"]]
:cljsbuild {:builds [
#_($ADVANCED_PROFILES$)]}}})