Releases: drapanjanas/re-natal
Releases · drapanjanas/re-natal
React Native 0.22.0 and bugfixes
Integration with figwheel improvements
This release fixes #28
- figwheel-bridge.js does not create window.document or window.localStorage anymore
- Figwheel :heads-up-display is now false, compilation warnings in 'yellow box' does not require that.
- Using latest available lein-figwheel version 0.5.0-6
Upgrade existing projects
- run re-natal upgrade
This will turn off the heads-up-display and copy a new version of figwheel-bridge.js.
Support development using real iOS device
- Added new command to set up correct IP address of development serever for iOS app:
$ re-natal use-ios-device <real|simulator|xxx.xxx.xxx.xxx>
- Bumped RN version to 0.21.0
Use React Native 0.20.0
v0.2.25 update readme
Support of Om Next
Added a possibility to generate Om Next based project
$ re-natal init OmNextApp -i om-next
Updates in re-natal CLI
Changes in CLI:
- removed
re-natal launch
and related commands. Since RN 0.19.0 hasreact-native run-ios
- added
re-natal copy-figwheel-bridge
to upgrade/restore only figwheel-bridge.js file. - added
re-natal enable-source-maps
and removed the same fromre-natal upgrade
, so now patching of RN packager to serve source maps is an optional step.
Added support for Windows
re-natal init
and other essential commands now also works on Windows
Big thanks to @marxama for contribution!
Use React Native 0.19.0
- Using recent React Native release 0.19.0
- Remove ^:figwheel-load annotation from core.cljs, no need forcing reload of core namespace
Upgrade existing projects
- run
re-natal upgrade
Bugfix
- fixed bug in figwheel-bridge.js
- handle missing dependencies
re-natal upgrade
checks and installs missing dependenciesre-natal use-figwheel
checks and shows error if missing dependenciesre-natal deps
shows current versions of deps, and installs if missing
- improved .gitignore
Upgrade existing projects
- Run re-natal upgrade
Support simultaneous iOS and Android app development
- If you run figwheel for both builds "ios" and "android" and start iOS and Android apps at once, hot loading should work for both of them.
- Change in CLI:
use-figwheel
does not accept -H option anymore. To set up host for your android device, please use new commandre-natal use-android-device <real | genymotion | avd>
. You only need to run this command once when you switch between android devices. - Fixes #13
Upgrade existing projects
- Run
re-natal upgrade