Skip to content

Commit 0c799e3

Browse files
author
Javier Arroyo
committedOct 30, 2019
[JSApp - UPDATED KOTLIN 1.3.50] Updated Kotlin in JSApp to 1.3.50
1 parent 5482901 commit 0c799e3

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,6 @@ xcuserdata
4040

4141
# CocoaPods
4242
Pods/
43+
44+
#Node Modules
45+
node_modules

‎JsApp/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ dependencies {
2222
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime-js:$serializer_version"
2323

2424

25-
implementation "org.jetbrains:kotlin-extensions:1.0.1-pre.79-kotlin-1.3.41"
25+
implementation "org.jetbrains:kotlin-extensions:1.0.1-pre.87-kotlin-1.3.50"
2626

27-
implementation "org.jetbrains:kotlin-react:$react_version-pre.79-kotlin-1.3.41"
27+
implementation "org.jetbrains:kotlin-react:$react_version-pre.87-kotlin-1.3.50"
2828

29-
implementation "org.jetbrains:kotlin-react-dom:$react_version-pre.79-kotlin-1.3.41"
29+
implementation "org.jetbrains:kotlin-react-dom:$react_version-pre.87-kotlin-1.3.50"
3030

3131

3232

@@ -61,9 +61,9 @@ kotlinFrontend {
6161
sourceMaps = false
6262

6363
npm {
64-
replaceVersion "kotlinx-html-js", '1.3.41'
65-
replaceVersion "kotlinx-html-shared", '1.3.41'
66-
replaceVersion "kotlin-js-library", '1.3.41'
64+
replaceVersion "kotlinx-html-js", '1.3.50'
65+
replaceVersion "kotlinx-html-shared", '1.3.50'
66+
replaceVersion "kotlin-js-library", '1.3.50'
6767

6868
dependency "react", "16.8.6"
6969
dependency "react-dom"

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ ext {
4646
coroutine_version = "1.2.1"
4747
serializer_version = "0.13.0"
4848
ktor_version = "1.2.5"
49-
react_version = "16.8.6"
49+
react_version = "16.9.0"
5050

5151
sqldelight_version = "1.2.0"
5252

0 commit comments

Comments
 (0)
Please sign in to comment.