@storm-software/pnpm-tools 0.6.149 → 0.6.150
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 +18 -0
- package/README.md +1 -1
- package/bin/pnpm.cjs +33 -68
- package/bin/pnpm.js +33 -75
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pnpm Tools
|
|
4
4
|
|
|
5
|
+
## [0.6.149](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.6.149) (03/31/2026)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate `README.md` files ([162476557](https://github.com/storm-software/storm-ops/commit/162476557))
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- **pnpm-tools:** Ensure the `packages` argument is no longer required ([659da4277](https://github.com/storm-software/storm-ops/commit/659da4277))
|
|
14
|
+
|
|
15
|
+
### Updated Dependencies
|
|
16
|
+
|
|
17
|
+
- Updated **testing-tools** to **v1.119.139**
|
|
18
|
+
- Updated **config-tools** to **v1.189.64**
|
|
19
|
+
- Updated **build-tools** to **v0.158.145**
|
|
20
|
+
- Updated **npm-tools** to **v0.6.102**
|
|
21
|
+
- Updated **config** to **v1.137.18**
|
|
22
|
+
|
|
5
23
|
## [0.6.148](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.6.148) (03/31/2026)
|
|
6
24
|
|
|
7
25
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
package/bin/pnpm.cjs
CHANGED
|
@@ -1002,65 +1002,65 @@ function normalizeWindowsPath(input = "") {
|
|
|
1002
1002
|
var _UNC_REGEX = /^[/\\]{2}/;
|
|
1003
1003
|
var _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/;
|
|
1004
1004
|
var _DRIVE_LETTER_RE = /^[A-Za-z]:$/;
|
|
1005
|
-
var correctPaths = function(
|
|
1006
|
-
if (!
|
|
1005
|
+
var correctPaths = function(path) {
|
|
1006
|
+
if (!path || path.length === 0) {
|
|
1007
1007
|
return ".";
|
|
1008
1008
|
}
|
|
1009
|
-
|
|
1010
|
-
const isUNCPath =
|
|
1011
|
-
const isPathAbsolute = isAbsolute(
|
|
1012
|
-
const trailingSeparator =
|
|
1013
|
-
|
|
1014
|
-
if (
|
|
1009
|
+
path = normalizeWindowsPath(path);
|
|
1010
|
+
const isUNCPath = path?.match(_UNC_REGEX);
|
|
1011
|
+
const isPathAbsolute = isAbsolute(path);
|
|
1012
|
+
const trailingSeparator = path[path.length - 1] === "/";
|
|
1013
|
+
path = normalizeString(path, !isPathAbsolute);
|
|
1014
|
+
if (path.length === 0) {
|
|
1015
1015
|
if (isPathAbsolute) {
|
|
1016
1016
|
return "/";
|
|
1017
1017
|
}
|
|
1018
1018
|
return trailingSeparator ? "./" : ".";
|
|
1019
1019
|
}
|
|
1020
1020
|
if (trailingSeparator) {
|
|
1021
|
-
|
|
1021
|
+
path += "/";
|
|
1022
1022
|
}
|
|
1023
|
-
if (_DRIVE_LETTER_RE.test(
|
|
1024
|
-
|
|
1023
|
+
if (_DRIVE_LETTER_RE.test(path)) {
|
|
1024
|
+
path += "/";
|
|
1025
1025
|
}
|
|
1026
1026
|
if (isUNCPath) {
|
|
1027
1027
|
if (!isPathAbsolute) {
|
|
1028
|
-
return `//./${
|
|
1028
|
+
return `//./${path}`;
|
|
1029
1029
|
}
|
|
1030
|
-
return `//${
|
|
1030
|
+
return `//${path}`;
|
|
1031
1031
|
}
|
|
1032
|
-
return isPathAbsolute && !isAbsolute(
|
|
1032
|
+
return isPathAbsolute && !isAbsolute(path) ? `/${path}` : path;
|
|
1033
1033
|
};
|
|
1034
1034
|
var joinPaths = function(...segments) {
|
|
1035
|
-
let
|
|
1035
|
+
let path = "";
|
|
1036
1036
|
for (const seg of segments) {
|
|
1037
1037
|
if (!seg) {
|
|
1038
1038
|
continue;
|
|
1039
1039
|
}
|
|
1040
|
-
if (
|
|
1041
|
-
const pathTrailing =
|
|
1040
|
+
if (path.length > 0) {
|
|
1041
|
+
const pathTrailing = path[path.length - 1] === "/";
|
|
1042
1042
|
const segLeading = seg[0] === "/";
|
|
1043
1043
|
const both = pathTrailing && segLeading;
|
|
1044
1044
|
if (both) {
|
|
1045
|
-
|
|
1045
|
+
path += seg.slice(1);
|
|
1046
1046
|
} else {
|
|
1047
|
-
|
|
1047
|
+
path += pathTrailing || segLeading ? seg : `/${seg}`;
|
|
1048
1048
|
}
|
|
1049
1049
|
} else {
|
|
1050
|
-
|
|
1050
|
+
path += seg;
|
|
1051
1051
|
}
|
|
1052
1052
|
}
|
|
1053
|
-
return correctPaths(
|
|
1053
|
+
return correctPaths(path);
|
|
1054
1054
|
};
|
|
1055
|
-
function normalizeString(
|
|
1055
|
+
function normalizeString(path, allowAboveRoot) {
|
|
1056
1056
|
let res = "";
|
|
1057
1057
|
let lastSegmentLength = 0;
|
|
1058
1058
|
let lastSlash = -1;
|
|
1059
1059
|
let dots = 0;
|
|
1060
1060
|
let char = null;
|
|
1061
|
-
for (let index = 0; index <=
|
|
1062
|
-
if (index <
|
|
1063
|
-
char =
|
|
1061
|
+
for (let index = 0; index <= path.length; ++index) {
|
|
1062
|
+
if (index < path.length) {
|
|
1063
|
+
char = path[index];
|
|
1064
1064
|
} else if (char === "/") {
|
|
1065
1065
|
break;
|
|
1066
1066
|
} else {
|
|
@@ -1096,9 +1096,9 @@ function normalizeString(path2, allowAboveRoot) {
|
|
|
1096
1096
|
}
|
|
1097
1097
|
} else {
|
|
1098
1098
|
if (res.length > 0) {
|
|
1099
|
-
res += `/${
|
|
1099
|
+
res += `/${path.slice(lastSlash + 1, index)}`;
|
|
1100
1100
|
} else {
|
|
1101
|
-
res =
|
|
1101
|
+
res = path.slice(lastSlash + 1, index);
|
|
1102
1102
|
}
|
|
1103
1103
|
lastSegmentLength = index - lastSlash - 1;
|
|
1104
1104
|
}
|
|
@@ -2162,7 +2162,7 @@ function getWorkspaceConfig(skipLogs = true, options = {}) {
|
|
|
2162
2162
|
return getConfig(workspaceRoot, skipLogs);
|
|
2163
2163
|
}
|
|
2164
2164
|
|
|
2165
|
-
// ../
|
|
2165
|
+
// ../package-constants/src/internal-packages.ts
|
|
2166
2166
|
var INTERNAL_PACKAGES = [
|
|
2167
2167
|
"@storm-software/*",
|
|
2168
2168
|
"conventional-changelog-storm-software",
|
|
@@ -2175,41 +2175,6 @@ var INTERNAL_PACKAGES = [
|
|
|
2175
2175
|
"earthquake"
|
|
2176
2176
|
];
|
|
2177
2177
|
|
|
2178
|
-
// ../build-tools/src/plugins/swc.ts
|
|
2179
|
-
var import_core = require("@swc/core");
|
|
2180
|
-
|
|
2181
|
-
// ../build-tools/src/plugins/ts-resolve.ts
|
|
2182
|
-
var import_node_fs4 = __toESM(require("fs"));
|
|
2183
|
-
var import_node_module = require("module");
|
|
2184
|
-
var import_node_path3 = __toESM(require("path"));
|
|
2185
|
-
var import_resolve = __toESM(require("resolve"));
|
|
2186
|
-
|
|
2187
|
-
// ../build-tools/src/plugins/type-definitions.ts
|
|
2188
|
-
var import_devkit = require("@nx/devkit");
|
|
2189
|
-
var import_path = require("path");
|
|
2190
|
-
|
|
2191
|
-
// ../build-tools/src/utilities/copy-assets.ts
|
|
2192
|
-
var import_copy_assets_handler = require("@nx/js/src/utils/assets/copy-assets-handler");
|
|
2193
|
-
var import_glob = require("glob");
|
|
2194
|
-
var import_promises2 = require("fs/promises");
|
|
2195
|
-
|
|
2196
|
-
// ../build-tools/src/utilities/generate-package-json.ts
|
|
2197
|
-
var import_buildable_libs_utils = require("@nx/js/src/utils/buildable-libs-utils");
|
|
2198
|
-
var import_glob2 = require("glob");
|
|
2199
|
-
var import_node_fs5 = require("fs");
|
|
2200
|
-
var import_promises3 = require("fs/promises");
|
|
2201
|
-
var import_project_graph = require("nx/src/project-graph/project-graph");
|
|
2202
|
-
|
|
2203
|
-
// ../build-tools/src/utilities/get-entry-points.ts
|
|
2204
|
-
var import_glob3 = require("glob");
|
|
2205
|
-
|
|
2206
|
-
// ../build-tools/src/utilities/read-nx-config.ts
|
|
2207
|
-
var import_node_fs6 = require("fs");
|
|
2208
|
-
var import_promises4 = require("fs/promises");
|
|
2209
|
-
|
|
2210
|
-
// ../build-tools/src/utilities/task-graph.ts
|
|
2211
|
-
var import_create_task_graph = require("nx/src/tasks-runner/create-task-graph");
|
|
2212
|
-
|
|
2213
2178
|
// src/cli/index.ts
|
|
2214
2179
|
var import_commander = require("commander");
|
|
2215
2180
|
|
|
@@ -2260,12 +2225,12 @@ async function getVersion(packageName, tag = DEFAULT_NPM_TAG, options = {}) {
|
|
|
2260
2225
|
var import_semver = require("semver");
|
|
2261
2226
|
|
|
2262
2227
|
// src/helpers/pnpm-workspace.ts
|
|
2263
|
-
var
|
|
2264
|
-
var
|
|
2228
|
+
var import_node_fs4 = require("fs");
|
|
2229
|
+
var import_promises2 = require("fs/promises");
|
|
2265
2230
|
var import_yaml = require("yaml");
|
|
2266
2231
|
function getPnpmWorkspaceFilePath(workspaceRoot = findWorkspaceRoot(process.cwd())) {
|
|
2267
2232
|
const pnpmWorkspacePath = joinPaths(workspaceRoot, "pnpm-workspace.yaml");
|
|
2268
|
-
if (!(0,
|
|
2233
|
+
if (!(0, import_node_fs4.existsSync)(pnpmWorkspacePath)) {
|
|
2269
2234
|
throw new Error(
|
|
2270
2235
|
`No \`pnpm-workspace.yaml\` file found in workspace root (searched in: ${pnpmWorkspacePath}).`
|
|
2271
2236
|
);
|
|
@@ -2273,7 +2238,7 @@ function getPnpmWorkspaceFilePath(workspaceRoot = findWorkspaceRoot(process.cwd(
|
|
|
2273
2238
|
return pnpmWorkspacePath;
|
|
2274
2239
|
}
|
|
2275
2240
|
async function readPnpmWorkspaceFile(workspaceRoot = findWorkspaceRoot(process.cwd())) {
|
|
2276
|
-
const result = await (0,
|
|
2241
|
+
const result = await (0, import_promises2.readFile)(
|
|
2277
2242
|
getPnpmWorkspaceFilePath(workspaceRoot),
|
|
2278
2243
|
"utf8"
|
|
2279
2244
|
);
|
|
@@ -2289,7 +2254,7 @@ async function writePnpmWorkspaceFile(pnpmWorkspaceFile, workspaceRoot = findWor
|
|
|
2289
2254
|
`Writing updated pnpm-workspace.yaml file to workspace root: ${stringified}`,
|
|
2290
2255
|
config
|
|
2291
2256
|
);
|
|
2292
|
-
await (0,
|
|
2257
|
+
await (0, import_promises2.writeFile)(getPnpmWorkspaceFilePath(workspaceRoot), stringified);
|
|
2293
2258
|
}
|
|
2294
2259
|
|
|
2295
2260
|
// src/helpers/catalog.ts
|
package/bin/pnpm.js
CHANGED
|
@@ -980,65 +980,65 @@ function normalizeWindowsPath(input = "") {
|
|
|
980
980
|
var _UNC_REGEX = /^[/\\]{2}/;
|
|
981
981
|
var _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/;
|
|
982
982
|
var _DRIVE_LETTER_RE = /^[A-Za-z]:$/;
|
|
983
|
-
var correctPaths = function(
|
|
984
|
-
if (!
|
|
983
|
+
var correctPaths = function(path) {
|
|
984
|
+
if (!path || path.length === 0) {
|
|
985
985
|
return ".";
|
|
986
986
|
}
|
|
987
|
-
|
|
988
|
-
const isUNCPath =
|
|
989
|
-
const isPathAbsolute = isAbsolute(
|
|
990
|
-
const trailingSeparator =
|
|
991
|
-
|
|
992
|
-
if (
|
|
987
|
+
path = normalizeWindowsPath(path);
|
|
988
|
+
const isUNCPath = path?.match(_UNC_REGEX);
|
|
989
|
+
const isPathAbsolute = isAbsolute(path);
|
|
990
|
+
const trailingSeparator = path[path.length - 1] === "/";
|
|
991
|
+
path = normalizeString(path, !isPathAbsolute);
|
|
992
|
+
if (path.length === 0) {
|
|
993
993
|
if (isPathAbsolute) {
|
|
994
994
|
return "/";
|
|
995
995
|
}
|
|
996
996
|
return trailingSeparator ? "./" : ".";
|
|
997
997
|
}
|
|
998
998
|
if (trailingSeparator) {
|
|
999
|
-
|
|
999
|
+
path += "/";
|
|
1000
1000
|
}
|
|
1001
|
-
if (_DRIVE_LETTER_RE.test(
|
|
1002
|
-
|
|
1001
|
+
if (_DRIVE_LETTER_RE.test(path)) {
|
|
1002
|
+
path += "/";
|
|
1003
1003
|
}
|
|
1004
1004
|
if (isUNCPath) {
|
|
1005
1005
|
if (!isPathAbsolute) {
|
|
1006
|
-
return `//./${
|
|
1006
|
+
return `//./${path}`;
|
|
1007
1007
|
}
|
|
1008
|
-
return `//${
|
|
1008
|
+
return `//${path}`;
|
|
1009
1009
|
}
|
|
1010
|
-
return isPathAbsolute && !isAbsolute(
|
|
1010
|
+
return isPathAbsolute && !isAbsolute(path) ? `/${path}` : path;
|
|
1011
1011
|
};
|
|
1012
1012
|
var joinPaths = function(...segments) {
|
|
1013
|
-
let
|
|
1013
|
+
let path = "";
|
|
1014
1014
|
for (const seg of segments) {
|
|
1015
1015
|
if (!seg) {
|
|
1016
1016
|
continue;
|
|
1017
1017
|
}
|
|
1018
|
-
if (
|
|
1019
|
-
const pathTrailing =
|
|
1018
|
+
if (path.length > 0) {
|
|
1019
|
+
const pathTrailing = path[path.length - 1] === "/";
|
|
1020
1020
|
const segLeading = seg[0] === "/";
|
|
1021
1021
|
const both = pathTrailing && segLeading;
|
|
1022
1022
|
if (both) {
|
|
1023
|
-
|
|
1023
|
+
path += seg.slice(1);
|
|
1024
1024
|
} else {
|
|
1025
|
-
|
|
1025
|
+
path += pathTrailing || segLeading ? seg : `/${seg}`;
|
|
1026
1026
|
}
|
|
1027
1027
|
} else {
|
|
1028
|
-
|
|
1028
|
+
path += seg;
|
|
1029
1029
|
}
|
|
1030
1030
|
}
|
|
1031
|
-
return correctPaths(
|
|
1031
|
+
return correctPaths(path);
|
|
1032
1032
|
};
|
|
1033
|
-
function normalizeString(
|
|
1033
|
+
function normalizeString(path, allowAboveRoot) {
|
|
1034
1034
|
let res = "";
|
|
1035
1035
|
let lastSegmentLength = 0;
|
|
1036
1036
|
let lastSlash = -1;
|
|
1037
1037
|
let dots = 0;
|
|
1038
1038
|
let char = null;
|
|
1039
|
-
for (let index = 0; index <=
|
|
1040
|
-
if (index <
|
|
1041
|
-
char =
|
|
1039
|
+
for (let index = 0; index <= path.length; ++index) {
|
|
1040
|
+
if (index < path.length) {
|
|
1041
|
+
char = path[index];
|
|
1042
1042
|
} else if (char === "/") {
|
|
1043
1043
|
break;
|
|
1044
1044
|
} else {
|
|
@@ -1074,9 +1074,9 @@ function normalizeString(path2, allowAboveRoot) {
|
|
|
1074
1074
|
}
|
|
1075
1075
|
} else {
|
|
1076
1076
|
if (res.length > 0) {
|
|
1077
|
-
res += `/${
|
|
1077
|
+
res += `/${path.slice(lastSlash + 1, index)}`;
|
|
1078
1078
|
} else {
|
|
1079
|
-
res =
|
|
1079
|
+
res = path.slice(lastSlash + 1, index);
|
|
1080
1080
|
}
|
|
1081
1081
|
lastSegmentLength = index - lastSlash - 1;
|
|
1082
1082
|
}
|
|
@@ -2140,7 +2140,7 @@ function getWorkspaceConfig(skipLogs = true, options = {}) {
|
|
|
2140
2140
|
return getConfig(workspaceRoot, skipLogs);
|
|
2141
2141
|
}
|
|
2142
2142
|
|
|
2143
|
-
// ../
|
|
2143
|
+
// ../package-constants/src/internal-packages.ts
|
|
2144
2144
|
var INTERNAL_PACKAGES = [
|
|
2145
2145
|
"@storm-software/*",
|
|
2146
2146
|
"conventional-changelog-storm-software",
|
|
@@ -2153,48 +2153,6 @@ var INTERNAL_PACKAGES = [
|
|
|
2153
2153
|
"earthquake"
|
|
2154
2154
|
];
|
|
2155
2155
|
|
|
2156
|
-
// ../build-tools/src/plugins/swc.ts
|
|
2157
|
-
import { transform } from "@swc/core";
|
|
2158
|
-
|
|
2159
|
-
// ../build-tools/src/plugins/ts-resolve.ts
|
|
2160
|
-
import fs from "node:fs";
|
|
2161
|
-
import { builtinModules } from "node:module";
|
|
2162
|
-
import path from "node:path";
|
|
2163
|
-
import _resolve from "resolve";
|
|
2164
|
-
|
|
2165
|
-
// ../build-tools/src/plugins/type-definitions.ts
|
|
2166
|
-
import { stripIndents } from "@nx/devkit";
|
|
2167
|
-
import { relative } from "path";
|
|
2168
|
-
|
|
2169
|
-
// ../build-tools/src/utilities/copy-assets.ts
|
|
2170
|
-
import { CopyAssetsHandler } from "@nx/js/src/utils/assets/copy-assets-handler";
|
|
2171
|
-
import { glob } from "glob";
|
|
2172
|
-
import { readFile as readFile2, writeFile } from "node:fs/promises";
|
|
2173
|
-
|
|
2174
|
-
// ../build-tools/src/utilities/generate-package-json.ts
|
|
2175
|
-
import { calculateProjectBuildableDependencies } from "@nx/js/src/utils/buildable-libs-utils";
|
|
2176
|
-
import { Glob } from "glob";
|
|
2177
|
-
import { existsSync as existsSync4, readFileSync } from "node:fs";
|
|
2178
|
-
import { readFile as readFile3 } from "node:fs/promises";
|
|
2179
|
-
import {
|
|
2180
|
-
createProjectGraphAsync,
|
|
2181
|
-
readCachedProjectGraph,
|
|
2182
|
-
readProjectsConfigurationFromProjectGraph
|
|
2183
|
-
} from "nx/src/project-graph/project-graph";
|
|
2184
|
-
|
|
2185
|
-
// ../build-tools/src/utilities/get-entry-points.ts
|
|
2186
|
-
import { glob as glob2 } from "glob";
|
|
2187
|
-
|
|
2188
|
-
// ../build-tools/src/utilities/read-nx-config.ts
|
|
2189
|
-
import { existsSync as existsSync5 } from "node:fs";
|
|
2190
|
-
import { readFile as readFile4 } from "node:fs/promises";
|
|
2191
|
-
|
|
2192
|
-
// ../build-tools/src/utilities/task-graph.ts
|
|
2193
|
-
import {
|
|
2194
|
-
createTaskGraph,
|
|
2195
|
-
mapTargetDefaultsToDependencies
|
|
2196
|
-
} from "nx/src/tasks-runner/create-task-graph";
|
|
2197
|
-
|
|
2198
2156
|
// src/cli/index.ts
|
|
2199
2157
|
import { Command } from "commander";
|
|
2200
2158
|
|
|
@@ -2245,12 +2203,12 @@ async function getVersion(packageName, tag = DEFAULT_NPM_TAG, options = {}) {
|
|
|
2245
2203
|
import { coerce, gt, valid } from "semver";
|
|
2246
2204
|
|
|
2247
2205
|
// src/helpers/pnpm-workspace.ts
|
|
2248
|
-
import { existsSync as
|
|
2249
|
-
import { readFile as
|
|
2206
|
+
import { existsSync as existsSync4 } from "node:fs";
|
|
2207
|
+
import { readFile as readFile2, writeFile } from "node:fs/promises";
|
|
2250
2208
|
import { parse, stringify } from "yaml";
|
|
2251
2209
|
function getPnpmWorkspaceFilePath(workspaceRoot = findWorkspaceRoot(process.cwd())) {
|
|
2252
2210
|
const pnpmWorkspacePath = joinPaths(workspaceRoot, "pnpm-workspace.yaml");
|
|
2253
|
-
if (!
|
|
2211
|
+
if (!existsSync4(pnpmWorkspacePath)) {
|
|
2254
2212
|
throw new Error(
|
|
2255
2213
|
`No \`pnpm-workspace.yaml\` file found in workspace root (searched in: ${pnpmWorkspacePath}).`
|
|
2256
2214
|
);
|
|
@@ -2258,7 +2216,7 @@ function getPnpmWorkspaceFilePath(workspaceRoot = findWorkspaceRoot(process.cwd(
|
|
|
2258
2216
|
return pnpmWorkspacePath;
|
|
2259
2217
|
}
|
|
2260
2218
|
async function readPnpmWorkspaceFile(workspaceRoot = findWorkspaceRoot(process.cwd())) {
|
|
2261
|
-
const result = await
|
|
2219
|
+
const result = await readFile2(
|
|
2262
2220
|
getPnpmWorkspaceFilePath(workspaceRoot),
|
|
2263
2221
|
"utf8"
|
|
2264
2222
|
);
|
|
@@ -2274,7 +2232,7 @@ async function writePnpmWorkspaceFile(pnpmWorkspaceFile, workspaceRoot = findWor
|
|
|
2274
2232
|
`Writing updated pnpm-workspace.yaml file to workspace root: ${stringified}`,
|
|
2275
2233
|
config
|
|
2276
2234
|
);
|
|
2277
|
-
await
|
|
2235
|
+
await writeFile(getPnpmWorkspaceFilePath(workspaceRoot), stringified);
|
|
2278
2236
|
}
|
|
2279
2237
|
|
|
2280
2238
|
// src/helpers/catalog.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/pnpm-tools",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.150",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A set of [pnpm](https://pnpm.io/) plugins and utilities for managing workspace packages/dependencies.",
|
|
6
6
|
"repository": {
|
|
@@ -73,9 +73,9 @@
|
|
|
73
73
|
"storm-pnpm-esm": "./bin/pnpm.js"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@storm-software/config": "^1.137.
|
|
77
|
-
"@storm-software/config-tools": "^1.189.
|
|
78
|
-
"@storm-software/npm-tools": "^0.6.
|
|
76
|
+
"@storm-software/config": "^1.137.19",
|
|
77
|
+
"@storm-software/config-tools": "^1.189.65",
|
|
78
|
+
"@storm-software/npm-tools": "^0.6.103",
|
|
79
79
|
"commander": "^12.1.0",
|
|
80
80
|
"defu": "6.1.4",
|
|
81
81
|
"prettier": "^3.8.1",
|
|
@@ -85,10 +85,10 @@
|
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
87
|
"@pnpm/types": "^1001.3.0",
|
|
88
|
-
"@storm-software/
|
|
88
|
+
"@storm-software/package-constants": "^0.1.0",
|
|
89
89
|
"@types/node": "^25.5.0",
|
|
90
90
|
"tsup": "8.4.0"
|
|
91
91
|
},
|
|
92
92
|
"publishConfig": { "access": "public" },
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "173f33ce4aae095b7bb0afda3e8cf5b25ba6bc2a"
|
|
94
94
|
}
|