Skip to content

Commit be5372b

Browse files
committed
remove unneeded array glob
1 parent 532b58d commit be5372b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var uglify = require('gulp-uglify');
2828

2929
gulp.task('scripts', function() {
3030
// Minify and copy all JavaScript (except vendor scripts)
31-
gulp.src(['client/js/**/*.js'])
31+
gulp.src('client/js/**/*.js')
3232
.pipe(uglify())
3333
.pipe(gulp.dest('build/js'));
3434

0 commit comments

Comments
 (0)