Hi, I'm using a gradle composite build (e.g. using...
# javascript
g
Hi, I'm using a gradle composite build (e.g. using includeBuild(...) in the settings.gradle.kts file), and when I build with "gradlew --continuous jsRun", it keeps rebuilding even without changes being made by me. It is detecting changes in the included build, in the package.json file within the build\js\packages folder hierarchy. Any ideas why this is occurring and how I can prevent it?
n
do not use
includeBuild
instead publish those dependencies to
mavenLocal()
and maybe mark them as
isChanging = true
then it should only catch a change if you run
publishToMavenLocal
r
Also, you should report that as an issue, because it's definitely something that should work (and seems like they just need to fix their ignores)
👍 1
g
Thanks for the input. publishToMavenLocal works. And it turns out there was already an open issue for this, and I added to it. Link in case you are interested: https://youtrack.jetbrains.com/issue/KT-44754