Skip to content
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

onLast stops notifications #96

Open
mwain opened this issue Oct 8, 2015 · 0 comments
Open

onLast stops notifications #96

mwain opened this issue Oct 8, 2015 · 0 comments

Comments

@mwain
Copy link

mwain commented Oct 8, 2015

On Windows 8, when using the onLast option to show a notification for the last file stream only, it stops any notification appearing.

Test code:

var gulp = require('gulp'),
    notify = require('gulp-notify');

gulp.task('build', function () {
    gulp.src(['src/**'])
        .pipe(notify({
            title: 'Notifying',
            message: 'This works, muliple times'
        }));

    gulp.src(['src/**'])
        .pipe(notify({
            title: 'Notifying',
            message: 'Does not work, Should work?',
            onLast: true
        }));
});

Environment:

  • Windows 8.1
  • Node v4.1.0
  • Gulp v3.9.0
  • gulp-notify v2.2.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant