From 48f19ec4bcf4f2cf0095add6065e580b828020ed Mon Sep 17 00:00:00 2001 From: Michael Kochell <6913320+mickmister@users.noreply.github.com> Date: Fri, 3 Jun 2022 05:19:14 -0400 Subject: [PATCH] npm install --verbose (#170) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a2f7e807..fb077bb9 100644 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ endif ## Ensures NPM dependencies are installed without having to run this all the time. webapp/node_modules: webapp/package.json ifneq ($(HAS_WEBAPP),) - cd webapp && $(NPM) install + cd webapp && $(NPM) install --verbose touch $@ endif