expo-apple-authentication 56.0.3 → 56.0.4
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/CHANGELOG.md +6 -0
- package/package.json +3 -3
- package/plugin/index.d.ts +1 -0
- package/plugin/index.js +1 -1
- package/plugin/tsconfig.tsbuildinfo +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 56.0.4 — 2026-05-21
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Fix an ES module import error in the typed config plugin. ([#46089](https://github.com/expo/expo/pull/46089) by [@zoontek](https://github.com/zoontek))
|
|
18
|
+
|
|
13
19
|
## 56.0.3 — 2026-05-06
|
|
14
20
|
|
|
15
21
|
_This version does not introduce any user-facing changes._
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-apple-authentication",
|
|
3
|
-
"version": "56.0.
|
|
3
|
+
"version": "56.0.4",
|
|
4
4
|
"description": "A package that provides 'Sign in with Apple' capability for Expo and React Native apps.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"@types/node": "^22.14.0",
|
|
28
28
|
"@types/react": "~19.2.0",
|
|
29
29
|
"expo-module-scripts": "56.0.2",
|
|
30
|
-
"expo": "56.0.
|
|
30
|
+
"expo": "56.0.3"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"expo": "*",
|
|
34
34
|
"react": "*",
|
|
35
35
|
"react-native": "*"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "125e8225bf36a4b9b2a159441d9ea724bcf1110f",
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "expo-module build",
|
|
40
40
|
"clean": "expo-module clean",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './build';
|
package/plugin/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
module.exports = require('./build');
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"root":["./src/withappleauth.ts","./src/withappleauthios.ts"],"version":"5.9.2"}
|