diff --git a/dist/jquery.scrollUp.js b/dist/jquery.scrollUp.js index cf5de96..baf9a0c 100644 --- a/dist/jquery.scrollUp.js +++ b/dist/jquery.scrollUp.js @@ -1,5 +1,5 @@ /*! - * scrollup v2.3.3 + * scrollup v2.4.0 * Url: http://markgoodyear.com/labs/scrollup/ * Copyright (c) Mark Goodyear — @markgdyr — http://markgoodyear.com * License: MIT diff --git a/dist/jquery.scrollUp.min.js b/dist/jquery.scrollUp.min.js index cd17819..3211d99 100644 --- a/dist/jquery.scrollUp.min.js +++ b/dist/jquery.scrollUp.min.js @@ -1,5 +1,5 @@ /*! - * scrollup v2.3.3 + * scrollup v2.4.0 * Url: http://markgoodyear.com/labs/scrollup/ * Copyright (c) Mark Goodyear — @markgdyr — http://markgoodyear.com * License: MIT diff --git a/gulpfile.js b/gulpfile.js index 4b0a884..ebc6574 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -32,3 +32,8 @@ gulp.task('default', function() { .pipe(uglify({ preserveComments: 'some' })) .pipe(gulp.dest('dist')); }); + +// Watch +gulp.task('watch', function() { + gulp.watch(config.src, ['default']); +});