Skip to content

v0.14.0-rc

Pre-release
Pre-release
Compare
Choose a tag to compare
@ide ide released this 28 Oct 23:14
· 33724 commits to main since this release

Breaking Changes

  • D2533877: react-native bundle API 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 --out has 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.
  • D2538070:
    • The --minify option is now inferred based on the --dev value. To get a production minified bundle use --dev false as --dev defaults to true.
  • 28f6eb: removeClippedSubviews now defaults to true on ListView. This is generally the behavior people expect from ListView so we're making it default to true. If you see any issues please report them.
  • 82fad3: Remove redundant script to start packager, it can still be started using react-native start or npm start