From 8e26fec13c98b34625dd40e1a3606e56c0f47e81 Mon Sep 17 00:00:00 2001 From: Oleksandr Karpovich Date: Wed, 19 Jul 2023 19:45:43 +0200 Subject: [PATCH] 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 --- html/compose-compiler-integration/build.gradle.kts | 1 + html/integration-core/build.gradle.kts | 1 + html/test-utils/build.gradle.kts | 1 + 3 files changed, 3 insertions(+) diff --git a/html/compose-compiler-integration/build.gradle.kts b/html/compose-compiler-integration/build.gradle.kts index 0dad470486..528710408d 100644 --- a/html/compose-compiler-integration/build.gradle.kts +++ b/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")) } } diff --git a/html/integration-core/build.gradle.kts b/html/integration-core/build.gradle.kts index e5788523f2..75784aa206 100644 --- a/html/integration-core/build.gradle.kts +++ b/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")) } } diff --git a/html/test-utils/build.gradle.kts b/html/test-utils/build.gradle.kts index a147c0d667..e67c05a3e9 100644 --- a/html/test-utils/build.gradle.kts +++ b/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")) }