From 718441beb6b9fca1f2824ed6bee700ca9debe2ea Mon Sep 17 00:00:00 2001 From: Victor Häggqvist Date: Sun, 17 Jan 2016 00:01:14 +0100 Subject: fix glob pattern --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gulpfile.js') diff --git a/gulpfile.js b/gulpfile.js index a25f814..4b9664a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -84,7 +84,7 @@ var bannerPlugins = ['/**', ''].join('\n'); gulp.task('buildjs', ['uglify'], function() { - return gulp.src(['./dist/LightBox.*.js', '!./dist/LightBox.Core.js', '!./dist/LightBox.Plugins.js']) + return gulp.src(['./dist/LightBox.*.js', '!./dist/LightBox.Core.min.js', '!./dist/LightBox.Plugins.js']) .pipe(concat('LightBox.Plugins.js')) .pipe(rename({suffix: ".min"})) .pipe(header(bannerPlugins, { pkg : pkg })) -- cgit v1.2.3