Skip to content

Commit 7292c97

Browse files
committed
Update dependencies
1 parent b4ac9b9 commit 7292c97

File tree

7 files changed

+678
-643
lines changed

7 files changed

+678
-643
lines changed

android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010

1111
dependencies {
1212
classpath 'com.android.tools.build:gradle:4.2.2'
13-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${safeExtGet('kotlinVersion', '1.5.20')}"
13+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${safeExtGet('kotlinVersion', '1.5.21')}"
1414
}
1515
}
1616

example/android/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ buildscript {
66
minSdkVersion = 21
77
compileSdkVersion = 30
88
targetSdkVersion = 30
9-
kotlinVersion = '1.5.20'
10-
ndkVersion = '22.1.7171670'
9+
kotlinVersion = '1.5.21'
10+
ndkVersion = '23.0.7599858'
1111
}
1212
repositories {
1313
google()

example/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@
1515
"react-native": "^0.64.2"
1616
},
1717
"devDependencies": {
18-
"@babel/core": "^7.14.6",
19-
"@babel/runtime": "^7.14.6",
18+
"@babel/core": "^7.15.0",
19+
"@babel/runtime": "^7.15.3",
2020
"@react-native-community/eslint-config": "^3.0.0",
2121
"@types/jest": "^26.0.24",
22-
"@types/react-native": "^0.64.12",
22+
"@types/react-native": "^0.64.13",
2323
"@types/react-test-renderer": "^17.0.1",
2424
"babel-jest": "^26.6.3",
25-
"eslint": "^7.30.0",
25+
"eslint": "^7.32.0",
2626
"eslint-plugin-simple-import-sort": "^7.0.0",
2727
"jest": "^26.6.3",
28-
"metro-react-native-babel-preset": "^0.66.1",
28+
"metro-react-native-babel-preset": "^0.66.2",
2929
"react-test-renderer": "^17.0.2",
3030
"typescript": "^4.3.5"
3131
},

example/yarn.lock

+330-313
Large diffs are not rendered by default.

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-module-template",
3-
"version": "2.2.4",
3+
"version": "2.2.5",
44
"description": "A starter for the React Native library written in TypeScript, with linked example project and optional native code in Swift and Kotlin.",
55
"homepage": "https://github.com/demchenkoalex/react-native-module-template#readme",
66
"main": "lib/index.js",
@@ -32,17 +32,17 @@
3232
"test": "jest"
3333
},
3434
"devDependencies": {
35-
"@babel/core": "^7.14.6",
36-
"@babel/runtime": "^7.14.6",
35+
"@babel/core": "^7.15.0",
36+
"@babel/runtime": "^7.15.3",
3737
"@react-native-community/eslint-config": "^3.0.0",
3838
"@types/jest": "^26.0.24",
39-
"@types/react-native": "^0.64.12",
39+
"@types/react-native": "^0.64.13",
4040
"@types/react-test-renderer": "^17.0.1",
4141
"babel-jest": "^26.6.3",
42-
"eslint": "^7.30.0",
42+
"eslint": "^7.32.0",
4343
"eslint-plugin-simple-import-sort": "^7.0.0",
4444
"jest": "^26.6.3",
45-
"metro-react-native-babel-preset": "^0.66.1",
45+
"metro-react-native-babel-preset": "^0.66.2",
4646
"react": "^17.0.2",
4747
"react-native": "^0.64.2",
4848
"react-test-renderer": "^17.0.2",

tsconfig.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
"compilerOptions": {
33
"declaration": true,
44
"esModuleInterop": true,
5-
"jsx": "react-native",
5+
"jsx": "react",
66
"lib": ["ESNext"],
7-
"module": "CommonJS",
7+
"module": "ESNext",
8+
"moduleResolution": "Node",
89
"noEmitOnError": true,
910
"outDir": "./lib",
1011
"skipLibCheck": true,
1112
"sourceMap": true,
1213
"strict": true,
13-
"target": "ESNext",
14+
"target": "ES2018",
1415
},
1516
"exclude": ["**/__tests__/*"],
1617
"include": ["src"]

yarn.lock

+330-313
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)