Skip to content

Commit 5ee2c2b

Browse files
committed
Ignore scripts by default
1 parent 433e7c9 commit 5ee2c2b

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

  • lib/dependency-manager-adapters

lib/dependency-manager-adapters/pnpm.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,10 @@ module.exports = CoreObject.extend({
122122
if (!mgrOptions.includes('--no-lockfile')) {
123123
mgrOptions.push('--no-lockfile');
124124
}
125+
126+
if (!mgrOptions.includes('--ignore-scripts')) {
127+
mgrOptions.push('--ignore-scripts');
128+
}
125129
}
126130

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

0 commit comments

Comments
 (0)