pnpm 7.4.1 → 7.5.0
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/README.md +3 -0
- package/dist/node_modules/.modules.yaml +2 -2
- package/dist/pnpm.cjs +33 -19
- package/dist/pnpx.cjs +32 -18
- package/package.json +39 -39
package/README.md
CHANGED
|
@@ -40,6 +40,9 @@ To quote the [Rush](https://rushjs.io/) team:
|
|
|
40
40
|
<td align="center" valign="middle">
|
|
41
41
|
<a href="https://nhost.io/?utm_source=pnpm&utm_medium=readme" target="_blank"><img src="https://raw.githubusercontent.com/pnpm/pnpm.github.io/main/static/img/users/nhost.svg" width="180"></a>
|
|
42
42
|
</td>
|
|
43
|
+
<td align="center" valign="middle">
|
|
44
|
+
<a href="https://novu.co/?utm_source=pnpm&utm_medium=readme" target="_blank"><img src="https://raw.githubusercontent.com/pnpm/pnpm.github.io/main/static/img/users/novu.svg" width="180"></a>
|
|
45
|
+
</td>
|
|
43
46
|
</tr>
|
|
44
47
|
</table>
|
|
45
48
|
|
|
@@ -7,11 +7,11 @@ included:
|
|
|
7
7
|
injectedDeps: {}
|
|
8
8
|
layoutVersion: 5
|
|
9
9
|
nodeLinker: hoisted
|
|
10
|
-
packageManager: pnpm@7.4.
|
|
10
|
+
packageManager: pnpm@7.4.1
|
|
11
11
|
pendingBuilds:
|
|
12
12
|
- /node-gyp/8.4.1
|
|
13
13
|
- /encoding/0.1.13
|
|
14
|
-
prunedAt:
|
|
14
|
+
prunedAt: Sat, 02 Jul 2022 13:19:25 GMT
|
|
15
15
|
publicHoistPattern:
|
|
16
16
|
- '*eslint*'
|
|
17
17
|
- '*prettier*'
|
package/dist/pnpm.cjs
CHANGED
|
@@ -3182,7 +3182,7 @@ var require_lib4 = __commonJS({
|
|
|
3182
3182
|
var load_json_file_1 = __importDefault(require_load_json_file());
|
|
3183
3183
|
var defaultManifest = {
|
|
3184
3184
|
name: "pnpm" != null && true ? "pnpm" : "pnpm",
|
|
3185
|
-
version: "7.
|
|
3185
|
+
version: "7.5.0" != null && true ? "7.5.0" : "0.0.0"
|
|
3186
3186
|
};
|
|
3187
3187
|
var pkgJson;
|
|
3188
3188
|
if (require.main == null) {
|
|
@@ -43739,23 +43739,27 @@ var require_getPref = __commonJS({
|
|
|
43739
43739
|
exports2.getPrefix = getPrefix;
|
|
43740
43740
|
function getPref(alias, name, version, opts) {
|
|
43741
43741
|
const prefix = (0, exports2.getPrefix)(alias, name);
|
|
43742
|
-
return `${prefix}${createVersionSpec(version, opts.pinnedVersion)}`;
|
|
43742
|
+
return `${prefix}${createVersionSpec(version, { pinnedVersion: opts.pinnedVersion })}`;
|
|
43743
43743
|
}
|
|
43744
43744
|
exports2.getPref = getPref;
|
|
43745
|
-
function createVersionSpec(version,
|
|
43746
|
-
|
|
43747
|
-
return "*";
|
|
43748
|
-
switch (pinnedVersion ?? "major") {
|
|
43745
|
+
function createVersionSpec(version, opts) {
|
|
43746
|
+
switch (opts.pinnedVersion ?? "major") {
|
|
43749
43747
|
case "none":
|
|
43750
43748
|
return "*";
|
|
43751
43749
|
case "major":
|
|
43752
|
-
|
|
43750
|
+
if (opts.rolling)
|
|
43751
|
+
return "^";
|
|
43752
|
+
return !version ? "*" : `^${version}`;
|
|
43753
43753
|
case "minor":
|
|
43754
|
-
|
|
43754
|
+
if (opts.rolling)
|
|
43755
|
+
return "~";
|
|
43756
|
+
return !version ? "*" : `~${version}`;
|
|
43755
43757
|
case "patch":
|
|
43756
|
-
|
|
43758
|
+
if (opts.rolling)
|
|
43759
|
+
return "*";
|
|
43760
|
+
return !version ? "*" : `${version}`;
|
|
43757
43761
|
default:
|
|
43758
|
-
throw new error_1.default("BAD_PINNED_VERSION", `Cannot pin '${pinnedVersion ?? "undefined"}'`);
|
|
43762
|
+
throw new error_1.default("BAD_PINNED_VERSION", `Cannot pin '${opts.pinnedVersion ?? "undefined"}'`);
|
|
43759
43763
|
}
|
|
43760
43764
|
}
|
|
43761
43765
|
exports2.createVersionSpec = createVersionSpec;
|
|
@@ -82377,13 +82381,18 @@ var require_lib40 = __commonJS({
|
|
|
82377
82381
|
exports2.fetchNode = void 0;
|
|
82378
82382
|
var fs_1 = __importDefault(require("fs"));
|
|
82379
82383
|
var path_1 = __importDefault(require("path"));
|
|
82384
|
+
var error_1 = __importDefault(require_lib8());
|
|
82380
82385
|
var create_cafs_store_1 = __importDefault(require_lib36());
|
|
82381
82386
|
var tarball_fetcher_1 = __importStar2(require_lib39());
|
|
82382
82387
|
var adm_zip_1 = __importDefault(require_adm_zip());
|
|
82383
82388
|
var rename_overwrite_1 = __importDefault(require_rename_overwrite());
|
|
82384
82389
|
var tempy_1 = __importDefault(require_tempy());
|
|
82390
|
+
var detect_libc_1 = require_detect_libc();
|
|
82385
82391
|
var getNodeTarball_1 = require_getNodeTarball();
|
|
82386
82392
|
async function fetchNode(fetch, version, targetDir, opts) {
|
|
82393
|
+
if (await (0, detect_libc_1.isNonGlibcLinux)()) {
|
|
82394
|
+
throw new error_1.default("MUSL", 'The current system uses the "MUSL" C standard library. Node.js currently has prebuilt artifacts only for the "glibc" libc, so we can install Node.js only for glibc');
|
|
82395
|
+
}
|
|
82387
82396
|
const nodeMirrorBaseUrl = opts.nodeMirrorBaseUrl ?? "https://nodejs.org/download/release/";
|
|
82388
82397
|
const { tarball, pkgName } = (0, getNodeTarball_1.getNodeTarball)(version, nodeMirrorBaseUrl, process.platform, process.arch);
|
|
82389
82398
|
if (tarball.endsWith(".zip")) {
|
|
@@ -87376,7 +87385,8 @@ var require_lib56 = __commonJS({
|
|
|
87376
87385
|
}
|
|
87377
87386
|
exports2.createBase32Hash = createBase32Hash;
|
|
87378
87387
|
async function createBase32HashFromFile(file) {
|
|
87379
|
-
|
|
87388
|
+
const content = await fs_1.default.promises.readFile(file, "utf8");
|
|
87389
|
+
return createBase32Hash(content.split("\r\n").join("\n"));
|
|
87380
87390
|
}
|
|
87381
87391
|
exports2.createBase32HashFromFile = createBase32HashFromFile;
|
|
87382
87392
|
}
|
|
@@ -121163,10 +121173,11 @@ var require_lib104 = __commonJS({
|
|
|
121163
121173
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
121164
121174
|
var semver_utils_1 = require_semver_utils();
|
|
121165
121175
|
function whichVersionIsPinned(spec) {
|
|
121166
|
-
|
|
121176
|
+
const isWorkspaceProtocol = spec.startsWith("workspace:");
|
|
121177
|
+
if (isWorkspaceProtocol)
|
|
121167
121178
|
spec = spec.slice("workspace:".length);
|
|
121168
121179
|
if (spec === "*")
|
|
121169
|
-
return "none";
|
|
121180
|
+
return isWorkspaceProtocol ? "patch" : "none";
|
|
121170
121181
|
const parsedRange = (0, semver_utils_1.parseRange)(spec);
|
|
121171
121182
|
if (parsedRange.length !== 1)
|
|
121172
121183
|
return void 0;
|
|
@@ -123680,13 +123691,15 @@ var require_updateProjectManifest = __commonJS({
|
|
|
123680
123691
|
if (normalizedPref) {
|
|
123681
123692
|
pref = normalizedPref;
|
|
123682
123693
|
} else {
|
|
123694
|
+
const shouldUseWorkspaceProtocol = resolution.type === "directory" && (Boolean(opts.saveWorkspaceProtocol) || opts.preserveWorkspaceProtocol && specRaw.includes("@workspace:")) && opts.pinnedVersion !== "none";
|
|
123683
123695
|
if (isNew === true) {
|
|
123684
123696
|
pref = getPrefPreferSpecifiedSpec({
|
|
123685
123697
|
alias,
|
|
123686
123698
|
name,
|
|
123687
123699
|
pinnedVersion: opts.pinnedVersion,
|
|
123688
123700
|
specRaw,
|
|
123689
|
-
version
|
|
123701
|
+
version,
|
|
123702
|
+
rolling: shouldUseWorkspaceProtocol && opts.saveWorkspaceProtocol === "rolling"
|
|
123690
123703
|
});
|
|
123691
123704
|
} else {
|
|
123692
123705
|
pref = getPrefPreferSpecifiedExoticSpec({
|
|
@@ -123694,10 +123707,11 @@ var require_updateProjectManifest = __commonJS({
|
|
|
123694
123707
|
name,
|
|
123695
123708
|
pinnedVersion: opts.pinnedVersion,
|
|
123696
123709
|
specRaw,
|
|
123697
|
-
version
|
|
123710
|
+
version,
|
|
123711
|
+
rolling: shouldUseWorkspaceProtocol && opts.saveWorkspaceProtocol === "rolling"
|
|
123698
123712
|
});
|
|
123699
123713
|
}
|
|
123700
|
-
if (
|
|
123714
|
+
if (shouldUseWorkspaceProtocol && !pref.startsWith("workspace:")) {
|
|
123701
123715
|
pref = `workspace:${pref}`;
|
|
123702
123716
|
}
|
|
123703
123717
|
}
|
|
@@ -123723,7 +123737,7 @@ var require_updateProjectManifest = __commonJS({
|
|
|
123723
123737
|
if (semver_12.default.parse(opts.version)?.prerelease.length) {
|
|
123724
123738
|
return `${prefix}${opts.version}`;
|
|
123725
123739
|
}
|
|
123726
|
-
return `${prefix}${(0, manifest_utils_1.createVersionSpec)(opts.version, opts.pinnedVersion)}`;
|
|
123740
|
+
return `${prefix}${(0, manifest_utils_1.createVersionSpec)(opts.version, { pinnedVersion: opts.pinnedVersion, rolling: opts.rolling })}`;
|
|
123727
123741
|
}
|
|
123728
123742
|
function getPrefPreferSpecifiedExoticSpec(opts) {
|
|
123729
123743
|
const prefix = (0, manifest_utils_1.getPrefix)(opts.alias, opts.name);
|
|
@@ -123734,7 +123748,7 @@ var require_updateProjectManifest = __commonJS({
|
|
|
123734
123748
|
return opts.specRaw.slice(opts.alias.length + 1);
|
|
123735
123749
|
}
|
|
123736
123750
|
}
|
|
123737
|
-
return `${prefix}${(0, manifest_utils_1.createVersionSpec)(opts.version, opts.pinnedVersion)}`;
|
|
123751
|
+
return `${prefix}${(0, manifest_utils_1.createVersionSpec)(opts.version, { pinnedVersion: opts.pinnedVersion, rolling: opts.rolling })}`;
|
|
123738
123752
|
}
|
|
123739
123753
|
}
|
|
123740
123754
|
});
|
|
@@ -125407,7 +125421,7 @@ var require_extendInstallOptions = __commonJS({
|
|
|
125407
125421
|
preferFrozenLockfile: true,
|
|
125408
125422
|
preferWorkspacePackages: false,
|
|
125409
125423
|
preserveWorkspaceProtocol: true,
|
|
125410
|
-
pruneLockfileImporters:
|
|
125424
|
+
pruneLockfileImporters: false,
|
|
125411
125425
|
pruneStore: false,
|
|
125412
125426
|
rawConfig: {},
|
|
125413
125427
|
registries: normalize_registries_1.DEFAULT_REGISTRIES,
|
package/dist/pnpx.cjs
CHANGED
|
@@ -38107,23 +38107,27 @@ var require_getPref = __commonJS({
|
|
|
38107
38107
|
exports2.getPrefix = getPrefix;
|
|
38108
38108
|
function getPref(alias, name, version, opts) {
|
|
38109
38109
|
const prefix = (0, exports2.getPrefix)(alias, name);
|
|
38110
|
-
return `${prefix}${createVersionSpec(version, opts.pinnedVersion)}`;
|
|
38110
|
+
return `${prefix}${createVersionSpec(version, { pinnedVersion: opts.pinnedVersion })}`;
|
|
38111
38111
|
}
|
|
38112
38112
|
exports2.getPref = getPref;
|
|
38113
|
-
function createVersionSpec(version,
|
|
38114
|
-
|
|
38115
|
-
return "*";
|
|
38116
|
-
switch (pinnedVersion ?? "major") {
|
|
38113
|
+
function createVersionSpec(version, opts) {
|
|
38114
|
+
switch (opts.pinnedVersion ?? "major") {
|
|
38117
38115
|
case "none":
|
|
38118
38116
|
return "*";
|
|
38119
38117
|
case "major":
|
|
38120
|
-
|
|
38118
|
+
if (opts.rolling)
|
|
38119
|
+
return "^";
|
|
38120
|
+
return !version ? "*" : `^${version}`;
|
|
38121
38121
|
case "minor":
|
|
38122
|
-
|
|
38122
|
+
if (opts.rolling)
|
|
38123
|
+
return "~";
|
|
38124
|
+
return !version ? "*" : `~${version}`;
|
|
38123
38125
|
case "patch":
|
|
38124
|
-
|
|
38126
|
+
if (opts.rolling)
|
|
38127
|
+
return "*";
|
|
38128
|
+
return !version ? "*" : `${version}`;
|
|
38125
38129
|
default:
|
|
38126
|
-
throw new error_1.default("BAD_PINNED_VERSION", `Cannot pin '${pinnedVersion ?? "undefined"}'`);
|
|
38130
|
+
throw new error_1.default("BAD_PINNED_VERSION", `Cannot pin '${opts.pinnedVersion ?? "undefined"}'`);
|
|
38127
38131
|
}
|
|
38128
38132
|
}
|
|
38129
38133
|
exports2.createVersionSpec = createVersionSpec;
|
|
@@ -77367,13 +77371,18 @@ var require_lib39 = __commonJS({
|
|
|
77367
77371
|
exports2.fetchNode = void 0;
|
|
77368
77372
|
var fs_1 = __importDefault2(require("fs"));
|
|
77369
77373
|
var path_1 = __importDefault2(require("path"));
|
|
77374
|
+
var error_1 = __importDefault2(require_lib7());
|
|
77370
77375
|
var create_cafs_store_1 = __importDefault2(require_lib35());
|
|
77371
77376
|
var tarball_fetcher_1 = __importStar(require_lib38());
|
|
77372
77377
|
var adm_zip_1 = __importDefault2(require_adm_zip());
|
|
77373
77378
|
var rename_overwrite_1 = __importDefault2(require_rename_overwrite());
|
|
77374
77379
|
var tempy_1 = __importDefault2(require_tempy());
|
|
77380
|
+
var detect_libc_1 = require_detect_libc();
|
|
77375
77381
|
var getNodeTarball_1 = require_getNodeTarball();
|
|
77376
77382
|
async function fetchNode(fetch, version, targetDir, opts) {
|
|
77383
|
+
if (await (0, detect_libc_1.isNonGlibcLinux)()) {
|
|
77384
|
+
throw new error_1.default("MUSL", 'The current system uses the "MUSL" C standard library. Node.js currently has prebuilt artifacts only for the "glibc" libc, so we can install Node.js only for glibc');
|
|
77385
|
+
}
|
|
77377
77386
|
const nodeMirrorBaseUrl = opts.nodeMirrorBaseUrl ?? "https://nodejs.org/download/release/";
|
|
77378
77387
|
const { tarball, pkgName } = (0, getNodeTarball_1.getNodeTarball)(version, nodeMirrorBaseUrl, process.platform, process.arch);
|
|
77379
77388
|
if (tarball.endsWith(".zip")) {
|
|
@@ -82366,7 +82375,8 @@ var require_lib55 = __commonJS({
|
|
|
82366
82375
|
}
|
|
82367
82376
|
exports2.createBase32Hash = createBase32Hash;
|
|
82368
82377
|
async function createBase32HashFromFile(file) {
|
|
82369
|
-
|
|
82378
|
+
const content = await fs_1.default.promises.readFile(file, "utf8");
|
|
82379
|
+
return createBase32Hash(content.split("\r\n").join("\n"));
|
|
82370
82380
|
}
|
|
82371
82381
|
exports2.createBase32HashFromFile = createBase32HashFromFile;
|
|
82372
82382
|
}
|
|
@@ -116153,10 +116163,11 @@ var require_lib103 = __commonJS({
|
|
|
116153
116163
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
116154
116164
|
var semver_utils_1 = require_semver_utils();
|
|
116155
116165
|
function whichVersionIsPinned(spec) {
|
|
116156
|
-
|
|
116166
|
+
const isWorkspaceProtocol = spec.startsWith("workspace:");
|
|
116167
|
+
if (isWorkspaceProtocol)
|
|
116157
116168
|
spec = spec.slice("workspace:".length);
|
|
116158
116169
|
if (spec === "*")
|
|
116159
|
-
return "none";
|
|
116170
|
+
return isWorkspaceProtocol ? "patch" : "none";
|
|
116160
116171
|
const parsedRange = (0, semver_utils_1.parseRange)(spec);
|
|
116161
116172
|
if (parsedRange.length !== 1)
|
|
116162
116173
|
return void 0;
|
|
@@ -118670,13 +118681,15 @@ var require_updateProjectManifest = __commonJS({
|
|
|
118670
118681
|
if (normalizedPref) {
|
|
118671
118682
|
pref = normalizedPref;
|
|
118672
118683
|
} else {
|
|
118684
|
+
const shouldUseWorkspaceProtocol = resolution.type === "directory" && (Boolean(opts.saveWorkspaceProtocol) || opts.preserveWorkspaceProtocol && specRaw.includes("@workspace:")) && opts.pinnedVersion !== "none";
|
|
118673
118685
|
if (isNew === true) {
|
|
118674
118686
|
pref = getPrefPreferSpecifiedSpec({
|
|
118675
118687
|
alias,
|
|
118676
118688
|
name,
|
|
118677
118689
|
pinnedVersion: opts.pinnedVersion,
|
|
118678
118690
|
specRaw,
|
|
118679
|
-
version
|
|
118691
|
+
version,
|
|
118692
|
+
rolling: shouldUseWorkspaceProtocol && opts.saveWorkspaceProtocol === "rolling"
|
|
118680
118693
|
});
|
|
118681
118694
|
} else {
|
|
118682
118695
|
pref = getPrefPreferSpecifiedExoticSpec({
|
|
@@ -118684,10 +118697,11 @@ var require_updateProjectManifest = __commonJS({
|
|
|
118684
118697
|
name,
|
|
118685
118698
|
pinnedVersion: opts.pinnedVersion,
|
|
118686
118699
|
specRaw,
|
|
118687
|
-
version
|
|
118700
|
+
version,
|
|
118701
|
+
rolling: shouldUseWorkspaceProtocol && opts.saveWorkspaceProtocol === "rolling"
|
|
118688
118702
|
});
|
|
118689
118703
|
}
|
|
118690
|
-
if (
|
|
118704
|
+
if (shouldUseWorkspaceProtocol && !pref.startsWith("workspace:")) {
|
|
118691
118705
|
pref = `workspace:${pref}`;
|
|
118692
118706
|
}
|
|
118693
118707
|
}
|
|
@@ -118713,7 +118727,7 @@ var require_updateProjectManifest = __commonJS({
|
|
|
118713
118727
|
if (semver_12.default.parse(opts.version)?.prerelease.length) {
|
|
118714
118728
|
return `${prefix}${opts.version}`;
|
|
118715
118729
|
}
|
|
118716
|
-
return `${prefix}${(0, manifest_utils_1.createVersionSpec)(opts.version, opts.pinnedVersion)}`;
|
|
118730
|
+
return `${prefix}${(0, manifest_utils_1.createVersionSpec)(opts.version, { pinnedVersion: opts.pinnedVersion, rolling: opts.rolling })}`;
|
|
118717
118731
|
}
|
|
118718
118732
|
function getPrefPreferSpecifiedExoticSpec(opts) {
|
|
118719
118733
|
const prefix = (0, manifest_utils_1.getPrefix)(opts.alias, opts.name);
|
|
@@ -118724,7 +118738,7 @@ var require_updateProjectManifest = __commonJS({
|
|
|
118724
118738
|
return opts.specRaw.slice(opts.alias.length + 1);
|
|
118725
118739
|
}
|
|
118726
118740
|
}
|
|
118727
|
-
return `${prefix}${(0, manifest_utils_1.createVersionSpec)(opts.version, opts.pinnedVersion)}`;
|
|
118741
|
+
return `${prefix}${(0, manifest_utils_1.createVersionSpec)(opts.version, { pinnedVersion: opts.pinnedVersion, rolling: opts.rolling })}`;
|
|
118728
118742
|
}
|
|
118729
118743
|
}
|
|
118730
118744
|
});
|
|
@@ -120397,7 +120411,7 @@ var require_extendInstallOptions = __commonJS({
|
|
|
120397
120411
|
preferFrozenLockfile: true,
|
|
120398
120412
|
preferWorkspacePackages: false,
|
|
120399
120413
|
preserveWorkspaceProtocol: true,
|
|
120400
|
-
pruneLockfileImporters:
|
|
120414
|
+
pruneLockfileImporters: false,
|
|
120401
120415
|
pruneStore: false,
|
|
120402
120416
|
rawConfig: {},
|
|
120403
120417
|
registries: normalize_registries_1.DEFAULT_REGISTRIES,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pnpm",
|
|
3
3
|
"description": "Fast, disk space efficient package manager",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.5.0",
|
|
5
5
|
"bin": {
|
|
6
6
|
"pnpm": "bin/pnpm.cjs",
|
|
7
7
|
"pnpx": "bin/pnpx.cjs"
|
|
@@ -21,47 +21,47 @@
|
|
|
21
21
|
"__devDependencies": {
|
|
22
22
|
"@pnpm/assert-project": "workspace:*",
|
|
23
23
|
"@pnpm/byline": "^1.0.0",
|
|
24
|
-
"@pnpm/cli-meta": "workspace
|
|
25
|
-
"@pnpm/cli-utils": "workspace
|
|
26
|
-
"@pnpm/client": "workspace
|
|
27
|
-
"@pnpm/command": "workspace
|
|
28
|
-
"@pnpm/common-cli-options-help": "workspace
|
|
29
|
-
"@pnpm/config": "workspace
|
|
30
|
-
"@pnpm/constants": "workspace
|
|
31
|
-
"@pnpm/core-loggers": "workspace
|
|
32
|
-
"@pnpm/default-reporter": "workspace
|
|
33
|
-
"@pnpm/file-reporter": "workspace
|
|
34
|
-
"@pnpm/filter-workspace-packages": "workspace
|
|
35
|
-
"@pnpm/find-workspace-dir": "workspace
|
|
36
|
-
"@pnpm/find-workspace-packages": "workspace
|
|
37
|
-
"@pnpm/lockfile-types": "workspace
|
|
24
|
+
"@pnpm/cli-meta": "workspace:*",
|
|
25
|
+
"@pnpm/cli-utils": "workspace:*",
|
|
26
|
+
"@pnpm/client": "workspace:*",
|
|
27
|
+
"@pnpm/command": "workspace:*",
|
|
28
|
+
"@pnpm/common-cli-options-help": "workspace:*",
|
|
29
|
+
"@pnpm/config": "workspace:*",
|
|
30
|
+
"@pnpm/constants": "workspace:*",
|
|
31
|
+
"@pnpm/core-loggers": "workspace:*",
|
|
32
|
+
"@pnpm/default-reporter": "workspace:*",
|
|
33
|
+
"@pnpm/file-reporter": "workspace:*",
|
|
34
|
+
"@pnpm/filter-workspace-packages": "workspace:*",
|
|
35
|
+
"@pnpm/find-workspace-dir": "workspace:*",
|
|
36
|
+
"@pnpm/find-workspace-packages": "workspace:*",
|
|
37
|
+
"@pnpm/lockfile-types": "workspace:*",
|
|
38
38
|
"@pnpm/logger": "^4.0.0",
|
|
39
|
-
"@pnpm/modules-yaml": "workspace
|
|
39
|
+
"@pnpm/modules-yaml": "workspace:*",
|
|
40
40
|
"@pnpm/nopt": "^0.2.1",
|
|
41
|
-
"@pnpm/parse-cli-args": "workspace
|
|
42
|
-
"@pnpm/pick-registry-for-package": "workspace
|
|
43
|
-
"@pnpm/plugin-commands-audit": "workspace
|
|
44
|
-
"@pnpm/plugin-commands-deploy": "workspace
|
|
45
|
-
"@pnpm/plugin-commands-env": "workspace
|
|
46
|
-
"@pnpm/plugin-commands-init": "workspace
|
|
47
|
-
"@pnpm/plugin-commands-installation": "workspace
|
|
48
|
-
"@pnpm/plugin-commands-listing": "workspace
|
|
49
|
-
"@pnpm/plugin-commands-outdated": "workspace
|
|
50
|
-
"@pnpm/plugin-commands-patching": "workspace
|
|
51
|
-
"@pnpm/plugin-commands-publishing": "workspace
|
|
52
|
-
"@pnpm/plugin-commands-rebuild": "workspace
|
|
53
|
-
"@pnpm/plugin-commands-script-runners": "workspace
|
|
54
|
-
"@pnpm/plugin-commands-server": "workspace
|
|
55
|
-
"@pnpm/plugin-commands-setup": "workspace
|
|
56
|
-
"@pnpm/plugin-commands-store": "workspace
|
|
41
|
+
"@pnpm/parse-cli-args": "workspace:*",
|
|
42
|
+
"@pnpm/pick-registry-for-package": "workspace:*",
|
|
43
|
+
"@pnpm/plugin-commands-audit": "workspace:*",
|
|
44
|
+
"@pnpm/plugin-commands-deploy": "workspace:*",
|
|
45
|
+
"@pnpm/plugin-commands-env": "workspace:*",
|
|
46
|
+
"@pnpm/plugin-commands-init": "workspace:*",
|
|
47
|
+
"@pnpm/plugin-commands-installation": "workspace:*",
|
|
48
|
+
"@pnpm/plugin-commands-listing": "workspace:*",
|
|
49
|
+
"@pnpm/plugin-commands-outdated": "workspace:*",
|
|
50
|
+
"@pnpm/plugin-commands-patching": "workspace:*",
|
|
51
|
+
"@pnpm/plugin-commands-publishing": "workspace:*",
|
|
52
|
+
"@pnpm/plugin-commands-rebuild": "workspace:*",
|
|
53
|
+
"@pnpm/plugin-commands-script-runners": "workspace:*",
|
|
54
|
+
"@pnpm/plugin-commands-server": "workspace:*",
|
|
55
|
+
"@pnpm/plugin-commands-setup": "workspace:*",
|
|
56
|
+
"@pnpm/plugin-commands-store": "workspace:*",
|
|
57
57
|
"@pnpm/prepare": "workspace:*",
|
|
58
|
-
"@pnpm/read-package-json": "workspace
|
|
59
|
-
"@pnpm/read-project-manifest": "workspace
|
|
58
|
+
"@pnpm/read-package-json": "workspace:*",
|
|
59
|
+
"@pnpm/read-project-manifest": "workspace:*",
|
|
60
60
|
"@pnpm/registry-mock": "2.20.0",
|
|
61
|
-
"@pnpm/run-npm": "workspace
|
|
61
|
+
"@pnpm/run-npm": "workspace:*",
|
|
62
62
|
"@pnpm/tabtab": "^0.1.2",
|
|
63
|
-
"@pnpm/types": "workspace
|
|
64
|
-
"@pnpm/write-project-manifest": "workspace
|
|
63
|
+
"@pnpm/types": "workspace:*",
|
|
64
|
+
"@pnpm/write-project-manifest": "workspace:*",
|
|
65
65
|
"@types/cross-spawn": "^6.0.2",
|
|
66
66
|
"@types/is-ci": "^3.0.0",
|
|
67
67
|
"@types/is-windows": "^1.0.0",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"p-defer": "^3.0.0",
|
|
91
91
|
"path-exists": "^4.0.0",
|
|
92
92
|
"path-name": "^1.0.0",
|
|
93
|
-
"pkgs-graph": "workspace
|
|
93
|
+
"pkgs-graph": "workspace:*",
|
|
94
94
|
"ps-list": "^7.2.0",
|
|
95
95
|
"ramda": "^0.28.0",
|
|
96
96
|
"read-yaml-file": "^2.1.0",
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"package manager",
|
|
135
135
|
"monorepo",
|
|
136
136
|
"multi-package",
|
|
137
|
-
"workspace"
|
|
137
|
+
"workspace:*"
|
|
138
138
|
],
|
|
139
139
|
"license": "MIT",
|
|
140
140
|
"preferGlobal": true,
|