2016-05-19 16:31:56 +00:00
|
|
|
(defproject status-im "0.1.0-SNAPSHOT"
|
2017-09-02 16:11:31 +00:00
|
|
|
:url "https://github.com/status-im/status-react/"
|
2016-03-04 17:28:06 +00:00
|
|
|
:license {:name "Eclipse Public License"
|
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
2017-10-19 04:38:20 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.9.0-RC1"]
|
2017-10-19 13:58:21 +00:00
|
|
|
[org.clojure/clojurescript "1.9.946"]
|
2017-07-23 21:58:04 +00:00
|
|
|
[org.clojure/core.async "0.3.443"]
|
2017-10-19 04:38:20 +00:00
|
|
|
[reagent "0.7.0" :exclusions [cljsjs/react cljsjs/react-dom cljsjs/react-dom-server cljsjs/create-react-class]]
|
|
|
|
[re-frame "0.10.2"]
|
2017-07-17 11:18:52 +00:00
|
|
|
[com.andrewmcveigh/cljs-time "0.5.0"]
|
2017-08-17 16:49:03 +00:00
|
|
|
[com.taoensso/timbre "4.10.0"]
|
2017-10-19 13:58:21 +00:00
|
|
|
[hickory "0.7.1"]
|
|
|
|
[com.cognitect/transit-cljs "0.8.243"]]
|
2017-08-17 16:49:03 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.1.7"]
|
2017-10-19 04:38:20 +00:00
|
|
|
[lein-figwheel "0.5.14"]
|
2017-12-04 10:09:41 +00:00
|
|
|
[lein-re-frisk "0.5.5"]]
|
2016-03-04 17:28:06 +00:00
|
|
|
:clean-targets ["target/" "index.ios.js" "index.android.js"]
|
2017-07-16 09:04:35 +00:00
|
|
|
:aliases {"prod-build" ^{:doc "Recompile code with prod profile."}
|
2017-10-19 04:38:20 +00:00
|
|
|
["do" "clean"
|
|
|
|
["with-profile" "prod" "cljsbuild" "once" "ios"]
|
|
|
|
["with-profile" "prod" "cljsbuild" "once" "android"]]
|
2017-12-17 17:16:42 +00:00
|
|
|
"figwheel-repl" ["run" "-m" "clojure.main" "env/dev/figwheel_api.clj"]
|
2017-07-17 11:18:52 +00:00
|
|
|
"test-cljs" ["with-profile" "test" "doo" "node" "test" "once"]
|
|
|
|
"test-protocol" ["with-profile" "test" "doo" "node" "protocol" "once"]}
|
2016-03-17 17:17:21 +00:00
|
|
|
:figwheel {:nrepl-port 7888}
|
2017-10-19 04:38:20 +00:00
|
|
|
:profiles {:dev {:dependencies [[figwheel-sidecar "0.5.14"]
|
2017-12-04 10:09:41 +00:00
|
|
|
[re-frisk-remote "0.5.3"]
|
|
|
|
[re-frisk-sidecar "0.5.4"]
|
2017-08-17 16:49:03 +00:00
|
|
|
[com.cemerick/piggieback "0.2.2"]
|
|
|
|
[hawk "0.2.11"]]
|
2016-04-04 16:21:10 +00:00
|
|
|
:source-paths ["src" "env/dev"]
|
2017-07-16 15:30:53 +00:00
|
|
|
:cljsbuild {:builds
|
|
|
|
{:ios
|
2017-12-17 17:16:42 +00:00
|
|
|
{:source-paths ["react-native/src"]
|
2017-07-16 15:30:53 +00:00
|
|
|
:figwheel true
|
|
|
|
:compiler {:output-to "target/ios/app.js"
|
|
|
|
:main "env.ios.main"
|
|
|
|
:output-dir "target/ios"
|
|
|
|
:optimizations :none}}
|
|
|
|
:android
|
2017-12-17 17:16:42 +00:00
|
|
|
{:source-paths ["react-native/src"]
|
2017-07-16 15:30:53 +00:00
|
|
|
:figwheel true
|
|
|
|
:compiler {:output-to "target/android/app.js"
|
|
|
|
:main "env.android.main"
|
|
|
|
:output-dir "target/android"
|
2017-09-02 12:46:08 +00:00
|
|
|
:optimizations :none}
|
|
|
|
:warning-handlers [status-im.utils.build/warning-handler]}}}
|
2016-11-02 20:27:31 +00:00
|
|
|
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]
|
2016-11-30 07:42:51 +00:00
|
|
|
:timeout 240000}}
|
2017-07-21 13:03:24 +00:00
|
|
|
:test {:dependencies [[day8.re-frame/test "0.1.5"]]
|
|
|
|
:plugins [[lein-doo "0.1.7"]]
|
2017-07-16 09:04:35 +00:00
|
|
|
:cljsbuild {:builds
|
|
|
|
[{:id "test"
|
|
|
|
:source-paths ["src" "test/cljs"]
|
2017-08-23 09:00:06 +00:00
|
|
|
:compiler {:main status-im.test.runner
|
2017-07-17 11:18:52 +00:00
|
|
|
:output-to "target/test/test.js"
|
|
|
|
:output-dir "target/test"
|
|
|
|
:optimizations :none
|
2017-11-29 15:31:15 +00:00
|
|
|
:preamble ["js/hook-require.js"]
|
2017-07-17 11:18:52 +00:00
|
|
|
:target :nodejs}}
|
|
|
|
{:id "protocol"
|
|
|
|
:source-paths ["src" "test/cljs"]
|
2017-08-23 09:00:06 +00:00
|
|
|
:compiler {:main status-im.test.protocol.runner
|
2017-07-16 09:04:35 +00:00
|
|
|
:output-to "target/test/test.js"
|
|
|
|
:output-dir "target/test"
|
|
|
|
:optimizations :none
|
|
|
|
:target :nodejs}}]}}
|
2017-07-16 15:30:53 +00:00
|
|
|
:prod {:cljsbuild {:builds
|
|
|
|
{:ios
|
2017-07-16 09:04:35 +00:00
|
|
|
{:source-paths ["react-native/src" "src" "env/prod"]
|
2017-07-16 15:30:53 +00:00
|
|
|
:compiler {:output-to "index.ios.js"
|
|
|
|
:main "env.ios.main"
|
|
|
|
:output-dir "target/ios-prod"
|
|
|
|
:static-fns true
|
|
|
|
:optimize-constants true
|
2017-07-17 11:18:52 +00:00
|
|
|
:optimizations :simple
|
2017-07-16 15:30:53 +00:00
|
|
|
:closure-defines {"goog.DEBUG" false}
|
2017-10-05 11:23:25 +00:00
|
|
|
:parallel-build false
|
2017-09-02 12:46:08 +00:00
|
|
|
:language-in :ecmascript5}
|
|
|
|
:warning-handlers [status-im.utils.build/warning-handler]}
|
2017-07-16 15:30:53 +00:00
|
|
|
:android
|
2017-07-16 09:04:35 +00:00
|
|
|
{:source-paths ["react-native/src" "src" "env/prod"]
|
2017-07-16 15:30:53 +00:00
|
|
|
:compiler {:output-to "index.android.js"
|
|
|
|
:main "env.android.main"
|
|
|
|
:output-dir "target/android-prod"
|
|
|
|
:static-fns true
|
|
|
|
:optimize-constants true
|
2017-07-17 11:18:52 +00:00
|
|
|
:optimizations :simple
|
2017-07-16 15:30:53 +00:00
|
|
|
:closure-defines {"goog.DEBUG" false}
|
2017-10-05 11:23:25 +00:00
|
|
|
:parallel-build false
|
2017-09-02 12:46:08 +00:00
|
|
|
:language-in :ecmascript5}
|
|
|
|
:warning-handlers [status-im.utils.build/warning-handler]}}}}})
|