From e12fc7642a3c33309e957ed10ec95559d0e58ac2 Mon Sep 17 00:00:00 2001 From: Mari Date: Wed, 13 May 2020 16:01:50 -0400 Subject: [PATCH] Autocommitted updated scripts from mari-wovn --- per-host/mari-wovn/.bash_aliases | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/per-host/mari-wovn/.bash_aliases b/per-host/mari-wovn/.bash_aliases index 8490550..e345ba0 100644 --- a/per-host/mari-wovn/.bash_aliases +++ b/per-host/mari-wovn/.bash_aliases @@ -80,19 +80,19 @@ function wovn_install() { printf "=== Installing Ruby dependencies...\n" bundle install || exit "$?" fi - if ! yarn install --offline --check-files --silent; then + if ! yarn install --offline --check-files --no-progress --ignore-optional --silent; then printf "=== Installing Javascript dependencies in top level...\n" yarn install || exit "$?" fi cd widget || exit "$?" - if ! yarn install --offline --check-files --silent; then + if ! yarn install --offline --check-files --no-progress --ignore-optional --silent; then printf "=== Installing Javascript dependencies in widget...\n" yarn install || exit "$?" yarn build || exit "$?" fi cd .. || exit "$?" cd front || exit "$?" - if ! yarn install --offline --check-files --silent; then + if ! yarn install --offline --check-files --no-progress --ignore-optional --silent; then printf "=== Installing Javascript dependencies in front...\n" yarn install fi