From ab6b0d0caacc07604ac399169ff729f6d34c27db Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 12 Mar 2019 21:08:08 +0000 Subject: [PATCH] build: Document ci task better --- build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build b/build index 1141d76..e0e7634 100755 --- a/build +++ b/build @@ -140,9 +140,10 @@ task_ci() { execute npm --version; task_end $?; - + # Run setup in 'development' mode to get the right dependencies installed tasks_run setup; export NODE_ENV=production; + # Run the rest in 'production' mode to create a production build tasks_run main archive deploy; }