JM Vincenti
10/31/2024, 8:41 AMnpm
on Kotlin JS ?
Today on Ktor there is a dependency on ws with the version 8.5.0. And this version have a known vulnerability (cf here).
So when exporting a KMP project, this dependency will be explicit on the package.json of the productionLibrary.
The vulnerability itself is not a big deal but automated Yarn audits on Web project are alerting about this vulnerability and I'm looking for a way to either enforce a more recent version or avoid this dependency, as we don't use it.Vampire
10/31/2024, 9:42 AMkotlinWrappers.nullWritable
in a project. This has an NPM dependency on null-writable
2.0.1
. For a reason I wanted to try with 1.0.5
. I added an NPM dependency on that version and it was indeed used. So maybe try to simply depend on the version you want. Maybe declaration order is relevant.JM Vincenti
10/31/2024, 10:01 AM