@storm-software/pnpm-tools 0.6.155 → 0.6.156
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 +5 -9
- package/bin/pnpm.js +5 -9
- 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.155](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.6.155) (04/01/2026)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate `README.md` file ([613228ecc](https://github.com/storm-software/storm-ops/commit/613228ecc))
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- **pnpm-tools:** Resolve issue with invalid default argument value ([68668d596](https://github.com/storm-software/storm-ops/commit/68668d596))
|
|
14
|
+
|
|
15
|
+
### Updated Dependencies
|
|
16
|
+
|
|
17
|
+
- Updated **package-constants** to **v0.1.5**
|
|
18
|
+
- Updated **testing-tools** to **v1.119.145**
|
|
19
|
+
- Updated **config-tools** to **v1.189.70**
|
|
20
|
+
- Updated **npm-tools** to **v0.6.108**
|
|
21
|
+
- Updated **config** to **v1.137.24**
|
|
22
|
+
|
|
5
23
|
## [0.6.154](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.6.154) (04/01/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
|
@@ -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.155",
|
|
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: {
|
|
@@ -2470,7 +2470,7 @@ function createProgram(config) {
|
|
|
2470
2470
|
"display CLI version"
|
|
2471
2471
|
);
|
|
2472
2472
|
program.command("update").description("Update pnpm catalog dependency package version.").argument(
|
|
2473
|
-
"
|
|
2473
|
+
"[packages...]",
|
|
2474
2474
|
"The package name/pattern to update the version for (e.g., @storm-software/config or @storm-software/ or @storm-software/*)."
|
|
2475
2475
|
).option(
|
|
2476
2476
|
"-t, --tag <string>",
|
|
@@ -2501,14 +2501,10 @@ ${error?.message}`,
|
|
|
2501
2501
|
throw new Error(error?.message, { cause: error });
|
|
2502
2502
|
}
|
|
2503
2503
|
}
|
|
2504
|
-
async function updateAction(packages, {
|
|
2505
|
-
tag,
|
|
2506
|
-
install = false,
|
|
2507
|
-
all = false,
|
|
2508
|
-
prefix = "^"
|
|
2509
|
-
}) {
|
|
2504
|
+
async function updateAction(packages, options) {
|
|
2510
2505
|
try {
|
|
2511
|
-
const
|
|
2506
|
+
const { tag, install = false, all = false, prefix = "^" } = options || {};
|
|
2507
|
+
const pkgs = (packages && Array.isArray(packages) ? packages : []).concat(all ? [...INTERNAL_PACKAGES] : []).filter(Boolean).map((pkg) => pkg.trim().replaceAll("*", ""));
|
|
2512
2508
|
writeInfo(
|
|
2513
2509
|
`${brandIcon(_config)} Preparing to update the package version for ${pkgs.join(", ")}.`,
|
|
2514
2510
|
_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.155",
|
|
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: {
|
|
@@ -2448,7 +2448,7 @@ function createProgram(config) {
|
|
|
2448
2448
|
"display CLI version"
|
|
2449
2449
|
);
|
|
2450
2450
|
program.command("update").description("Update pnpm catalog dependency package version.").argument(
|
|
2451
|
-
"
|
|
2451
|
+
"[packages...]",
|
|
2452
2452
|
"The package name/pattern to update the version for (e.g., @storm-software/config or @storm-software/ or @storm-software/*)."
|
|
2453
2453
|
).option(
|
|
2454
2454
|
"-t, --tag <string>",
|
|
@@ -2479,14 +2479,10 @@ ${error?.message}`,
|
|
|
2479
2479
|
throw new Error(error?.message, { cause: error });
|
|
2480
2480
|
}
|
|
2481
2481
|
}
|
|
2482
|
-
async function updateAction(packages, {
|
|
2483
|
-
tag,
|
|
2484
|
-
install = false,
|
|
2485
|
-
all = false,
|
|
2486
|
-
prefix = "^"
|
|
2487
|
-
}) {
|
|
2482
|
+
async function updateAction(packages, options) {
|
|
2488
2483
|
try {
|
|
2489
|
-
const
|
|
2484
|
+
const { tag, install = false, all = false, prefix = "^" } = options || {};
|
|
2485
|
+
const pkgs = (packages && Array.isArray(packages) ? packages : []).concat(all ? [...INTERNAL_PACKAGES] : []).filter(Boolean).map((pkg) => pkg.trim().replaceAll("*", ""));
|
|
2490
2486
|
writeInfo(
|
|
2491
2487
|
`${brandIcon(_config)} Preparing to update the package version for ${pkgs.join(", ")}.`,
|
|
2492
2488
|
_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.156",
|
|
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.25",
|
|
77
|
+
"@storm-software/config-tools": "^1.189.71",
|
|
78
|
+
"@storm-software/npm-tools": "^0.6.109",
|
|
79
|
+
"@storm-software/package-constants": "^0.1.6",
|
|
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": "a02c04dad2468834aa8f3f328aea7370f14bfa02"
|
|
94
94
|
}
|