Fail when message starting with something like ( or [
Opened this issue · 2 comments
monkeymonk commented
It seems that gulp-notify
fail completely (with pipe stuck) when the message start with a string that is not a-zA-Z0-9.
Example
gulp.src('./')
.pipe(notify({
title: '✖ Error',
message: '(Error) Lorem ipsum'
}));
mikaelbr commented
What OS are you running? Is there any error ouput?
monkeymonk commented
I'm on OS X 10.10.2
. There is no output and the notification doesn't show.
I see that it fail too in the title (using one of ()[]{}
at start). In that case, the title displayed is Terminal
.
I see also that using one of these ✘☁♞
will work...
'hope that helps!