@pnpm/installing.deps-restorer 1101.0.3 → 1101.0.5
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/lib/index.js +2 -2
- package/package.json +16 -16
package/lib/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { promises as fs } from 'node:fs';
|
|
|
2
2
|
import path from 'node:path';
|
|
3
3
|
import { linkBins, linkBinsOfPackages } from '@pnpm/bins.linker';
|
|
4
4
|
import { buildModules } from '@pnpm/building.during-install';
|
|
5
|
-
import { createAllowBuildFunction } from '@pnpm/building.policy';
|
|
5
|
+
import { createAllowBuildFunction, isBuildExplicitlyDisallowed } from '@pnpm/building.policy';
|
|
6
6
|
import { LAYOUT_VERSION, WANTED_LOCKFILE, } from '@pnpm/constants';
|
|
7
7
|
import { packageManifestLogger, progressLogger, stageLogger, statsLogger, summaryLogger, } from '@pnpm/core-loggers';
|
|
8
8
|
import { lockfileToDepGraph, } from '@pnpm/deps.graph-builder';
|
|
@@ -383,7 +383,7 @@ export async function headlessInstall(opts) {
|
|
|
383
383
|
if (opts.modulesFile?.ignoredBuilds?.size) {
|
|
384
384
|
ignoredBuilds ??= new Set();
|
|
385
385
|
for (const ignoredBuild of opts.modulesFile.ignoredBuilds.values()) {
|
|
386
|
-
if (filteredLockfile.packages?.[ignoredBuild]) {
|
|
386
|
+
if (filteredLockfile.packages?.[ignoredBuild] && !isBuildExplicitlyDisallowed(ignoredBuild, allowBuild)) {
|
|
387
387
|
ignoredBuilds.add(ignoredBuild);
|
|
388
388
|
}
|
|
389
389
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/installing.deps-restorer",
|
|
3
|
-
"version": "1101.0.
|
|
3
|
+
"version": "1101.0.5",
|
|
4
4
|
"description": "Fast installation using only pnpm-lock.yaml",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -36,32 +36,32 @@
|
|
|
36
36
|
"ramda": "npm:@pnpm/ramda@0.28.1",
|
|
37
37
|
"realpath-missing": "^2.0.0",
|
|
38
38
|
"@pnpm/bins.linker": "1100.0.3",
|
|
39
|
-
"@pnpm/building.policy": "1100.0.2",
|
|
40
|
-
"@pnpm/config.package-is-installable": "1100.0.3",
|
|
41
|
-
"@pnpm/building.during-install": "1101.0.2",
|
|
42
39
|
"@pnpm/constants": "1100.0.0",
|
|
43
40
|
"@pnpm/core-loggers": "1100.0.1",
|
|
41
|
+
"@pnpm/deps.path": "1100.0.2",
|
|
42
|
+
"@pnpm/building.during-install": "1101.0.4",
|
|
44
43
|
"@pnpm/deps.graph-builder": "1100.0.5",
|
|
45
44
|
"@pnpm/deps.graph-hasher": "1100.1.2",
|
|
46
|
-
"@pnpm/deps.path": "1100.0.2",
|
|
47
45
|
"@pnpm/error": "1100.0.0",
|
|
48
46
|
"@pnpm/exec.lifecycle": "1100.0.5",
|
|
47
|
+
"@pnpm/config.package-is-installable": "1100.0.3",
|
|
49
48
|
"@pnpm/installing.linking.hoist": "1100.0.3",
|
|
50
49
|
"@pnpm/fs.symlink-dependency": "1100.0.2",
|
|
51
|
-
"@pnpm/installing.linking.direct-dep-linker": "1100.0.2",
|
|
52
50
|
"@pnpm/installing.linking.modules-cleaner": "1100.0.5",
|
|
51
|
+
"@pnpm/installing.linking.direct-dep-linker": "1100.0.2",
|
|
53
52
|
"@pnpm/installing.modules-yaml": "1100.0.2",
|
|
54
|
-
"@pnpm/installing.linking.real-hoist": "1100.0.4",
|
|
55
53
|
"@pnpm/installing.package-requester": "1101.0.2",
|
|
54
|
+
"@pnpm/installing.linking.real-hoist": "1100.0.4",
|
|
56
55
|
"@pnpm/lockfile.filtering": "1100.0.5",
|
|
57
|
-
"@pnpm/lockfile.fs": "1100.0.4",
|
|
58
56
|
"@pnpm/lockfile.to-pnp": "1100.0.4",
|
|
59
|
-
"@pnpm/lockfile.utils": "1100.0.4",
|
|
60
57
|
"@pnpm/patching.config": "1100.0.2",
|
|
58
|
+
"@pnpm/lockfile.utils": "1100.0.4",
|
|
61
59
|
"@pnpm/pkg-manifest.reader": "1100.0.2",
|
|
60
|
+
"@pnpm/store.controller-types": "1100.0.4",
|
|
62
61
|
"@pnpm/types": "1101.0.0",
|
|
63
62
|
"@pnpm/workspace.project-manifest-reader": "1100.0.3",
|
|
64
|
-
"@pnpm/
|
|
63
|
+
"@pnpm/lockfile.fs": "1100.0.4",
|
|
64
|
+
"@pnpm/building.policy": "1100.0.3"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
67
|
"@pnpm/logger": ">=1001.0.0 <1002.0.0",
|
|
@@ -77,18 +77,18 @@
|
|
|
77
77
|
"load-json-file": "^7.0.1",
|
|
78
78
|
"tempy": "3.0.0",
|
|
79
79
|
"write-json-file": "^7.0.0",
|
|
80
|
-
"@pnpm/crypto.object-hasher": "1100.0.0",
|
|
81
80
|
"@pnpm/assert-project": "1100.0.4",
|
|
82
|
-
"@pnpm/
|
|
81
|
+
"@pnpm/crypto.object-hasher": "1100.0.0",
|
|
82
|
+
"@pnpm/installing.deps-restorer": "1101.0.5",
|
|
83
83
|
"@pnpm/installing.read-projects-context": "1100.0.5",
|
|
84
|
-
"@pnpm/logger": "1100.0.0",
|
|
85
84
|
"@pnpm/prepare": "1100.0.4",
|
|
86
85
|
"@pnpm/store.cafs": "1100.1.1",
|
|
87
86
|
"@pnpm/store.index": "1100.0.0",
|
|
88
|
-
"@pnpm/
|
|
89
|
-
"@pnpm/store.path": "1100.0.1",
|
|
87
|
+
"@pnpm/logger": "1100.0.0",
|
|
90
88
|
"@pnpm/test-fixtures": "1100.0.0",
|
|
91
|
-
"@pnpm/
|
|
89
|
+
"@pnpm/store.path": "1100.0.1",
|
|
90
|
+
"@pnpm/test-ipc-server": "1100.0.0",
|
|
91
|
+
"@pnpm/testing.temp-store": "1100.0.10"
|
|
92
92
|
},
|
|
93
93
|
"engines": {
|
|
94
94
|
"node": ">=22.13"
|