move pack task to end of task list; remove description
authorDan Allen <dan@opendevise.com>
Mon, 17 Jun 2019 19:40:11 +0000 (13:40 -0600)
committerDan Allen <dan@opendevise.com>
Mon, 17 Jun 2019 19:40:11 +0000 (13:40 -0600)
gulpfile.js

index 14464f1..7d57e55 100644 (file)
@@ -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
 )