Hi 🙂
I have run into an issue while trying out KotlinJs 1.4-M1 with the new IR compiler backend and gradle 6.3: It seems that there is a lingering java process that keeps open file handles to the compiler output, (like
bodies.knb
) preventing any subsequent builds from touching the files. When I search for the process that has the file handles and kill it manually, I can build the project one more time. But after that, there is a new process that locks the files again.
I made a minimal example project to demonstrate this: https://github.com/LostMekka/kotlin-js-1.4-M1-error-demonstration.
Is anyone else having this issue?