Browse Source

web: add `testUtils` alias to gradle plugin (#1165)

This will allow to use the dependency like this:
`compose.web.testUtils`

Co-authored-by: Oleksandr Karpovich <oleksandr.karpovich@jetbrains.com>
pull/1187/head
Oleksandr Karpovich 3 years ago committed by GitHub
parent
commit
805797eb98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt

4
gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt

@ -153,6 +153,10 @@ class ComposePlugin : Plugin<Project> {
val widgets by lazy {
composeDependency("org.jetbrains.compose.web:web-widgets")
}
val testUtils by lazy {
composeDependency("org.jetbrains.compose.web:test-utils")
}
}
}

Loading…
Cancel
Save