@storm-software/pnpm-tools 0.6.154 → 0.6.155
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 +19 -0
- package/README.md +1 -1
- package/bin/pnpm.cjs +4 -5
- package/bin/pnpm.js +4 -5
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pnpm Tools
|
|
4
4
|
|
|
5
|
+
## [0.6.154](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.6.154) (04/01/2026)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **pnpm-tools:** Added try-catch handler to CLI app ([915e8ad4c](https://github.com/storm-software/storm-ops/commit/915e8ad4c))
|
|
10
|
+
- **monorepo:** Regenerate `README.md` files ([7179007bc](https://github.com/storm-software/storm-ops/commit/7179007bc))
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **pnpm-tools:** Add backup version string ([a5544bf3b](https://github.com/storm-software/storm-ops/commit/a5544bf3b))
|
|
15
|
+
|
|
16
|
+
### Updated Dependencies
|
|
17
|
+
|
|
18
|
+
- Updated **package-constants** to **v0.1.4**
|
|
19
|
+
- Updated **testing-tools** to **v1.119.144**
|
|
20
|
+
- Updated **config-tools** to **v1.189.69**
|
|
21
|
+
- Updated **npm-tools** to **v0.6.107**
|
|
22
|
+
- Updated **config** to **v1.137.23**
|
|
23
|
+
|
|
5
24
|
## [0.6.153](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.6.153) (04/01/2026)
|
|
6
25
|
|
|
7
26
|
### 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
|
@@ -2181,7 +2181,7 @@ var import_commander = require("commander");
|
|
|
2181
2181
|
// package.json
|
|
2182
2182
|
var package_default = {
|
|
2183
2183
|
name: "@storm-software/pnpm-tools",
|
|
2184
|
-
version: "0.6.
|
|
2184
|
+
version: "0.6.154",
|
|
2185
2185
|
private: false,
|
|
2186
2186
|
description: "A set of [pnpm](https://pnpm.io/) plugins and utilities for managing workspace packages/dependencies.",
|
|
2187
2187
|
repository: {
|
|
@@ -2471,8 +2471,7 @@ function createProgram(config) {
|
|
|
2471
2471
|
);
|
|
2472
2472
|
program.command("update").description("Update pnpm catalog dependency package version.").argument(
|
|
2473
2473
|
"<packages...>",
|
|
2474
|
-
"The package name/pattern to update the version for (e.g., @storm-software/config or @storm-software/ or @storm-software/*)."
|
|
2475
|
-
[]
|
|
2474
|
+
"The package name/pattern to update the version for (e.g., @storm-software/config or @storm-software/ or @storm-software/*)."
|
|
2476
2475
|
).option(
|
|
2477
2476
|
"-t, --tag <string>",
|
|
2478
2477
|
`The npm tag to use when fetching the latest version of the package (e.g., "latest", "next", etc.). Defaults to "latest".`,
|
|
@@ -2502,14 +2501,14 @@ ${error?.message}`,
|
|
|
2502
2501
|
throw new Error(error?.message, { cause: error });
|
|
2503
2502
|
}
|
|
2504
2503
|
}
|
|
2505
|
-
async function updateAction(packages
|
|
2504
|
+
async function updateAction(packages, {
|
|
2506
2505
|
tag,
|
|
2507
2506
|
install = false,
|
|
2508
2507
|
all = false,
|
|
2509
2508
|
prefix = "^"
|
|
2510
2509
|
}) {
|
|
2511
2510
|
try {
|
|
2512
|
-
const pkgs = (Array.isArray(packages)
|
|
2511
|
+
const pkgs = (packages && (Array.isArray(packages) || typeof packages === "string") ? Array.isArray(packages) ? packages : [packages.split(",")].flat() : []).concat(all ? [...INTERNAL_PACKAGES] : []).filter(Boolean).map((pkg) => pkg.trim().replaceAll("*", ""));
|
|
2513
2512
|
writeInfo(
|
|
2514
2513
|
`${brandIcon(_config)} Preparing to update the package version for ${pkgs.join(", ")}.`,
|
|
2515
2514
|
_config
|
package/bin/pnpm.js
CHANGED
|
@@ -2159,7 +2159,7 @@ import { Command } from "commander";
|
|
|
2159
2159
|
// package.json
|
|
2160
2160
|
var package_default = {
|
|
2161
2161
|
name: "@storm-software/pnpm-tools",
|
|
2162
|
-
version: "0.6.
|
|
2162
|
+
version: "0.6.154",
|
|
2163
2163
|
private: false,
|
|
2164
2164
|
description: "A set of [pnpm](https://pnpm.io/) plugins and utilities for managing workspace packages/dependencies.",
|
|
2165
2165
|
repository: {
|
|
@@ -2449,8 +2449,7 @@ function createProgram(config) {
|
|
|
2449
2449
|
);
|
|
2450
2450
|
program.command("update").description("Update pnpm catalog dependency package version.").argument(
|
|
2451
2451
|
"<packages...>",
|
|
2452
|
-
"The package name/pattern to update the version for (e.g., @storm-software/config or @storm-software/ or @storm-software/*)."
|
|
2453
|
-
[]
|
|
2452
|
+
"The package name/pattern to update the version for (e.g., @storm-software/config or @storm-software/ or @storm-software/*)."
|
|
2454
2453
|
).option(
|
|
2455
2454
|
"-t, --tag <string>",
|
|
2456
2455
|
`The npm tag to use when fetching the latest version of the package (e.g., "latest", "next", etc.). Defaults to "latest".`,
|
|
@@ -2480,14 +2479,14 @@ ${error?.message}`,
|
|
|
2480
2479
|
throw new Error(error?.message, { cause: error });
|
|
2481
2480
|
}
|
|
2482
2481
|
}
|
|
2483
|
-
async function updateAction(packages
|
|
2482
|
+
async function updateAction(packages, {
|
|
2484
2483
|
tag,
|
|
2485
2484
|
install = false,
|
|
2486
2485
|
all = false,
|
|
2487
2486
|
prefix = "^"
|
|
2488
2487
|
}) {
|
|
2489
2488
|
try {
|
|
2490
|
-
const pkgs = (Array.isArray(packages)
|
|
2489
|
+
const pkgs = (packages && (Array.isArray(packages) || typeof packages === "string") ? Array.isArray(packages) ? packages : [packages.split(",")].flat() : []).concat(all ? [...INTERNAL_PACKAGES] : []).filter(Boolean).map((pkg) => pkg.trim().replaceAll("*", ""));
|
|
2491
2490
|
writeInfo(
|
|
2492
2491
|
`${brandIcon(_config)} Preparing to update the package version for ${pkgs.join(", ")}.`,
|
|
2493
2492
|
_config
|
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.155",
|
|
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,10 +73,10 @@
|
|
|
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.
|
|
79
|
-
"@storm-software/package-constants": "^0.1.
|
|
76
|
+
"@storm-software/config": "^1.137.24",
|
|
77
|
+
"@storm-software/config-tools": "^1.189.70",
|
|
78
|
+
"@storm-software/npm-tools": "^0.6.108",
|
|
79
|
+
"@storm-software/package-constants": "^0.1.5",
|
|
80
80
|
"commander": "^12.1.0",
|
|
81
81
|
"defu": "6.1.4",
|
|
82
82
|
"prettier": "^3.8.1",
|
|
@@ -90,5 +90,5 @@
|
|
|
90
90
|
"tsup": "8.4.0"
|
|
91
91
|
},
|
|
92
92
|
"publishConfig": { "access": "public" },
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "c3ebb5d4932added529fbce7c5dd3031daf9f84d"
|
|
94
94
|
}
|