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
It properly emits an error event should one occurs, however the code continues to execute resulting in another error upon output.imports.forEach(...) due to output being null. A simple output && output.import... should fix this issue.
Currently we are using this plugin with browserify and gulp. In the case of a less compilation error, the actual error is handled but the null reference error occurs outside of the event system and will result in a crash of the gulp process.
The text was updated successfully, but these errors were encountered:
In the render method:
It properly emits an error event should one occurs, however the code continues to execute resulting in another error upon
output.imports.forEach(...)
due tooutput
beingnull
. A simpleoutput && output.import...
should fix this issue.Currently we are using this plugin with
browserify
andgulp
. In the case of a less compilation error, the actual error is handled but the null reference error occurs outside of the event system and will result in a crash of thegulp
process.The text was updated successfully, but these errors were encountered: