Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,10 @@ dependencies {
implementation jscFlavor
}
}

// The bundle task only watches JS sources under example/. The library sources live at the
// repository root in this hoisted pnpm workspace, so register them as inputs too.
tasks.matching { it.name.startsWith("createBundle") && it.name.endsWith("JsAndAssets") }.configureEach {
inputs.files(fileTree("../../../src") { include "**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx" })
.withPathSensitivity(org.gradle.api.tasks.PathSensitivity.RELATIVE)
}
Loading