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.
Files changed (2) hide show
  1. package/lib/fetcher.js +1 -1
  2. 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pacote",
3
- "version": "11.2.3",
3
+ "version": "11.2.4",
4
4
  "description": "JavaScript package downloader",
5
5
  "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
6
6
  "bin": {