summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Häggqvist <[email protected]>2016-01-17 00:01:14 +0100
committerVictor Häggqvist <[email protected]>2016-01-17 00:01:14 +0100
commit718441beb6b9fca1f2824ed6bee700ca9debe2ea (patch)
tree28be90d61ddbf84e49aba97e5eeda1e2bcf58124
parent0f79595c57940300b7d6568a0b7ee78966bad607 (diff)
fix glob pattern
-rw-r--r--gulpfile.js2
1 files changed, 1 insertions, 1 deletions
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 }))