I'm using a kotlin multiplatform project with kotl...
# javascript
t
I'm using a kotlin multiplatform project with kotlin/js and I'm trying to migrate to
kotlin.js.yarn = false
. The new package.lock file contains references to subprojects in my own repo! So every time I change the version of my repo, I have to run
kotlinUpgradePackageLock
again! (And that changes the package.lock file and I have to commit that again!) Does anyone know how to exclude your own project's sub projects from package.lock?
i
There is a YT issue for this and it's been open for a while unfortunately. I believe IIRC the solution for us was
org.gradle.configureondemand=false
in the gradle.properties as the only real work around.
Pretty unfortunate work around but better than always running upgrade
t
Thank you! Is this the issue? KT-55701
i
Yeah that was the one I stumbled into
e
But wouldn't that also happen with Yarn? I'm not familiar with Yarn as I am with npm tho.
a
@Ilya Goncharov [JB] ^^
t
I'm still seeing the issue after disabling configure on demand... Any other ideas?
😔 1