-
Notifications
You must be signed in to change notification settings - Fork 24.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into rejectResponderTerminationProp
- Loading branch information
Showing
1,453 changed files
with
38,303 additions
and
42,428 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
**/staticBundle.js | ||
**/main.js | ||
Libraries/vendor/**/* | ||
packager/src/worker-farm/**/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,36 @@ | ||
Please read the following carefully before opening a new issue. | ||
Your issue may be closed if it does not provide the information required by this template. | ||
|
||
We use GitHub Issues for tracking bugs in React Native. | ||
We use GitHub Issues exclusively for tracking bugs in React Native. | ||
|
||
- If you have a non-bug question, ask on Stack Overflow: http://stackoverflow.com/questions/tagged/react-native | ||
- If you have a question, ask on Stack Overflow: http://stackoverflow.com/questions/tagged/react-native | ||
- If you have a feature request, post it on Canny: https://react-native.canny.io/feature-requests | ||
|
||
Your issue may be closed without explanation if it does not provide the information required by this template. | ||
Make sure your issue reproduces on master. Your issue may already have been fixed! | ||
If your issue is present in master and in the stable release, try to reproduce your bug on https://snack.expo.io/ | ||
If you can't reproduce the bug on Snack, provide a sample project. | ||
At the very least, provide an example of your code. | ||
|
||
--- Please use this template, and delete everything above this line before submitting your issue --- | ||
--- Delete everything above this line --- | ||
|
||
### Description | ||
|
||
[FILL THIS OUT: Explain what you did, what you expected to happen, and what actually happens.] | ||
Explain what you did, what you expected to happen, and what actually happens. | ||
|
||
### Reproduction | ||
### Reproduction Steps and Sample Code | ||
|
||
List all the steps required to reproduce the issue you're reporting. These steps should be clear and concise. | ||
|
||
***An example of your code is REQUIRED*** | ||
|
||
[FILL THIS OUT: Try to reproduce your bug on https://sketch.expo.io/ and provide a link. If you can't reproduce the bug on Sketch, provide a sample project.] | ||
|
||
### Solution | ||
|
||
[FILL THIS OUT: What needs to be done to address this issue? Ideally, provide a pull request with a fix.] | ||
What needs to be done to address this issue? Ideally, provide a pull request with a fix. | ||
|
||
### Additional Information | ||
|
||
* React Native version: [FILL THIS OUT: Does the bug reproduce on the latest RN release?] | ||
* React Native version: [FILL THIS OUT: Be specific, filling out "latest" here is not enough.] | ||
* Platform: [FILL THIS OUT: iOS, Android, or both?] | ||
* Operating System: [FILL THIS OUT: MacOS, Linux, or Windows?] | ||
* Development Operating System: [FILL THIS OUT: Are you developing on macOS, Linux, or Windows?] | ||
* Dev tools: [FILL THIS OUT: Xcode or Android Studio version, iOS or Android SDK version, if applicable] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,4 +55,5 @@ node_modules | |
/ReactAndroid/src/androidTest/assets/AndroidTestBundle.js | ||
*.js.meta | ||
|
||
/coverage | ||
/third-party |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,18 @@ RUN_CLI_INSTALL=1 | |
RUN_IOS=0 | ||
RUN_JS=0 | ||
|
||
RETRY_COUNT=${RETRY_COUNT:-3} | ||
RETRY_COUNT=${RETRY_COUNT:-2} | ||
AVD_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 8 | head -n 1) | ||
|
||
ANDROID_NPM_DEPS="[email protected] [email protected] [email protected] [email protected] [email protected]" | ||
CLI_PACKAGE=$ROOT/react-native-cli/react-native-cli-*.tgz | ||
PACKAGE=$ROOT/react-native-*.tgz | ||
REACT_NATIVE_MAX_WORKERS=1 | ||
|
||
# solve issue with max user watches limit | ||
echo 65536 | tee -a /proc/sys/fs/inotify/max_user_watches | ||
watchman shutdown-server | ||
|
||
# retries command on failure | ||
# $1 -- max attempts | ||
# $2 -- command to run | ||
|
@@ -177,7 +181,6 @@ function e2e_suite() { | |
cd .. | ||
keytool -genkey -v -keystore android/keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US" | ||
|
||
echo "Starting packager server" | ||
node ./node_modules/.bin/appium >> /dev/null & | ||
APPIUM_PID=$! | ||
echo "Starting appium server $APPIUM_PID" | ||
|
@@ -193,6 +196,7 @@ function e2e_suite() { | |
return 1 | ||
fi | ||
|
||
echo "Starting packager server" | ||
npm start >> /dev/null & | ||
SERVER_PID=$! | ||
sleep 15 | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.