libnpmdiff 6.1.0 → 6.1.2

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/tarball.js +1 -1
  2. package/package.json +6 -6
package/lib/tarball.js CHANGED
@@ -9,7 +9,7 @@ const tar = require('tar')
9
9
 
10
10
  // returns a simplified tarball when reading files from node_modules folder,
11
11
  // thus avoiding running the prepare scripts and the extra logic from packlist
12
- const nodeModulesTarball = (manifest, opts) =>
12
+ const nodeModulesTarball = (manifest) =>
13
13
  pkgContents({ path: manifest._resolved, depth: 1 })
14
14
  .then(files =>
15
15
  files.map(file => relative(manifest._resolved, file))
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "libnpmdiff",
3
- "version": "6.1.0",
3
+ "version": "6.1.2",
4
4
  "description": "The registry diff",
5
5
  "repository": {
6
6
  "type": "git",
7
- "url": "https://github.com/npm/cli.git",
7
+ "url": "git+https://github.com/npm/cli.git",
8
8
  "directory": "workspaces/libnpmdiff"
9
9
  },
10
10
  "main": "lib/index.js",
@@ -42,22 +42,22 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@npmcli/eslint-config": "^4.0.0",
45
- "@npmcli/template-oss": "4.21.3",
45
+ "@npmcli/template-oss": "4.22.0",
46
46
  "tap": "^16.3.8"
47
47
  },
48
48
  "dependencies": {
49
- "@npmcli/arborist": "^7.2.1",
49
+ "@npmcli/arborist": "^7.5.2",
50
50
  "@npmcli/installed-package-contents": "^2.1.0",
51
51
  "binary-extensions": "^2.3.0",
52
52
  "diff": "^5.1.0",
53
53
  "minimatch": "^9.0.4",
54
54
  "npm-package-arg": "^11.0.2",
55
- "pacote": "^18.0.1",
55
+ "pacote": "^18.0.6",
56
56
  "tar": "^6.2.1"
57
57
  },
58
58
  "templateOSS": {
59
59
  "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
60
- "version": "4.21.3",
60
+ "version": "4.22.0",
61
61
  "content": "../../scripts/template-oss/index.js"
62
62
  },
63
63
  "tap": {