From 852695ef7da1bc4fd401a779f31c02b312d3155c Mon Sep 17 00:00:00 2001 From: Magnus Goedde Date: Tue, 2 Apr 2024 11:02:23 +0200 Subject: [PATCH] Run npm install instead of npm ci. Due to unexpected os dependency of lib fs-events. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index bfaa17e..ab1ad97 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -97,7 +97,7 @@ function npm_install_contracts(cb) { return cb(); } - exec('npm ci', (error, stdout, stderr) => { + exec('npm install', (error, stdout, stderr) => { if (error) { console.error(stderr); throw error;