Skip to content

v0.7.0

Choose a tag to compare

@ipakhomov ipakhomov released this 21 Mar 08:17
· 179 commits to main since this release
722af65

What's Changed

Migration

Starting from this version, the package uses direct module export for better dependency management and tree shaking.
All dependencies required by modules (specified in Readme) must be installed by the parent application.

  1. Update the package to 0.7.0
  2. Run Typescript checks in your workspace
  3. Fix modules imports like this:
- import { AppPressable, AppSafeAreaView } from '@ronas-it/react-native-common-modules';

+ import { AppPressable } from '@ronas-it/react-native-common-modules/src/ui/pressable';
+ import { AppSafeAreaView } from '@ronas-it/react-native-common-modules/src/ui/safe-area-view';

Full Changelog: v0.6.0...v0.7.0