Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .evergreen/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,6 @@ fi
echo "npm location: $(which npm)"
echo "npm version: $(npm -v)"

npm install "${NPM_OPTIONS}"
npm install "${NPM_OPTIONS}" --ignore-scripts
npm run clean-build
ldd build/*/kerberos.node || true
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@
"precommit": "check-clang-format",
"docs": "jsdoc2md --template etc/README.hbs --plugin dmd-clear --files lib/kerberos.js > README.md",
"test": "mocha test",
"prebuild": "prebuild --runtime napi --strip --verbose --all"
"prebuild": "prebuild --runtime napi --strip --verbose --all",
"clean-build": "node-gyp clean && node-gyp configure && node-gyp build"
},
"engines": {
"node": ">=12.9.0"
Expand Down