react-native-macos/breaking-changes.md

15 строки
971 B
Markdown
Исходник Обычный вид История

# Breaking Changes
## 0.14
- D2530161: Need to introduce rn-cli.config.js for existing projects
- 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.
2015-10-15 02:14:40 +03:00
- D2538070:
- The `--minify` option is now infered based on the `--dev` value. To get a production minified bundle use `--dev false` as `--dev` defaults to true.
2015-10-14 18:58:26 +03:00
- [28f6eb](https://github.com/facebook/react-native/commit/28f6eba22d5bd3dfead3a115f93e37f25b1910ca):
- `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.