From 9b01d7cade56e9d6df14796edec35fa37ee5e919 Mon Sep 17 00:00:00 2001 From: David DeSandro Date: Wed, 28 Oct 2015 22:51:08 -0400 Subject: [PATCH] fix lingering gulp bugs --- gulpfile.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 081abe2..c926aea 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -126,12 +126,12 @@ var uglify = require('gulp-uglify'); gulp.task( 'uglify', [ 'requirejs' ], function() { var banner = getBanner(); - gulp.src('dist/imagesloaded.pkgd.js') + gulp.src('imagesloaded.pkgd.js') .pipe( uglify() ) // add banner .pipe( addBanner( banner ) ) .pipe( rename('imagesloaded.pkgd.min.js') ) - .pipe( gulp.dest('dist') ); + .pipe( gulp.dest('.') ); }); // ----- version ----- // @@ -167,7 +167,5 @@ gulp.task( 'version', function() { gulp.task( 'default', [ 'hint', - 'jsonlint', - 'uglify', - 'css' + 'uglify' ]);