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 e1e3581
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"scripts": {
"lint": "npx eslint --max-warnings 0 --ext .js .",
"lintfix": "npx eslint --max-warnings 0 --fix --ext .js .",
"prebuild": "npm ci",
"prebuild": "npm install",
"build": "gulp build",
"tests": "gulp tests"
},
Expand Down

0 comments on commit e1e3581

Please sign in to comment.