From c872c76b212a7adc33894980acdbcc4d534108f8 Mon Sep 17 00:00:00 2001 From: Timothy McCallum Date: Tue, 14 May 2024 07:37:26 +1000 Subject: [PATCH] Use `npm ci`, instead of `npm install` in the README Signed-off-by: tpmccallum tim.mccallum@fermyon.com Signed-off-by: Timothy McCallum --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 90c97571f..2d61f0089 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,9 @@ Build and run the website locally: ```bash cd spin-up-hub -npm install +npm ci cd ../ -npm install +npm ci spin build spin watch # Uses spin watch to run the website and reload when content changes. ```