pacote 11.3.0 → 11.3.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.
@@ -4,7 +4,13 @@ const tarCreateOptions = manifest => ({
4
4
  cwd: manifest._resolved,
5
5
  prefix: 'package/',
6
6
  portable: true,
7
- gzip: true,
7
+ gzip: {
8
+ // forcing the level to 9 seems to avoid some
9
+ // platform specific optimizations that cause
10
+ // integrity mismatch errors due to differing
11
+ // end results after compression
12
+ level: 9
13
+ },
8
14
 
9
15
  // ensure that package bins are always executable
10
16
  // Note that npm-packlist is already filtering out
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pacote",
3
- "version": "11.3.0",
3
+ "version": "11.3.1",
4
4
  "description": "JavaScript package downloader",
5
5
  "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
6
6
  "bin": {