We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We’ve got a Redwood Gradle plugin that implements the requirements of the widget system.
I think we could also use a Treehouse Gradle plugin.
It could make it much easier to set up application builds:
treehouseBuild { guestApplication { httpServerPort.set(23369) mainFunction.set("com.example.prepareTreehouse") mainModuleId.set("./example-treehouse.js") } }
And shared libraries for host, host+guest, and guest:
treehouseBuild { hostAndGuestLibrary() // or hostLibrary() or guestLibrary() }
We build guest libraries for both Kotlin/JS and Kotlin/JVM, so it’s possible to run JVM unit tests for guest code.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We’ve got a Redwood Gradle plugin that implements the requirements of the widget system.
I think we could also use a Treehouse Gradle plugin.
It could make it much easier to set up application builds:
And shared libraries for host, host+guest, and guest:
We build guest libraries for both Kotlin/JS and Kotlin/JVM, so it’s possible to run JVM unit tests for guest code.
The text was updated successfully, but these errors were encountered: