Skip to content

Commit

Permalink
Ignore scripts by default
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Dec 3, 2024
1 parent 433e7c9 commit 5ee2c2b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/dependency-manager-adapters/pnpm.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ module.exports = CoreObject.extend({
if (!mgrOptions.includes('--no-lockfile')) {
mgrOptions.push('--no-lockfile');
}

if (!mgrOptions.includes('--ignore-scripts')) {
mgrOptions.push('--ignore-scripts');
}
}

// Note: We are explicitly *not* using `--no-lockfile` here, so that we
Expand Down

0 comments on commit 5ee2c2b

Please sign in to comment.