Skip to content

Commit 3c98ef4

Browse files
committed
Exclude example-frontend-js
1 parent ad302c2 commit 3c98ef4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ apply plugin: "kover-conventions"
128128
apiValidation {
129129
ignoredProjects += unpublished + ["kotlinx-coroutines-bom"]
130130
if (build_snapshot_train) {
131-
ignoredProjects.remove("example-frontend-js")
131+
// ignoredProjects.remove("example-frontend-js")
132132
ignoredProjects.add(coreModule)
133133
}
134134
ignoredPackages += "kotlinx.coroutines.internal"

buildSrc/src/main/kotlin/Projects.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ val multiplatform = setOf(coreModule, testModule)
1515
val sourceless = setOf("kotlinx.coroutines", "kotlinx-coroutines-bom")
1616
val internal = setOf("kotlinx.coroutines", "benchmarks")
1717
// Not published
18-
val unpublished = internal + setOf("example-frontend-js", "android-unit-tests")
18+
val unpublished = internal + setOf(/*"example-frontend-js",*/ "android-unit-tests")
1919

2020
val Project.isMultiplatform: Boolean get() = name in multiplatform
2121

0 commit comments

Comments
 (0)