Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Bump wrappers to pre.282, to support Kotlin 1.6.10 #59

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions buildSrc/src/main/java/Libraries.kt
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
@Suppress("unused")
object Libraries {
class JsWrappers(kotlinVersion: String) {
private val wrappersBuild = "pre.246-kotlin-$kotlinVersion"
private val wrappersBuild = "pre.282-kotlin-$kotlinVersion"
private val prefix = "org.jetbrains.kotlin-wrappers:kotlin"

private val reactVersion = "${Npm.react}-$wrappersBuild"
val react = "$prefix-react:$reactVersion"
val reactDom = "$prefix-react-dom:$reactVersion"
val reactDomLegacy = "$prefix-react-dom-legacy:$reactVersion"

private val htmlVersion = "0.7.3"
val html = "org.jetbrains.kotlinx:kotlinx-html-js:$htmlVersion"
Expand All @@ -22,7 +23,7 @@ object Libraries {
}

object Npm {
const val styledComponent = "5.3.1"
const val styledComponent = "5.3.3"
const val inlineStyledPrefixer = "^5.1.2"
const val react = "17.0.2"

Expand Down
1 change: 1 addition & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ dependencies {
api(wrappers.html)
api(wrappers.react)
api(wrappers.reactDom)
api(wrappers.reactDomLegacy)
api(wrappers.css)
api(wrappers.extensions)

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
kotlin.code.style=official
kotlin.js.compiler=both

kotlin.version=1.5.30
kotlin.version=1.6.10
packages.group=net.subroh0508.kotlinmaterialui
packages.version=0.7.0-CICDTEST