Skip to content

Commit

Permalink
Merge pull request #8 from MohamedRejeb/0.2.x
Browse files Browse the repository at this point in the history
Remove test from wasm
  • Loading branch information
MohamedRejeb committed Mar 23, 2024
2 parents 404b4b5 + 6186d31 commit 15c8c95
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion compose-dnd/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl

/*
Expand All @@ -39,7 +40,17 @@ plugins {
}

kotlin {
applyDefaultHierarchyTemplate()
@OptIn(ExperimentalKotlinGradlePluginApi::class)
applyDefaultHierarchyTemplate {
common {
group("nonWasm") {
withNative()
withJvm()
withAndroidTarget()
withJs()
}
}
}

androidTarget {
publishLibraryVariants("release")
Expand Down

0 comments on commit 15c8c95

Please sign in to comment.