ionic-cli
ionic-cli copied to clipboard
ionic cap copy --no-build --watch not working
ionic cap copy --no-build --watch
expected behavior keep running and copy files to ios, android, web at file change
actual runs once
before I need to develop for ios I just run this command and open native ide
ionic capacitor run ios -l --external
so after file change I just
- need to click run app button in xcode
but now I'm adding feature to connect to iot WiFi Access Point therefore
I can't use ionic capacitor run ios -l --external
cause it need my ios device to be connected to the same network as my computer to work properly and get livereloads
So after every file change I need to
- run
ionic build --watch
for file changes - then after every change manually run
ionic cap copy --no-build --watch
(--watch not working as expected run once) - then in xcode run app button
bump