Add components/src to source-paths
Otherwise changes in this ns are not loaded by figwheel during development
This commit is contained in:
parent
c763a001c3
commit
73668d2e53
|
@ -94,7 +94,7 @@
|
|||
"cider.piggieback/wrap-cljs-repl"]}
|
||||
|
||||
:builds [{:id :desktop
|
||||
:source-paths ["react-native/src/desktop" "src" "env/dev"]
|
||||
:source-paths ["react-native/src/desktop" "src" "env/dev" "components/src"]
|
||||
:compiler {:output-to "target/desktop/app.js"
|
||||
:main "env.desktop.main"
|
||||
:output-dir "target/desktop"
|
||||
|
@ -102,7 +102,7 @@
|
|||
:optimizations :none}
|
||||
:figwheel true}
|
||||
{:id :ios
|
||||
:source-paths ["react-native/src/mobile" "src" "env/dev"]
|
||||
:source-paths ["react-native/src/mobile" "src" "env/dev" "components/src"]
|
||||
:compiler {:output-to "target/ios/app.js"
|
||||
:main "env.ios.main"
|
||||
:output-dir "target/ios"
|
||||
|
@ -110,7 +110,7 @@
|
|||
:optimizations :none}
|
||||
:figwheel true}
|
||||
{:id :android
|
||||
:source-paths ["react-native/src/mobile" "src" "env/dev"]
|
||||
:source-paths ["react-native/src/mobile" "src" "env/dev" "components/src"]
|
||||
:compiler {:output-to "target/android/app.js"
|
||||
:main "env.android.main"
|
||||
:output-dir "target/android"
|
||||
|
|
Loading…
Reference in New Issue