about summary refs log tree commit diff
path: root/web/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'web/GNUmakefile')
-rw-r--r--web/GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/GNUmakefile b/web/GNUmakefile
index a1738fa..4b56313 100644
--- a/web/GNUmakefile
+++ b/web/GNUmakefile
@@ -2,7 +2,7 @@
 DIST ?= dist
 # Change this to "development" for source maps and non-minifyed code
 NODE_ENV ?= production
-# If true, we don't attempt to fetch dependencies via yarn
+# If true, we don't attempt to fetch dependencies via npm
 OFFLINE ?= false
 
 ifeq ($(NODE_ENV),production)
@@ -26,7 +26,7 @@ $(DIST):
 	mkdir -p $@
 
 node_modules:
-	$(OFFLINE) || yarn install --frozen-lockfile --prod
+	$(OFFLINE) || npm install --production --omit=peer --omit=dev
 
 $(DIST)/vis-network.min.css: node_modules $(DIST)
 	$(ESBUILD) node_modules/vis-network/dist/dist/vis-network.min.css --outfile=$@