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 +11 -1
- package/build/index.js +18 -15
- package/build/plugins/ios/withSwiftVersion.d.ts +6 -0
- package/build/utils/projectRoot.d.ts +1 -1
- package/package.json +7 -7
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
|
|
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.
|