Skip to content

Commit 12967b7

Browse files
authored
feat!: Support for Expo SDK 54 (#233 by @frankcalise)
* feat!: Expo SDK 54 * docs(changeset): Support for Expo SDK 54 * docs(README): compatibility table
1 parent 91ff5b1 commit 12967b7

File tree

20 files changed

+1639
-953
lines changed

20 files changed

+1639
-953
lines changed

.changeset/tender-dots-fry.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
"@infinitered/react-native-mlkit-document-scanner": major
3+
"@infinitered/react-native-mlkit-object-detection": major
4+
"@infinitered/react-native-mlkit-face-detection": major
5+
"@infinitered/react-native-mlkit-image-labeling": major
6+
"@infinitered/react-native-mlkit-core": major
7+
"example-app": major
8+
"@infinitered/tsconfig": minor
9+
---
10+
11+
Support for Expo SDK 54
-1.67 KB
Binary file not shown.
Binary file not shown.
-2.31 KB
Binary file not shown.
-7.76 KB
Binary file not shown.
-44.4 KB
Binary file not shown.
-3.33 KB
Binary file not shown.
-2.8 KB
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Running `yarn build` inside of an expo module workspace will start watch mode fo
114114
| ^51.0.0 | ^2.0.0 |
115115
| ^52.0.0 | ^3.0.0 |
116116
| ^53.0.0 | ^4.0.0 |
117-
| ^54.0.0 | WIP |
117+
| ^54.0.0 | ^5.0.0 |
118118

119119
### React Native Firebase
120120

apps/ExampleApp/babel.config.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,16 @@
22
const plugins = [
33
/** react-native-reanimated web support @see https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/installation/#web */
44
"@babel/plugin-proposal-export-namespace-from",
5-
/** NOTE: This must be last in the plugins @see https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/installation/#babel-plugin */
6-
"react-native-reanimated/plugin",
75
]
86

97
/** @type {import('@babel/core').TransformOptions} */
10-
module.exports = function(api) {
11-
api.cache(true);
8+
module.exports = function (api) {
9+
api.cache(true)
1210
return {
1311
presets: ["babel-preset-expo"],
1412
env: {
1513
production: {},
1614
},
1715
plugins,
18-
};
19-
};
16+
}
17+
}

0 commit comments

Comments
 (0)