-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve error handling in watch mode when dat file can't be read (or emcc fails) #260
Comments
There were a few overlapping things going on here, so I decided to address them all at once. The net effect of all these fixes is that the local development server ( The main thing that was lacking related to reading dat files is that the The other central fix was to remove the few remaining places where errors were being caught at a lower level and handled by calling Side note: There were a few other related fixes that are detailed below.
before:
after:
before:
after:
|
The
build
package has error handling in place already so that errors are caught and a message is displayed appropriately. However, there are still a couple cases where the build process exits while in watch mode when some error is encountered, for example if a dat file can't be read, or emcc/clang fails. We need to fix those cases so that the build process stays running and the error messages are reported correctly.The text was updated successfully, but these errors were encountered: