Has the new yarn based system been tested on Java1...
# javascript
s
Has the new yarn based system been tested on Java11+ ? When I build with gradle on Java11 (vs. java 8 ) it fails on
postdist
script that it cannot find
mkdirp
which is included as a devdependency. We have seen other errors also like npm modules failing their
postinstall
script that cannot find
node
when they try to
node -e "Please donate..."
I dont understand how this can be related to the java version but its the only difference
i
Usually it can be related, that
postinstall
scripts use
node
from
PATH
, and if in env there is no
node
it can’t find it. I am not sure, that it is related with Java version
s
That is why I am asking if you are actually using it on Java 11+. From various sources I see hints that you/jetbrains are a bit late adopter of new java versions internally
a
I’ve been using Kotlin/JS on Java 11+ (14 currently) exclusively for over a year now. Not had any issues that I’ve traced to JVM version.