Skip to content

Commit

Permalink
Run npm install instead of npm ci.
Browse files Browse the repository at this point in the history
Due to unexpected os dependency of lib fs-events.
  • Loading branch information
mgsgde committed Apr 2, 2024
1 parent 1ec543b commit 852695e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 852695e

Please sign in to comment.