mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
56051caac5
Summary: Original commit changeset: 4c0afc95abe8 Original Phabricator Diff: D37155957 (https://github.com/facebook/react-native/commit/d1321d88bdc80b209aeb781991d8143d6ce2f9a9) See attached UBN task for more details, I am reverting the whole diff now while investigating the root cause. Changelog: [General][Changed] - Revert "React Native sync for revisions d300ceb...256aefb" jest_e2e[run_all_tests] === update klein did a bisect for S276290, it seems Original Phabricator Diff: D37155957 (https://github.com/facebook/react-native/commit/d1321d88bdc80b209aeb781991d8143d6ce2f9a9) is the blame diff. jackworden also has verified backout can fix it for both ios and android. Reviewed By: ahujap-fb, kacieb Differential Revision: D37205394 fbshipit-source-id: 600e6593532da064631c016aace317932f290c67
30 lines
678 B
JSON
30 lines
678 B
JSON
{
|
|
"name": "HelloWorld",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"android": "react-native run-android",
|
|
"ios": "react-native run-ios",
|
|
"start": "react-native start",
|
|
"test": "jest",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"react": "18.1.0",
|
|
"react-native": "1000.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.12.9",
|
|
"@babel/runtime": "^7.12.5",
|
|
"@react-native-community/eslint-config": "^2.0.0",
|
|
"babel-jest": "^26.6.3",
|
|
"eslint": "^7.32.0",
|
|
"jest": "^26.6.3",
|
|
"metro-react-native-babel-preset": "^0.71.1",
|
|
"react-test-renderer": "18.1.0"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native"
|
|
}
|
|
}
|