install-expo-modules 0.14.17 → 0.14.19
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 +2 -2
- package/bin/install-expo-modules.js +3 -0
- package/build/index.js +129 -129
- package/build/plugins/android/withAndroidGradles.d.ts +1 -1
- package/build/plugins/android/withAndroidModules.d.ts +1 -1
- package/build/plugins/android/withAndroidModulesMainActivity.d.ts +1 -1
- package/build/plugins/android/withAndroidModulesMainApplication.d.ts +1 -1
- package/build/plugins/android/withAndroidSettingsGradle.d.ts +1 -1
- package/build/plugins/cli/withCliIntegration.d.ts +2 -2
- package/build/plugins/ios/withIosDeploymentTarget.d.ts +2 -2
- package/build/plugins/ios/withIosModules.d.ts +1 -1
- package/build/plugins/ios/withIosModulesAppDelegate.d.ts +1 -1
- package/build/plugins/ios/withIosModulesPodfile.d.ts +1 -1
- package/build/plugins/ios/withSwiftVersion.d.ts +2 -2
- package/build/plugins/ios/withXCParseXcodeProject.d.ts +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -33,8 +33,8 @@ expo install expo-device
|
|
|
33
33
|
|
|
34
34
|
To contribute a change and test it with a RNC CLI app, follow these steps:
|
|
35
35
|
|
|
36
|
-
1. `
|
|
36
|
+
1. `pnpm watch` to start building the project in watch mode.
|
|
37
37
|
2. make your changes.
|
|
38
|
-
3. run `node path_to_expo/packages/install-expo-modules/
|
|
38
|
+
3. run `node path_to_expo/packages/install-expo-modules/bin/install-expo-modules.js .` in your RNC CLI project.
|
|
39
39
|
|
|
40
40
|
Don't forget to write unit tests for your changes.
|