From d97ed69f0bf841016b43cf10485eccb75d36a7fe Mon Sep 17 00:00:00 2001 From: Ben Thorner Date: Thu, 5 May 2022 14:59:25 +0100 Subject: [PATCH] Turn off NPM auditing on installation This isn't useful as it mostly pertains to dev dependencies, where we're not concerned about vulnerabilities as they run in isolation. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6598f5176..d6fc3df85 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ VIRTUALENV_ROOT := $(shell [ -z $$VIRTUAL_ENV ] && echo $$(pwd)/venv || echo $$V .PHONY: bootstrap bootstrap: generate-version-file ## Set up everything to run the app pip3 install -r requirements_for_test.txt - source $(HOME)/.nvm/nvm.sh && nvm install && npm ci + source $(HOME)/.nvm/nvm.sh && nvm install && npm ci --no-audit . environment.sh; source $(HOME)/.nvm/nvm.sh && npm run build .PHONY: watch-frontend