@pnpm/deps.graph-hasher 1100.2.2 → 1100.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/index.js +3 -3
  2. package/package.json +12 -9
package/lib/index.js CHANGED
@@ -237,9 +237,9 @@ export function lockfileToDepGraph(lockfile, supportedArchitectures) {
237
237
  }
238
238
  function computeBuiltDepPaths(entries, allowBuild) {
239
239
  const builtDepPaths = new Set();
240
- for (const { depPath, name, version } of entries) {
241
- if (allowBuild(name, version) === true) {
242
- builtDepPaths.add(depPath);
240
+ for (const entry of entries) {
241
+ if (allowBuild(entry.depPath) === true) {
242
+ builtDepPaths.add(entry.depPath);
243
243
  }
244
244
  }
245
245
  return builtDepPaths;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/deps.graph-hasher",
3
- "version": "1100.2.2",
3
+ "version": "1100.2.4",
4
4
  "description": "Calculates the state of a dependency",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -8,7 +8,10 @@
8
8
  ],
9
9
  "license": "MIT",
10
10
  "funding": "https://opencollective.com/pnpm",
11
- "repository": "https://github.com/pnpm/pnpm/tree/main/deps/graph-hasher",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/pnpm/pnpm/tree/main/deps/graph-hasher"
14
+ },
12
15
  "homepage": "https://github.com/pnpm/pnpm/tree/main/deps/graph-hasher#readme",
13
16
  "bugs": {
14
17
  "url": "https://github.com/pnpm/pnpm/issues"
@@ -26,16 +29,16 @@
26
29
  "dependencies": {
27
30
  "detect-libc": "^2.1.2",
28
31
  "@pnpm/crypto.object-hasher": "1100.0.0",
29
- "@pnpm/deps.path": "1100.0.5",
30
- "@pnpm/engine.runtime.system-version": "1100.0.0",
31
- "@pnpm/lockfile.types": "1100.0.8",
32
- "@pnpm/lockfile.utils": "1100.0.10",
33
- "@pnpm/types": "1101.2.0",
34
- "@pnpm/resolving.resolver-base": "1100.3.1"
32
+ "@pnpm/deps.path": "1100.0.7",
33
+ "@pnpm/engine.runtime.system-version": "1100.0.2",
34
+ "@pnpm/lockfile.types": "1100.0.10",
35
+ "@pnpm/lockfile.utils": "1100.0.12",
36
+ "@pnpm/resolving.resolver-base": "1100.4.1",
37
+ "@pnpm/types": "1101.3.1"
35
38
  },
36
39
  "devDependencies": {
37
40
  "@jest/globals": "30.3.0",
38
- "@pnpm/deps.graph-hasher": "1100.2.2"
41
+ "@pnpm/deps.graph-hasher": "1100.2.4"
39
42
  },
40
43
  "engines": {
41
44
  "node": ">=22.13"