From c09f1ba44f6ad4c57d34a03261cf67d58724f9e9 Mon Sep 17 00:00:00 2001 From: Mathieu Baudier Date: Mon, 9 Oct 2023 08:43:31 +0100 Subject: [PATCH] Use npm ci to install from package-lock --- js/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/Makefile b/js/Makefile index 21c038f..a43be73 100644 --- a/js/Makefile +++ b/js/Makefile @@ -5,7 +5,7 @@ A2_CATEGORY = org.argeo.suite BUNDLES = \ org.argeo.app.js \ -all: npm-install webpack osgi +all: npm-ci webpack osgi webpack: npm run build-prod @@ -16,6 +16,9 @@ webpack-dev: clean: $(foreach bundle, $(BUNDLES), rm -rf $(bundle)/org) +npm-ci: + npm ci + npm-install: npm install -- 2.30.2