mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-01-31 09:08:48 +08:00
1.1 KiB
1.1 KiB
Breaking Changes
0.15
None so far.
0.14
- D2533877:
react-native bundleAPI changes:- API is now
entry-file <path>based instead of url based. - Need to specify which platform you're bundling for
--platform <ios|android>. - Option
--outhas been renamed for--bundle-output. - Source maps are no longer automatically generated. Need to specify
--sourcemap-output <path>option to indicate where to put the source maps.
- API is now
- D2538070:
- The
--minifyoption is now infered based on the--devvalue. To get a production minified bundle use--dev falseas--devdefaults to true.
- The
- 28f6eb:
removeClippedSubviewsnow defaults totrueonListView. This is generally the behavior people expect fromListViewso we're making it default totrue. If you see any issues please report them. - 82fad3: Remove redundant script to start packager, it can still be started using
react-native startornpm start