Browse Source

Add explicit dependencies on modules to make it build with kotlin 1.9.0 (#3374)

* Add explicit dependencies on modules to make it build with kotlin 1.9.0

* Fix typo
# Conflicts:
#	html/buildSrc/gradle.properties
#	html/gradle.properties
#	html/kotlin-js-store/yarn.lock
release/1.4.2
Oleksandr Karpovich 1 year ago committed by Igor Demin
parent
commit
8e26fec13c
  1. 1
      html/compose-compiler-integration/build.gradle.kts
  2. 1
      html/integration-core/build.gradle.kts
  3. 1
      html/test-utils/build.gradle.kts

1
html/compose-compiler-integration/build.gradle.kts

@ -25,6 +25,7 @@ kotlin {
implementation(kotlin("stdlib-js"))
implementation(compose.runtime)
implementation(project(":html-core"))
implementation(project(":internal-html-core-runtime"))
}
}

1
html/integration-core/build.gradle.kts

@ -46,6 +46,7 @@ kotlin {
dependencies {
implementation(kotlin("stdlib-js"))
implementation(npm("highlight.js", "10.7.2"))
implementation(project(":internal-html-core-runtime"))
}
}

1
html/test-utils/build.gradle.kts

@ -24,6 +24,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(compose.runtime)
implementation(kotlin("stdlib-common"))
implementation(project(":internal-html-core-runtime"))
}

Loading…
Cancel
Save