Skip to content

Commit b1e7022

Browse files
authored
fix: Removing react-native-flipper (#1524)
## Please verify the following: - [x] `yarn build-and-test:local` passes - [ ] I have added tests for any new features, if relevant - [ ] `README.md` (or relevant documentation) has been updated with your changes ## Describe your PR Removing Flipper support. Fixes #1333
1 parent 2786c0b commit b1e7022

File tree

7 files changed

+160
-204
lines changed

7 files changed

+160
-204
lines changed

apps/example-app/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@
4141
"@shopify/flash-list": "1.6.4",
4242
"apisauce": "3.0.1",
4343
"date-fns": "^2.30.0",
44-
"expo": "~51.0.36",
44+
"expo": "~51.0.39",
4545
"expo-build-properties": "~0.12.5",
4646
"expo-font": "~12.0.10",
4747
"expo-linear-gradient": "~13.0.2",
4848
"expo-linking": "~6.3.1",
4949
"expo-localization": "~15.0.3",
50-
"expo-splash-screen": "~0.27.6",
50+
"expo-splash-screen": "~0.27.7",
5151
"expo-status-bar": "~1.12.1",
5252
"i18n-js": "3.9.2",
5353
"mobx": "6.10.2",
@@ -58,7 +58,7 @@
5858
"react-native": "0.74.5",
5959
"react-native-gesture-handler": "~2.16.1",
6060
"react-native-safe-area-context": "4.10.5",
61-
"react-native-screens": "3.31.1",
61+
"react-native-screens": "3.32.0",
6262
"react-native-view-shot": "3.8.0",
6363
"react-native-web": "~0.19.6",
6464
"react-redux": "^9.1.0"

apps/reactotron-app/src/renderer/contexts/Standalone/useStandalone.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export function reducer(state: State, action: Action) {
9797
)
9898
}
9999

100-
// TODO: Figure out if we can stop having these dumb commands so early. Make core client only send once we actually have a client ID! (maybe won't work for flipper if it doesn't assign client id? Maybe that is how this broke?!?)
100+
// TODO: Figure out if we can stop having these dumb commands so early. Make core client only send once we actually have a client ID!
101101

102102
const filteredConnections = draftState.connections.filter((c) => c.connected)
103103

lib/reactotron-react-native/package.json

-4
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@
4848
"mitt": "^3.0.1",
4949
"reactotron-core-client": "workspace:*"
5050
},
51-
"optionalDependencies": {
52-
"react-native-flipper": "^0.164.0"
53-
},
5451
"resolutions": {
5552
"@types/react-native": "0.72.1"
5653
},
@@ -81,7 +78,6 @@
8178
"prettier": "^3.0.3",
8279
"react": "^18.2.0",
8380
"react-native": "0.73.6",
84-
"react-native-flipper": "0.164.0",
8581
"rimraf": "5.0.5",
8682
"rollup": "2.60.2",
8783
"rollup-plugin-babel": "4.4.0",

lib/reactotron-react-native/rollup.config.js

-10
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ function getPlugins() {
1818

1919
const EXTERNALS = [
2020
"reactotron-core-client",
21-
"react-native-flipper",
2221
"react",
2322
"react-native",
2423
"react-native/Libraries/Network/XHRInterceptor",
@@ -40,13 +39,4 @@ export default [
4039
plugins: getPlugins(),
4140
external: EXTERNALS,
4241
},
43-
{
44-
input: "src/flipper-connection-manager.ts",
45-
output: {
46-
file: "dist/flipper.js",
47-
format: "cjs",
48-
},
49-
plugins: getPlugins(),
50-
external: EXTERNALS,
51-
},
5242
]

lib/reactotron-react-native/src/connection-manager.ts

-25
This file was deleted.

lib/reactotron-react-native/src/flipper-connection-manager.ts

-80
This file was deleted.

0 commit comments

Comments
 (0)