The compilation of Lime Build HTML5 is too slow, and we have to wait for a long time every time we debug. Is there an update like JS TS that can be seen by saving the code instead of compiling every time
The ts project can be debugged using a real-time server in webpack, and the code can be saved to see the effect without the need for each compilation. It is said to change the code structure in memory instead of writing files. Novices silently ask, is there such a fast debugging method?
I seem to recall that processing SWF assets takes a long time. It can be slower than compiling the source code (but it really depends on how much source code you are working with). So perhaps that it why it seems particularly slow to you.
If you run lime build html5 -verbose
, you can see extra terminal output for each step of the build process, which should allow you to verify what exactly is taking the longest.
1 Like