From 62fa2f3835c0a58c390fbb723a5a7a02d931668e Mon Sep 17 00:00:00 2001 From: Jo Santana Date: Thu, 14 Jan 2016 10:27:57 -0200 Subject: [PATCH] FIXED problem with multiple notification messages --- bower.json | 2 +- gulpfile.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bower.json b/bower.json index 4618db9..53f2b3e 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "first", - "version": "0.7.0", + "version": "0.7.5", "description": "A CSS methodology applied to a nonintrusive framework.", "authors": [ "Jo Santana (http://josantana.net)" diff --git a/gulpfile.js b/gulpfile.js index 3ecaf0f..0e8e67c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -42,7 +42,7 @@ gulp.task('styles', function () })) .pipe(sourcemaps.write('../map')) .pipe(gulp.dest(dist)) - .pipe(notify('first: Built')); + .pipe(notify({ message: 'first: Built', onLast: true })); }); gulp.task('default', ['styles'], function ()