Skip to content

Commit 6b195e2

Browse files
committedFeb 13, 2021
..
1 parent 30f815a commit 6b195e2

5 files changed

+10910
-2934
lines changed
 

‎lib/android.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ export declare type Event = {
3939
};
4040
export declare const Module: Module | undefined;
4141
export declare const Events: {
42-
addListener(eventType: "ReactNativeMoGeolocation", listener: (event: Event) => void): EmitterSubscription;
42+
addListener(eventType: 'ReactNativeMoGeolocation', listener: (event: Event) => void): EmitterSubscription;
4343
} | undefined;

‎lib/ios.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ export declare type Event = {
5757
};
5858
export declare const Module: Module | undefined;
5959
export declare const Events: {
60-
addListener(eventType: "ReactNativeMoGeolocation", listener: (event: Event) => void): EmitterSubscription;
60+
addListener(eventType: 'ReactNativeMoGeolocation', listener: (event: Event) => void): EmitterSubscription;
6161
} | undefined;

‎package-lock.json

+10,899-2,923
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-mo-geolocation",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "react-native geolocation api with background support",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
@@ -13,17 +13,17 @@
1313
"*.podspec"
1414
],
1515
"devDependencies": {
16-
"@types/react-native": "^0.61.22",
17-
"react": "^16.13.0",
18-
"react-native": "^0.61.5",
19-
"typescript": "^3.8.3"
16+
"@types/react-native": "^0.63.49",
17+
"react": "17.0.1",
18+
"react-native": "0.63.4",
19+
"typescript": "^4.1.5"
2020
},
2121
"dependencies": {
22-
"mo-core": "^0.1.4"
22+
"mo-core": "^0.1.5"
2323
},
2424
"peerDependencies": {
25-
"react": "*",
26-
"react-native": "*"
25+
"react": "^17.0.1",
26+
"react-native": "^0.63.4"
2727
},
2828
"repository": {
2929
"type": "git",

‎react-native-mo-geolocation.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
99
spec.ios.deployment_target = '9.0'
1010
spec.requires_arc = true
1111
spec.source_files = "ios/*/*.{h,m}"
12-
spec.dependency "React"
12+
spec.dependency "React-Core"
1313
spec.summary = package['description'] or "none"
1414
spec.homepage = package['homepage'] or "none"
1515
spec.license = package['license']

0 commit comments

Comments
 (0)
Please sign in to comment.