@pnpm/installing.deps-installer 1101.0.4 → 1101.0.6
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/install/index.js +2 -2
- package/package.json +27 -27
package/lib/install/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import path from 'node:path';
|
|
|
2
2
|
import { linkBins, linkBinsOfPackages } from '@pnpm/bins.linker';
|
|
3
3
|
import { buildSelectedPkgs } from '@pnpm/building.after-install';
|
|
4
4
|
import { buildModules, linkBinsOfDependencies } from '@pnpm/building.during-install';
|
|
5
|
-
import { createAllowBuildFunction } from '@pnpm/building.policy';
|
|
5
|
+
import { createAllowBuildFunction, isBuildExplicitlyDisallowed } from '@pnpm/building.policy';
|
|
6
6
|
import { parseCatalogProtocol } from '@pnpm/catalogs.protocol-parser';
|
|
7
7
|
import { matchCatalogResolveResult, resolveFromCatalog } from '@pnpm/catalogs.resolver';
|
|
8
8
|
import { LAYOUT_VERSION, LOCKFILE_MAJOR_VERSION, LOCKFILE_VERSION, WANTED_LOCKFILE, } from '@pnpm/constants';
|
|
@@ -1079,7 +1079,7 @@ const _installInContext = async (projects, ctx, opts) => {
|
|
|
1079
1079
|
if (ctx.modulesFile?.ignoredBuilds?.size) {
|
|
1080
1080
|
ignoredBuilds ??= new Set();
|
|
1081
1081
|
for (const ignoredBuild of ctx.modulesFile.ignoredBuilds.values()) {
|
|
1082
|
-
if (result.currentLockfile.packages?.[ignoredBuild]) {
|
|
1082
|
+
if (result.currentLockfile.packages?.[ignoredBuild] && !isBuildExplicitlyDisallowed(ignoredBuild, opts.allowBuild)) {
|
|
1083
1083
|
ignoredBuilds.add(ignoredBuild);
|
|
1084
1084
|
}
|
|
1085
1085
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/installing.deps-installer",
|
|
3
|
-
"version": "1101.0.
|
|
3
|
+
"version": "1101.0.6",
|
|
4
4
|
"description": "Fast, disk space efficient installation engine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -64,54 +64,54 @@
|
|
|
64
64
|
"semver": "^7.7.2",
|
|
65
65
|
"@pnpm/agent.client": "1.0.1",
|
|
66
66
|
"@pnpm/bins.linker": "1100.0.3",
|
|
67
|
-
"@pnpm/building.after-install": "1101.0.
|
|
68
|
-
"@pnpm/building.during-install": "1101.0.
|
|
69
|
-
"@pnpm/building.policy": "1100.0.
|
|
70
|
-
"@pnpm/bins.remover": "1100.0.2",
|
|
71
|
-
"@pnpm/catalogs.resolver": "1100.0.0",
|
|
67
|
+
"@pnpm/building.after-install": "1101.0.6",
|
|
68
|
+
"@pnpm/building.during-install": "1101.0.4",
|
|
69
|
+
"@pnpm/building.policy": "1100.0.3",
|
|
72
70
|
"@pnpm/catalogs.protocol-parser": "1100.0.0",
|
|
71
|
+
"@pnpm/catalogs.resolver": "1100.0.0",
|
|
73
72
|
"@pnpm/config.matcher": "1100.0.1",
|
|
74
73
|
"@pnpm/config.normalize-registries": "1100.0.2",
|
|
74
|
+
"@pnpm/config.parse-overrides": "1100.0.1",
|
|
75
75
|
"@pnpm/catalogs.types": "1100.0.0",
|
|
76
76
|
"@pnpm/constants": "1100.0.0",
|
|
77
|
-
"@pnpm/config.parse-overrides": "1100.0.1",
|
|
78
77
|
"@pnpm/crypto.hash": "1100.0.1",
|
|
79
78
|
"@pnpm/crypto.object-hasher": "1100.0.0",
|
|
80
|
-
"@pnpm/deps.graph-hasher": "1100.1.2",
|
|
81
79
|
"@pnpm/core-loggers": "1100.0.1",
|
|
80
|
+
"@pnpm/deps.graph-hasher": "1100.1.2",
|
|
82
81
|
"@pnpm/deps.path": "1100.0.2",
|
|
83
|
-
"@pnpm/deps.graph-sequencer": "1100.0.0",
|
|
84
|
-
"@pnpm/exec.lifecycle": "1100.0.5",
|
|
85
|
-
"@pnpm/fs.read-modules-dir": "1100.0.1",
|
|
86
82
|
"@pnpm/error": "1100.0.0",
|
|
83
|
+
"@pnpm/exec.lifecycle": "1100.0.5",
|
|
84
|
+
"@pnpm/deps.graph-sequencer": "1100.0.0",
|
|
87
85
|
"@pnpm/fs.symlink-dependency": "1100.0.2",
|
|
88
86
|
"@pnpm/hooks.read-package-hook": "1100.0.2",
|
|
89
87
|
"@pnpm/hooks.types": "1100.0.4",
|
|
88
|
+
"@pnpm/installing.context": "1100.0.5",
|
|
90
89
|
"@pnpm/installing.deps-resolver": "1100.0.5",
|
|
91
|
-
"@pnpm/installing.deps-restorer": "1101.0.
|
|
92
|
-
"@pnpm/installing.linking.direct-dep-linker": "1100.0.2",
|
|
90
|
+
"@pnpm/installing.deps-restorer": "1101.0.5",
|
|
93
91
|
"@pnpm/installing.linking.hoist": "1100.0.3",
|
|
94
|
-
"@pnpm/installing.context": "1100.0.5",
|
|
95
92
|
"@pnpm/installing.linking.modules-cleaner": "1100.0.5",
|
|
96
93
|
"@pnpm/installing.modules-yaml": "1100.0.2",
|
|
94
|
+
"@pnpm/installing.linking.direct-dep-linker": "1100.0.2",
|
|
97
95
|
"@pnpm/installing.package-requester": "1101.0.2",
|
|
98
|
-
"@pnpm/
|
|
96
|
+
"@pnpm/bins.remover": "1100.0.2",
|
|
99
97
|
"@pnpm/lockfile.fs": "1100.0.4",
|
|
100
98
|
"@pnpm/lockfile.preferred-versions": "1100.0.5",
|
|
101
99
|
"@pnpm/lockfile.pruner": "1100.0.3",
|
|
102
|
-
"@pnpm/lockfile.utils": "1100.0.4",
|
|
103
|
-
"@pnpm/lockfile.to-pnp": "1100.0.4",
|
|
104
100
|
"@pnpm/lockfile.settings-checker": "1100.0.5",
|
|
105
|
-
"@pnpm/lockfile.
|
|
101
|
+
"@pnpm/lockfile.to-pnp": "1100.0.4",
|
|
102
|
+
"@pnpm/lockfile.filtering": "1100.0.5",
|
|
103
|
+
"@pnpm/lockfile.utils": "1100.0.4",
|
|
106
104
|
"@pnpm/lockfile.walker": "1100.0.3",
|
|
105
|
+
"@pnpm/lockfile.verification": "1100.0.5",
|
|
107
106
|
"@pnpm/patching.config": "1100.0.2",
|
|
108
|
-
"@pnpm/pkg-manifest.utils": "1100.1.1",
|
|
109
107
|
"@pnpm/resolving.parse-wanted-dependency": "1100.0.1",
|
|
108
|
+
"@pnpm/pkg-manifest.utils": "1100.1.1",
|
|
110
109
|
"@pnpm/store.controller-types": "1100.0.4",
|
|
110
|
+
"@pnpm/fs.read-modules-dir": "1100.0.1",
|
|
111
111
|
"@pnpm/store.index": "1100.0.0",
|
|
112
|
-
"@pnpm/
|
|
112
|
+
"@pnpm/types": "1101.0.0",
|
|
113
113
|
"@pnpm/workspace.project-manifest-reader": "1100.0.3",
|
|
114
|
-
"@pnpm/
|
|
114
|
+
"@pnpm/resolving.resolver-base": "1100.1.1"
|
|
115
115
|
},
|
|
116
116
|
"peerDependencies": {
|
|
117
117
|
"@pnpm/logger": ">=1001.0.0 <1002.0.0",
|
|
@@ -139,20 +139,20 @@
|
|
|
139
139
|
"write-json-file": "^7.0.0",
|
|
140
140
|
"write-yaml-file": "^6.0.0",
|
|
141
141
|
"@pnpm/assert-project": "1100.0.4",
|
|
142
|
-
"@pnpm/lockfile.types": "1100.0.3",
|
|
143
142
|
"@pnpm/assert-store": "1100.0.4",
|
|
143
|
+
"@pnpm/lockfile.types": "1100.0.3",
|
|
144
144
|
"@pnpm/logger": "1100.0.0",
|
|
145
|
-
"@pnpm/installing.deps-installer": "1101.0.4",
|
|
146
145
|
"@pnpm/network.git-utils": "1100.0.1",
|
|
147
146
|
"@pnpm/pkg-manifest.reader": "1100.0.2",
|
|
148
|
-
"@pnpm/
|
|
149
|
-
"@pnpm/store.cafs": "1100.1.1",
|
|
147
|
+
"@pnpm/installing.deps-installer": "1101.0.6",
|
|
150
148
|
"@pnpm/prepare": "1100.0.4",
|
|
149
|
+
"@pnpm/resolving.registry.types": "1100.0.2",
|
|
151
150
|
"@pnpm/test-fixtures": "1100.0.0",
|
|
152
151
|
"@pnpm/test-ipc-server": "1100.0.0",
|
|
153
|
-
"@pnpm/store.
|
|
152
|
+
"@pnpm/store.cafs": "1100.1.1",
|
|
154
153
|
"@pnpm/testing.mock-agent": "1100.0.2",
|
|
155
|
-
"@pnpm/
|
|
154
|
+
"@pnpm/store.path": "1100.0.1",
|
|
155
|
+
"@pnpm/testing.temp-store": "1100.0.10"
|
|
156
156
|
},
|
|
157
157
|
"engines": {
|
|
158
158
|
"node": ">=22.13"
|