I have been facing this error after updating my ko...
# javascript
n
I have been facing this error after updating my kotlinJs project dependencies to 1.4 for example the dependency below:
Copy code
implementation("org.jetbrains:kotlin-extensions:1.0.1-pre.112-kotlin-1.4.0")
Throws the error below:
Unable to resolve "kotlin-wrappers-kotlin-react-jsLegacy" from "shared/build/js/packages/shared/kotlin/shared.js"
I don't quite understand why the jsLegacy is part of the module name. I expected the module to be kotlin-extensions as in version 1.3.72?
r
1.4.0 versions of JB libraries are published with
BOTH
option for two compiler backends
👍 1
and one of the side effects is the module name suffix
👍 1
n
Is it possible to avoid the module suffix?
r
no - those names are already there
n
Okay thanks.