I've upgraded to 1.6.10 and now I have `kotlin-js-...
# javascript
r
I've upgraded to 1.6.10 and now I have
kotlin-js-store
directory in the root dir of my every project. It's probably related to
KT-34014
, but shouldn't it be optional?
1
At least it could be
.kotlin-js-store
(hidden dir)
t
YarnExtension?
r
If anyone is interested, this changes the default directory name:
Copy code
rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlugin> {
    rootProject.the<org.jetbrains.kotlin.gradle.targets.js.yarn.YarnRootExtension>().apply {
        lockFileDirectory = project.rootDir.resolve(".kotlin-js-store")
    }
}
🙌 1
t
m
Isn't the recommendation to commit this file?
t
Yes, common recommendation - commit
yarn.lock
👍 1