rnett
08/29/2021, 7:17 AMresolutionStrategy {
eachDependency {
useVersion("+")
}
}
(for the purpose of detecting out of date versions)
This works fine for JVM and common targets, but does not pick up NPM dependencies on JS targets (and doesn't properly use the latest version of non-NPM JS dependencies, but I suspect that's a separate issue). I found KotlinNpmResolutionManager
, but don't know what to do with it, is there an easy way to do this?