So I have a pretty simple JS project, modified run task to use --continuous. The task successfully keeps running. This no longer works for some reason. I got the messages in browser console about "recompiling", but then it says "nothing changed". At first I thought it was webpack, but on closer inspection, build/js/packages/projectName/kotlin-dce-dev/projectName.js is not actually being changed. I know this can work, because it used to - I don't know what changed. I have to restart the run task completely to get my updates to the browser. Any ideas?
t
turansky
01/03/2021, 12:58 AM
01.
./gradlew --stop
02.
./gradlew clean
j
Jorrit
01/03/2021, 10:17 AM
No change 😞
Jorrit
01/03/2021, 10:31 AM
Hmm, interesting, I find it does work if I run
gradlew -t run
from the commandline, it just doesn't work inside IDEA