pacote 11.2.3 → 11.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/fetcher.js +1 -1
- package/package.json +1 -1
package/lib/fetcher.js
CHANGED
|
@@ -103,7 +103,7 @@ class FetcherBase {
|
|
|
103
103
|
this.npmBin = opts.npmBin || 'npm'
|
|
104
104
|
|
|
105
105
|
// command to install deps for preparing
|
|
106
|
-
this.npmInstallCmd = opts.npmInstallCmd || [ 'install' ]
|
|
106
|
+
this.npmInstallCmd = opts.npmInstallCmd || [ 'install', '--force' ]
|
|
107
107
|
|
|
108
108
|
// XXX fill more of this in based on what we know from this.opts
|
|
109
109
|
// we explicitly DO NOT fill in --tag, though, since we are often
|