disable fast reload and add make repl
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
This commit is contained in:
parent
4c360f9ea1
commit
4db9cd38e1
10
Makefile
10
Makefile
|
@ -383,4 +383,12 @@ startdev-desktop: _startdev-desktop
|
|||
|
||||
re-frisk: export TARGET := clojure
|
||||
re-frisk: ##@re-frisk start re-frisk server
|
||||
yarn shadow-cljs run re-frisk-remote.core/start
|
||||
yarn shadow-cljs run re-frisk-remote.core/start
|
||||
|
||||
repl-ios: export TARGET := clojure
|
||||
repl-ios: ##@repl-ios start repl for ios project
|
||||
yarn shadow-cljs cljs-repl ios
|
||||
|
||||
repl-android: export TARGET := clojure
|
||||
repl-android: ##@repl-android start repl for android project
|
||||
yarn shadow-cljs cljs-repl android
|
|
@ -53,3 +53,8 @@
|
|||
:background-color "rgba(255,0,0,0.5))"}))}]
|
||||
[react/text {:style {:margin-top 10 :color (if @warning? :red colors/black)}}
|
||||
@label]])))
|
||||
|
||||
(when ^boolean js/goog.DEBUG
|
||||
(when-let [DevSettings (.-DevSettings ^js react/native-modules)]
|
||||
(when (.-setHotLoadingEnabled DevSettings)
|
||||
(.setHotLoadingEnabled ^js DevSettings false))))
|
||||
|
|
Loading…
Reference in New Issue