Hi I’m trying to fix an issue in `:js:js.translato...
# kontributors
t
Hi I’m trying to fix an issue in
:js:js.translator
that affects
:kotlin-test:kotlin-test-js:kotlin-test-js-it
I made changes to files in
:js:js.translator
and then rebuild it (
./gradlew :js:js.translator:build
) But it does not seem to affect behavior of
:kotlin-test:kotlin-test-js:kotlin-test-js-it
I’m sure there’s a missing step to ensure that module uses the newly (locally) built kotlin version, like
publishLocally
or something I tried
./gradlew install
in the root dir and then
mvn install
in the libraries dir but it still does not seem to work Any ideas? 🙏
i
You can publish the artifacts to the local directory with
./gradlew publish
and then use kotlin gradle plugin and compiler from there passing
-Pbootstrap.local
option to gradle
What was the issue, by the way?
t
Thanks a lot. I’m on it.
@ilya.gorbunov I just submitted the PR related to this https://github.com/JetBrains/kotlin/pull/2742