typeo in imagemin-watch
ohh gee, I made a mistake in the patch. it's supposed to be ``` /** * Ensures the 'imagemin' task is complete before reloading browsers * @verbose */ gulp.task( 'imagemin-watch', ['imagemin'], function( ) { browserSync.reload(); }); ``` Sorry for the inconvenience
This commit is contained in:
parent
4ab2e3d8c4
commit
466a98da36
|
@ -107,9 +107,8 @@ gulp.task( 'watch', function() {
|
|||
* Ensures the 'imagemin' task is complete before reloading browsers
|
||||
* @verbose
|
||||
*/
|
||||
gulp.task( 'imagemin-watch', ['imagemin'], function( done ) {
|
||||
gulp.task( 'imagemin-watch', ['imagemin'], function( ) {
|
||||
browserSync.reload();
|
||||
done();
|
||||
});
|
||||
|
||||
// Run:
|
||||
|
|
Reference in New Issue