pacote 19.0.2 → 20.0.1

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/dir.js +3 -0
  2. package/package.json +2 -2
package/lib/dir.js CHANGED
@@ -32,6 +32,9 @@ class DirFetcher extends Fetcher {
32
32
  if (!mani.scripts || !mani.scripts.prepare) {
33
33
  return
34
34
  }
35
+ if (this.opts.ignoreScripts) {
36
+ return
37
+ }
35
38
 
36
39
  // we *only* run prepare.
37
40
  // pre/post-pack is run by the npm CLI for publish and pack,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pacote",
3
- "version": "19.0.2",
3
+ "version": "20.0.1",
4
4
  "description": "JavaScript package downloader",
5
5
  "author": "GitHub Inc.",
6
6
  "bin": {
@@ -75,6 +75,6 @@
75
75
  "version": "4.29.0",
76
76
  "windowsCI": false,
77
77
  "publish": "true",
78
- "backport": 19
78
+ "backport": 20
79
79
  }
80
80
  }