From e9611ee90f18034cf5e6c70964971bd14147b317 Mon Sep 17 00:00:00 2001 From: Jeff Mueller Date: Mon, 16 Sep 2024 14:24:35 -0400 Subject: [PATCH] Try npm install instead of npm ci --- deploy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.php b/deploy.php index bd2b1f3..c8bffec 100644 --- a/deploy.php +++ b/deploy.php @@ -44,7 +44,7 @@ $stage = input()->getArgument('stage'); } cd('{{release_or_current_path}}'); - run("npm ci && npm run $stage"); + run("npm install && npm run $stage"); }); host('snaccooperative.org')