expo-maps 1.0.0-canary-20241008-90b13ad → 1.0.0-canary-20241018-bf4b2f7-1
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 +1 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
- Removed redundant usage of `EventEmitter` instance. ([#28946](https://github.com/expo/expo/pull/28946) by [@tsapeta](https://github.com/tsapeta))
|
|
19
19
|
- Removed all `NativeModulesProxy` occurrences. ([#31496](https://github.com/expo/expo/pull/31496) by [@reichhartd](https://github.com/reichhartd))
|
|
20
20
|
- Removed old `Platform.Version` checks. ([#31557](https://github.com/expo/expo/pull/31557) by [@reichhartd](https://github.com/reichhartd))
|
|
21
|
+
- Standardized Babel configuration to use `expo-module-scripts`. ([#31915](https://github.com/expo/expo/pull/31915) by [@reichhartd](https://github.com/reichhartd))
|
|
21
22
|
|
|
22
23
|
## 0.5.0 - 2024-09-23
|
|
23
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-maps",
|
|
3
|
-
"version": "1.0.0-canary-
|
|
3
|
+
"version": "1.0.0-canary-20241018-bf4b2f7-1",
|
|
4
4
|
"description": "Provides a Map component that uses Google Maps on Android and Apple Maps or Google Maps on iOS.",
|
|
5
5
|
"main": "build/Map.js",
|
|
6
6
|
"types": "build/Map.d.ts",
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"homepage": "https://docs.expo.dev",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"expo-asset": "11.0.0-canary-
|
|
36
|
+
"expo-asset": "11.0.0-canary-20241018-bf4b2f7"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"expo-module-scripts": "3.6.0-canary-
|
|
39
|
+
"expo-module-scripts": "3.6.0-canary-20241018-bf4b2f7-1"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"expo": "52.0.0-canary-
|
|
42
|
+
"expo": "52.0.0-canary-20241018-bf4b2f7",
|
|
43
43
|
"react": "*",
|
|
44
44
|
"react-native": "*"
|
|
45
45
|
},
|
|
46
46
|
"jest": {
|
|
47
47
|
"preset": "expo-module-scripts/ios"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "bf4b2f7ee85a6454ab9f0f97f247bf86d1a47769"
|
|
50
50
|
}
|