Skip to content

Commit

Permalink
Use unique moduleName parameters (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm authored Aug 30, 2024
1 parent a5a9d4f commit ef401fe
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .kotlin-js-store/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ emoji-regex@^8.0.0:
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==

escalade@^3.1.1:
version "3.1.2"
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27"
integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==
version "3.2.0"
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5"
integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==

[email protected]:
version "4.0.0"
Expand Down
5 changes: 2 additions & 3 deletions build-logic/src/main/kotlin/-KmpConfigurationExtension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ fun KmpConfigurationExtension.configureShared(
js {
target {
nodejs {
@Suppress("RedundantSamConstructor")
testTask(Action {
testTask {
useMocha { timeout = "30s" }
})
}
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ androidx-test-runner = "1.5.2"

gradle-android = "8.2.2"
gradle-binary-compat = "0.14.0"
gradle-kmp-configuration = "0.2.2"
gradle-kmp-configuration = "0.3.2"
gradle-kotlin = "1.9.24"
gradle-publish-maven = "0.28.0"
gradle-publish-maven = "0.29.0"

# tests
encoding = "2.2.1"
Expand Down
4 changes: 4 additions & 0 deletions library/file/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ private val testConfig = TestConfigInject()

kmpConfiguration {
configureShared(publish = true) {
options {
useUniqueModuleNames = true
}

jvm {
@OptIn(ExperimentalKmpConfigurationApi::class)
java9ModuleInfoName = "io.matthewnelson.kmp.file"
Expand Down

0 comments on commit ef401fe

Please sign in to comment.