Refactor CssName and update build configuration.

Revised `CssName` to support optional override names and adjusted usage across multiple components for consistency. Updated build.gradle.kts to increment version and enable source maps in the browser configuration.
This commit is contained in:
2024-12-30 11:14:11 +01:00
parent 618dd52865
commit 684234e168
6 changed files with 52 additions and 37 deletions

View File

@@ -9,7 +9,7 @@ plugins {
}
group = "nl.astraeus"
version = "1.2.0"
version = "2.0.0-SNAPSHOT"
repositories {
mavenCentral()
@@ -27,7 +27,11 @@ kotlin {
target.set("es2015")
}
binaries.library()
browser {}
browser {
commonWebpackConfig {
sourceMaps = true
}
}
}
jvm {
withJava()
@@ -153,4 +157,4 @@ tasks.withType<PublishToMavenRepository> {
tasks.withType<PublishToMavenLocal> {
dependsOn(tasks.withType<Sign>())
}
}