mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-11 09:15:56 +00:00
fad47500bb
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
22 lines
1.0 KiB
Clojure
22 lines
1.0 KiB
Clojure
(ns figwheel
|
|
(:require [clojure.string :as s]))
|
|
|
|
(defn system-options [builds-to-start]
|
|
{:nrepl-port 7888
|
|
:builds [{:id :ios
|
|
:source-paths ["react-native/src" "src" "env/dev"]
|
|
:compiler {:output-to "target/ios/app.js"
|
|
:main "env.ios.main"
|
|
:output-dir "target/ios"
|
|
:optimizations :none}
|
|
:figwheel true}
|
|
{:id :android
|
|
:source-paths ["react-native/src" "src" "env/dev"]
|
|
:compiler {:output-to "target/android/app.js"
|
|
:main "env.android.main"
|
|
:output-dir "target/android"
|
|
:optimizations :none}
|
|
:warning-handlers '[status-im.utils.build/warning-handler]
|
|
:figwheel true}]
|
|
:builds-to-start builds-to-start})
|