Skip to content

Commit 11fbf93

Browse files
committed
Updated NPM packages to address vulnerabilities.
Updated gulp to v4 and fixed syntax
1 parent e6c887c commit 11fbf93

File tree

3 files changed

+4451
-807
lines changed

3 files changed

+4451
-807
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ gulp.task("rename", function() {
1919
.pipe(gulp.dest("dist"));
2020
});
2121

22-
gulp.task("compress", ["rename"], function(cb) {
22+
gulp.task("compress", gulp.series("rename"), function(cb) {
2323
return pump([gulp.src("dist/*.min.js"), uglify(), gulp.dest("dist")], cb);
2424
});

0 commit comments

Comments
 (0)