From 9bbef7d887b78fe76fc0481981cff20f16c07846 Mon Sep 17 00:00:00 2001 From: Jason Brown Date: Thu, 9 Sep 2021 16:31:12 -0400 Subject: [PATCH] Added packJavaScript task to default gulp task --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 04e8f6cd..1aa1fa48 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -202,4 +202,4 @@ exports["min:js"] = min_js; exports["min:css"] = min_css; exports["min:html"] = min_html; exports.compress = series(exports.min, packJavaScript, compress); -exports.default = series(clean, lint, exports.min); +exports.default = series(clean, lint, exports.min, exports.packJavaScript);