Skip to content

Commit 7caabba

Browse files
committed
Removed Silk and kobweb.core dependency.
1 parent 4a4ef2a commit 7caabba

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

bootstrap/build.gradle.kts

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ kotlin {
2424
val jsMain by getting {
2525
dependencies {
2626
implementation(compose.html.core)
27-
implementation(libs.kobweb.core)
2827
implementation(libs.kobweb.compose)
29-
implementation(npm("is-sorted", "1.0.5"))
3028
implementation(npm("bootstrap", "5.3.1"))
3129
}
3230
}
@@ -39,7 +37,7 @@ publishing {
3937
from(components["kotlin"])
4038
groupId = "com.github.stevdza-san"
4139
artifactId = "KotlinBootstrap"
42-
version = "0.0.5"
40+
version = "0.0.6"
4341
}
4442
}
4543
}

bootstrap/src/jsMain/kotlin/com/stevdza/san/kotlinbs/components/SpanText.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import com.varabyte.kobweb.compose.ui.toAttrs
66
import org.jetbrains.compose.web.dom.Span
77
import org.jetbrains.compose.web.dom.Text
88

9-
// This is a loose fork of SpanText from Kobweb's Silk widget set. However, we don't want to depend on Silk so
9+
// This is a loose fork of SpanText from Kobweb's Silk widget set. However, we don't want to depend on Silk, so
1010
// we just duplicate the subset of it we care about ourselves.
1111

1212
@Composable

0 commit comments

Comments
 (0)