You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes when saving changes quickly while developing locally, it can happen that there is a delay between the file being saved to disk and Maizzle reading it and compiling the template, which can result in an empty string being received by the render() method in Maizzle and an error being thrown.
This could very likely be easily fixed by using awaitWriteFinish in chokidar:
Furthermore, in some cases some change events will be emitted while the file is being written.
Sometimes when saving changes quickly while developing locally, it can happen that there is a delay between the file being saved to disk and Maizzle reading it and compiling the template, which can result in an empty string being received by the
render()
method in Maizzle and an error being thrown.This could very likely be easily fixed by using
awaitWriteFinish
inchokidar
:https://github.com/paulmillr/chokidar#performance
The text was updated successfully, but these errors were encountered: