I want to do something similar to: ```resolutionSt...
# gradle
r
I want to do something similar to:
Copy code
resolutionStrategy {
    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?