From 287bdc8f947b77e5ea2de67506d2016f06b61743 Mon Sep 17 00:00:00 2001 From: Michael Kochell <6913320+mickmister@users.noreply.github.com> Date: Wed, 10 Aug 2022 10:51:56 -0400 Subject: [PATCH] Add --verbose flag to npm install (#577) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 128853f45..856a84456 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,7 @@ endif ## Ensures NPM dependencies are installed without having to run this all the time. webapp/node_modules: $(wildcard webapp/package.json) ifneq ($(HAS_WEBAPP),) - cd webapp && $(NPM) install + cd webapp && $(NPM) install --verbose touch $@ endif