So I have a pretty simple JS project, modified run...
# javascript
j
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
01.
./gradlew --stop
02.
./gradlew clean
j
No change 😞
Hmm, interesting, I find it does work if I run
gradlew -t run
from the commandline, it just doesn't work inside IDEA
t
Looks like bug 😞