UNPKG

1.76 kBPlain TextView Raw
1(defproject $PROJECT_NAME_HYPHENATED$ "0.1.0-SNAPSHOT"
2 :description "FIXME: write description"
3 :url "http://example.com/FIXME"
4 :license {:name "Eclipse Public License"
5 :url "http://www.eclipse.org/legal/epl-v10.html"}
6 :dependencies [[org.clojure/clojure "1.9.0-alpha16"]
7 [org.clojure/clojurescript "1.9.542"]
8 $INTERFACE_DEPS$]
9 :plugins [[lein-cljsbuild "1.1.4"]
10 [lein-figwheel "0.5.14"]]
11 :clean-targets ["target/" #_($PLATFORM_CLEAN$)]
12 :aliases {"prod-build" ^{:doc "Recompile code with prod profile."}
13 ["do" "clean"
14 ["with-profile" "prod" "cljsbuild" "once"]]
15 "advanced-build" ^{:doc "Recompile code for production using :advanced compilation."}
16 ["do" "clean"
17 ["with-profile" "advanced" "cljsbuild" "once"]]}
18 :profiles {:dev {:dependencies [[figwheel-sidecar "0.5.14"]
19 [com.cemerick/piggieback "0.2.1"]]
20 :source-paths ["src" "env/dev"]
21 :cljsbuild {:builds [
22#_($DEV_PROFILES$)]}
23 :repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}}
24 :prod {:cljsbuild {:builds [
25#_($PROD_PROFILES$)]}}
26 :advanced {:dependencies [[react-native-externs "0.1.0"]]
27 :cljsbuild {:builds [
28#_($ADVANCED_PROFILES$)]}}})
29
30