Hello!! I’m working with a multiplatform project a...
# multiplatform
m
Hello!! I’m working with a multiplatform project and I’m noticing that for everytime I want to see my changes in my browser I need to run again the Gradle task wasmJsBrowserDevelopmentRun. Is there a way to have like a ‘continuous’ build in which just by saving the contents of a file it will rerender everything with the updated code?
e
have you tried
Copy code
./gradlew wasmJsBrowserDevelopmentRun --continuous
?
(I haven't but the equivalent works in JS so maybe it works for wasm too)
e
That's worked for me in the past.
m
Just tried it and it worked! Thanks guys