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
Currently if a function throws an error each doesn't pass it on to metalsmith, but instead lets it bubble up to the top-level scope. Metalsmith each should instead catch the errors and forward them to Metalsmith via the done() callback.
The text was updated successfully, but these errors were encountered:
Thoughts on whether it should it just exit early, calling done() with the first error encountered, or instead collect all the errors and forward an array of all of them at the end?
Currently if a function throws an error each doesn't pass it on to metalsmith, but instead lets it bubble up to the top-level scope. Metalsmith each should instead catch the errors and forward them to Metalsmith via the
done()
callback.The text was updated successfully, but these errors were encountered: