From 8c150a4a00a16a38f57ee79ff664a0cbceffde48 Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Mon, 17 Jun 2019 13:40:11 -0600 Subject: [PATCH] move pack task to end of task list; remove description --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 14464f1..7d57e55 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -74,7 +74,7 @@ const bundleTask = createTask({ const packTask = createTask({ name: 'pack', - desc: 'Clean, lint, build, and bundle the UI for publishing (deprecated; use bundle instead)', + desc: '(deprecated; use bundle instead)', call: series(bundleTask), }) @@ -108,7 +108,7 @@ module.exports = exportTasks( buildTask, bundleTask, bundlePackTask, - packTask, previewTask, - previewBuildTask + previewBuildTask, + packTask ) -- 2.11.0