We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73d7bf1 commit 9606606Copy full SHA for 9606606
lib/config.js
@@ -195,7 +195,7 @@ const getFullConfig = async ({
195
isLatest,
196
// whether to install and update npm in ci
197
// only do this if we aren't using a custom path to bin
198
- updateNpm: !npmPath.isLocal,
+ updateNpm: !npmPath.isLocal && pkgConfig.updateNpm,
199
rootNpmPath: npmPath.root,
200
localNpmPath: npmPath.local,
201
rootNpxPath: npxPath.root,
lib/content/index.js
@@ -159,6 +159,7 @@ module.exports = {
159
npm: 'npm',
160
npx: 'npx',
161
npmSpec: 'latest',
162
+ updateNpm: true,
163
dependabot: 'increase-if-necessary',
164
unwantedPackages: [
165
'eslint',
0 commit comments