@storm-software/pnpm-tools 0.6.148 → 0.6.149

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 CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  # Changelog for Storm Ops - Pnpm Tools
4
4
 
5
+ ## [0.6.148](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.6.148) (03/31/2026)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate workspace files ([241e519f6](https://github.com/storm-software/storm-ops/commit/241e519f6))
10
+
11
+ ### Updated Dependencies
12
+
13
+ - Updated **testing-tools** to **v1.119.138**
14
+ - Updated **config-tools** to **v1.189.63**
15
+ - Updated **build-tools** to **v0.158.144**
16
+ - Updated **npm-tools** to **v0.6.101**
17
+ - Updated **config** to **v1.137.17**
18
+
5
19
  ## [0.6.147](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.6.147) (03/31/2026)
6
20
 
7
21
  ### 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
- [![Version](https://img.shields.io/badge/version-0.6.146-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
30
+ [![Version](https://img.shields.io/badge/version-0.6.147-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
31
31
 
32
32
  <!-- prettier-ignore-start -->
33
33
  <!-- markdownlint-disable -->
package/bin/pnpm.cjs CHANGED
@@ -2386,7 +2386,8 @@ function createProgram(config) {
2386
2386
  program.version("1.0.0", "-v --version", "display CLI version");
2387
2387
  program.command("update").description("Update pnpm catalog dependency package version.").argument(
2388
2388
  "<packages...>",
2389
- "The package name/pattern to update the version for (e.g., @storm-software/config or @storm-software/ or @storm-software/*)."
2389
+ "The package name/pattern to update the version for (e.g., @storm-software/config or @storm-software/ or @storm-software/*).",
2390
+ []
2390
2391
  ).option(
2391
2392
  "-t, --tag <string>",
2392
2393
  `The npm tag to use when fetching the latest version of the package (e.g., "latest", "next", etc.). Defaults to "latest".`,
@@ -2406,14 +2407,14 @@ function createProgram(config) {
2406
2407
  ).action(updateAction);
2407
2408
  return program;
2408
2409
  }
2409
- async function updateAction(packages, {
2410
+ async function updateAction(packages = [], {
2410
2411
  tag,
2411
2412
  install = false,
2412
2413
  all = false,
2413
2414
  prefix = "^"
2414
2415
  }) {
2415
2416
  try {
2416
- const pkgs = (Array.isArray(packages) ? packages : [packages.split(",")].flat()).map((pkg) => pkg.trim().replaceAll("*", "")).concat(all ? INTERNAL_PACKAGES : []);
2417
+ const pkgs = (Array.isArray(packages) ? packages : typeof packages === "string" ? [packages.split(",")].flat() : []).concat(all ? INTERNAL_PACKAGES : []).filter(Boolean).map((pkg) => pkg.trim().replaceAll("*", ""));
2417
2418
  writeInfo(
2418
2419
  `${brandIcon(_config)} Preparing to update the package version for ${pkgs.join(", ")}.`,
2419
2420
  _config
package/bin/pnpm.js CHANGED
@@ -2371,7 +2371,8 @@ function createProgram(config) {
2371
2371
  program.version("1.0.0", "-v --version", "display CLI version");
2372
2372
  program.command("update").description("Update pnpm catalog dependency package version.").argument(
2373
2373
  "<packages...>",
2374
- "The package name/pattern to update the version for (e.g., @storm-software/config or @storm-software/ or @storm-software/*)."
2374
+ "The package name/pattern to update the version for (e.g., @storm-software/config or @storm-software/ or @storm-software/*).",
2375
+ []
2375
2376
  ).option(
2376
2377
  "-t, --tag <string>",
2377
2378
  `The npm tag to use when fetching the latest version of the package (e.g., "latest", "next", etc.). Defaults to "latest".`,
@@ -2391,14 +2392,14 @@ function createProgram(config) {
2391
2392
  ).action(updateAction);
2392
2393
  return program;
2393
2394
  }
2394
- async function updateAction(packages, {
2395
+ async function updateAction(packages = [], {
2395
2396
  tag,
2396
2397
  install = false,
2397
2398
  all = false,
2398
2399
  prefix = "^"
2399
2400
  }) {
2400
2401
  try {
2401
- const pkgs = (Array.isArray(packages) ? packages : [packages.split(",")].flat()).map((pkg) => pkg.trim().replaceAll("*", "")).concat(all ? INTERNAL_PACKAGES : []);
2402
+ const pkgs = (Array.isArray(packages) ? packages : typeof packages === "string" ? [packages.split(",")].flat() : []).concat(all ? INTERNAL_PACKAGES : []).filter(Boolean).map((pkg) => pkg.trim().replaceAll("*", ""));
2402
2403
  writeInfo(
2403
2404
  `${brandIcon(_config)} Preparing to update the package version for ${pkgs.join(", ")}.`,
2404
2405
  _config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/pnpm-tools",
3
- "version": "0.6.148",
3
+ "version": "0.6.149",
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.17",
77
- "@storm-software/config-tools": "^1.189.63",
78
- "@storm-software/npm-tools": "^0.6.101",
76
+ "@storm-software/config": "^1.137.18",
77
+ "@storm-software/config-tools": "^1.189.64",
78
+ "@storm-software/npm-tools": "^0.6.102",
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/build-tools": "^0.158.144",
88
+ "@storm-software/build-tools": "^0.158.145",
89
89
  "@types/node": "^25.5.0",
90
90
  "tsup": "8.4.0"
91
91
  },
92
92
  "publishConfig": { "access": "public" },
93
- "gitHead": "6b69d24518cb551fa374e8769d1adfbc34448ffb"
93
+ "gitHead": "5e8536ca8d6f26e6b448632e0f50e6271dce0269"
94
94
  }