In the KotlinConf keynote, Andrey mentioned that q...
# javascript
b
In the KotlinConf keynote, Andrey mentioned that quick autoreload was coming soon to Kotlin/JS:

https://youtu.be/0xKTM0A8gdI?t=2076

Is this functionality currently supported? I was trying to get it running in the context of this tutorial, but so far unsuccessful: https://play.kotlinlang.org/hands-on/The%20State%20of%20Kotlin%20JS/01_Introduction edit: (I have tried updating to
1.4.0-dev-74
and enabling Gradle's
--continuous
mode) edit #2: It now appears to work, updating to
1.4.0-dev-74
was not necessary. Previously was using
./gradlew run --continuous
but
./gradlew browserRun --continuous
was the correct command.
b
@Ilya Goncharov [JB] shouldn’t it work with
./gradlew run --continuous
?
i
@bashor Yes, as @breandan told in
edit
,
--continuous
is necessary, I believe we need to point it in Hands on
You can use short form of glag
-t
b
@Ilya Goncharov [JB] take a look “edit #2”
… Previously was using
./gradlew run --continuous
but
./gradlew browserRun --continuous
was the correct command.
👍 1
I believe we need to point it in Hands on
@Ilya Goncharov [JB] could you please check it and create an issue?
i
Okay I see, it should work with only
run
command and continuous mode
b
Yes, I used the
browserRun
task as described in @Sebastian Aigner’s KotlinConf talk and everything worked as expected