@pnpm/deps.graph-builder 1100.2.0 → 1100.2.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.
- package/CHANGELOG.md +23 -0
- package/lib/iteratePkgsForVirtualStore.js +2 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @pnpm/deps.graph-builder
|
|
2
2
|
|
|
3
|
+
## 1100.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies:
|
|
8
|
+
- @pnpm/config.package-is-installable@1100.1.3
|
|
9
|
+
- @pnpm/deps.graph-hasher@1100.2.17
|
|
10
|
+
- @pnpm/lockfile.fs@1100.2.2
|
|
11
|
+
- @pnpm/lockfile.utils@1101.1.0
|
|
12
|
+
- @pnpm/patching.config@1100.1.1
|
|
13
|
+
- @pnpm/store.controller-types@1101.1.1
|
|
14
|
+
|
|
15
|
+
## 1100.2.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Fixed `link:` dependencies under `enableGlobalVirtualStore` so linked children are materialized and slots remain isolated by their resolved link targets.
|
|
20
|
+
|
|
21
|
+
- Updated dependencies:
|
|
22
|
+
- @pnpm/deps.graph-hasher@1100.2.16
|
|
23
|
+
- @pnpm/lockfile.fs@1100.2.1
|
|
24
|
+
- @pnpm/patching.config@1100.1.0
|
|
25
|
+
|
|
3
26
|
## 1100.2.0
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
|
@@ -42,7 +42,7 @@ export function* iteratePkgsForVirtualStore(lockfile, opts) {
|
|
|
42
42
|
if (dp.isRuntimeDepPath(depPath)) {
|
|
43
43
|
graphNodeHashOpts ??= {
|
|
44
44
|
cache: {},
|
|
45
|
-
graph: lockfileToDepGraph(lockfile, opts.supportedArchitectures),
|
|
45
|
+
graph: lockfileToDepGraph(lockfile, opts.supportedArchitectures, opts.lockfileDir),
|
|
46
46
|
supportedArchitectures: opts.supportedArchitectures,
|
|
47
47
|
nodeVersion,
|
|
48
48
|
lockfileDir: opts.lockfileDir,
|
|
@@ -61,7 +61,7 @@ export function* iteratePkgsForVirtualStore(lockfile, opts) {
|
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
function hashDependencyPaths(lockfile, opts) {
|
|
64
|
-
const graph = lockfileToDepGraph(lockfile, opts.supportedArchitectures);
|
|
64
|
+
const graph = lockfileToDepGraph(lockfile, opts.supportedArchitectures, opts.lockfileDir);
|
|
65
65
|
return iterateHashedGraphNodes(graph, iteratePkgMeta(lockfile, graph), opts);
|
|
66
66
|
}
|
|
67
67
|
//# sourceMappingURL=iteratePkgsForVirtualStore.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/deps.graph-builder",
|
|
3
|
-
"version": "1100.2.
|
|
3
|
+
"version": "1100.2.2",
|
|
4
4
|
"description": "A package for building a dependency graph from a lockfile",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -27,19 +27,19 @@
|
|
|
27
27
|
"!*.map"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@pnpm/config.package-is-installable": "1100.1.
|
|
30
|
+
"@pnpm/config.package-is-installable": "1100.1.3",
|
|
31
31
|
"@pnpm/constants": "1101.0.0",
|
|
32
32
|
"@pnpm/core-loggers": "1100.3.2",
|
|
33
|
-
"@pnpm/deps.graph-hasher": "1100.2.
|
|
33
|
+
"@pnpm/deps.graph-hasher": "1100.2.17",
|
|
34
34
|
"@pnpm/deps.path": "1100.1.0",
|
|
35
35
|
"@pnpm/fs.symlink-dependency": "1100.0.17",
|
|
36
36
|
"@pnpm/hooks.types": "1100.2.6",
|
|
37
37
|
"@pnpm/installing.modules-yaml": "1100.0.15",
|
|
38
|
-
"@pnpm/lockfile.fs": "1100.2.
|
|
39
|
-
"@pnpm/lockfile.utils": "1101.
|
|
40
|
-
"@pnpm/patching.config": "1100.
|
|
38
|
+
"@pnpm/lockfile.fs": "1100.2.2",
|
|
39
|
+
"@pnpm/lockfile.utils": "1101.1.0",
|
|
40
|
+
"@pnpm/patching.config": "1100.1.1",
|
|
41
41
|
"@pnpm/patching.types": "1100.0.1",
|
|
42
|
-
"@pnpm/store.controller-types": "1101.1.
|
|
42
|
+
"@pnpm/store.controller-types": "1101.1.1",
|
|
43
43
|
"@pnpm/types": "1101.9.0",
|
|
44
44
|
"path-exists": "^5.0.0",
|
|
45
45
|
"ramda": "npm:@pnpm/ramda@0.28.1"
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@jest/globals": "30.4.1",
|
|
52
|
-
"@pnpm/deps.graph-builder": "1100.2.
|
|
52
|
+
"@pnpm/deps.graph-builder": "1100.2.2",
|
|
53
53
|
"@pnpm/logger": "1100.0.0",
|
|
54
54
|
"@types/ramda": "0.32.0"
|
|
55
55
|
},
|