I ran Haxe server with:
haxe --wait 6000
Then inside my Haxe project directory I ran:
haxelib run lime build html5 -release --connect 6000
I confirm the server is up and running at the time I run compilation command. The compilation command completes quickly and updates files in following directory:
$project/bin/html5/bin
However, the output files do not reflect any changes that I made in the project’s code before the compilation; As if the compiler do not sees the changes that I made. I cleaned browser cache to ensure that the browser do not cache - that didn’t help either.
If I kill the server and then re-build the project, the output files reflects with changed codes.
Why the incremental compilation do not sees the code changes (?) Is there any additional measure I would need to take before each compilation (?)
Please, help.
Thank you!