install-expo-modules 0.10.2 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -26,5 +26,15 @@ expo install expo-device
26
26
 
27
27
  - Install [`expo`](https://www.npmjs.com/package/expo) package for necessary core and react-native autolinking.
28
28
  - Modify your project files to adopt expo-modules. If your project is managed by `git`, you can use `git diff` to review whatever `install-expo-modules` do for you.
29
- - Since expo-modules' minimal requirements for iOS is 12.0, if your ios deployment target is lower than that, this tool will upgrade your deployment target to 12.0.
29
+ - Since expo-modules' minimal iOS version requirement may be higher than React Native core's, if your ios deployment target is lower, this tool will upgrade your deployment target.
30
30
  - `pod install` at last to update linked modules for iOS.
31
+
32
+ # Contributing
33
+
34
+ To contribute a change and test it with a RNC CLI app, follow these steps:
35
+
36
+ 1. `yarn watch` to start building the project in watch mode.
37
+ 2. make your changes.
38
+ 3. run `node path_to_expo/packages/install-expo-modules/build/index.js .` in your RNC CLI project.
39
+
40
+ Don't forget to write unit tests for your changes.