diff --git a/CHANGELOG.md b/CHANGELOG.md index 39997de..17b27b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,6 @@ [//]: # (Removed, Added, Changed, Fixed, Updated) -### Fixed -- Exclude Kotlin JS DOM API dependency (redundant). - ## [0.1.0] - 2024-11-26 diff --git a/build.gradle.kts b/build.gradle.kts index 3958b63..6e24194 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -109,15 +109,6 @@ kover.reports { } allprojects { - // Exclude unused DOM API. - configurations.all { - resolutionStrategy.eachDependency { - if (requested.module.name == "kotlin-dom-api-compat") { - useTarget(libs.kotlin.stdlib.js) - } - } - } - // FIXME: Setup automatically. plugins.withType { tasks.withType().configureEach { diff --git a/fluxo-io-rad/dependencies/jsCompileClasspath.txt b/fluxo-io-rad/dependencies/jsCompileClasspath.txt index cec8955..6d5634b 100644 --- a/fluxo-io-rad/dependencies/jsCompileClasspath.txt +++ b/fluxo-io-rad/dependencies/jsCompileClasspath.txt @@ -1,3 +1,4 @@ +org.jetbrains.kotlin:kotlin-dom-api-compat:2.0.21 org.jetbrains.kotlin:kotlin-stdlib-js:2.0.21 org.jetbrains.kotlin:kotlin-stdlib:2.0.21 org.jetbrains.kotlin:kotlinx-atomicfu-runtime:2.0.21 diff --git a/fluxo-io-rad/dependencies/jsRuntimeClasspath.txt b/fluxo-io-rad/dependencies/jsRuntimeClasspath.txt index cec8955..6d5634b 100644 --- a/fluxo-io-rad/dependencies/jsRuntimeClasspath.txt +++ b/fluxo-io-rad/dependencies/jsRuntimeClasspath.txt @@ -1,3 +1,4 @@ +org.jetbrains.kotlin:kotlin-dom-api-compat:2.0.21 org.jetbrains.kotlin:kotlin-stdlib-js:2.0.21 org.jetbrains.kotlin:kotlin-stdlib:2.0.21 org.jetbrains.kotlin:kotlinx-atomicfu-runtime:2.0.21