@storm-software/pnpm-tools 0.7.10 → 0.7.11

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,12 @@
2
2
 
3
3
  # Changelog for Storm Ops - Pnpm Tools
4
4
 
5
+ ## [0.7.10](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.7.10) (04/29/2026)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **pnpm-tools:** Ensure success message is logged at the end of CLI script ([806319a2d](https://github.com/storm-software/storm-ops/commit/806319a2d))
10
+
5
11
  ## [0.7.9](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.7.9) (04/28/2026)
6
12
 
7
13
  ### Bug Fixes
package/bin/pnpm.cjs CHANGED
@@ -2171,7 +2171,7 @@ var import_commander = require("commander");
2171
2171
  // package.json
2172
2172
  var package_default = {
2173
2173
  name: "@storm-software/pnpm-tools",
2174
- version: "0.7.9",
2174
+ version: "0.7.10",
2175
2175
  private: false,
2176
2176
  description: "A set of [pnpm](https://pnpm.io/) plugins and utilities for managing workspace packages/dependencies.",
2177
2177
  repository: {
@@ -2632,8 +2632,10 @@ async function updateAction(packages, options) {
2632
2632
  writeSuccess(
2633
2633
  `${brandIcon(_config)} Successfully updated${install ? " and installed" : ""} the following package(s):
2634
2634
  ${changed.map(
2635
- (pkg) => `- ${import_chalk3.default.bold(pkg.packageName)}: ${import_chalk3.default.bold(import_chalk3.default.red(`v${pkg.previous}`))} -> ${import_chalk3.default.bold(
2636
- import_chalk3.default.green(`v${pkg.current}`)
2635
+ (pkg) => `- ${import_chalk3.default.bold(pkg.packageName)}: ${import_chalk3.default.bold(
2636
+ import_chalk3.default.red(`v${pkg.previous.replace(/^[\^~><=]*/, "")}`)
2637
+ )} -> ${import_chalk3.default.bold(
2638
+ import_chalk3.default.green(`v${pkg.current.replace(/^[\^~><=]*/, "")}`)
2637
2639
  )}`
2638
2640
  ).join("\n")}`,
2639
2641
  _config
package/bin/pnpm.js CHANGED
@@ -2149,7 +2149,7 @@ import { Command } from "commander";
2149
2149
  // package.json
2150
2150
  var package_default = {
2151
2151
  name: "@storm-software/pnpm-tools",
2152
- version: "0.7.9",
2152
+ version: "0.7.10",
2153
2153
  private: false,
2154
2154
  description: "A set of [pnpm](https://pnpm.io/) plugins and utilities for managing workspace packages/dependencies.",
2155
2155
  repository: {
@@ -2610,8 +2610,10 @@ async function updateAction(packages, options) {
2610
2610
  writeSuccess(
2611
2611
  `${brandIcon(_config)} Successfully updated${install ? " and installed" : ""} the following package(s):
2612
2612
  ${changed.map(
2613
- (pkg) => `- ${chalk2.bold(pkg.packageName)}: ${chalk2.bold(chalk2.red(`v${pkg.previous}`))} -> ${chalk2.bold(
2614
- chalk2.green(`v${pkg.current}`)
2613
+ (pkg) => `- ${chalk2.bold(pkg.packageName)}: ${chalk2.bold(
2614
+ chalk2.red(`v${pkg.previous.replace(/^[\^~><=]*/, "")}`)
2615
+ )} -> ${chalk2.bold(
2616
+ chalk2.green(`v${pkg.current.replace(/^[\^~><=]*/, "")}`)
2615
2617
  )}`
2616
2618
  ).join("\n")}`,
2617
2619
  _config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/pnpm-tools",
3
- "version": "0.7.10",
3
+ "version": "0.7.11",
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": {
@@ -91,5 +91,5 @@
91
91
  "tsup": "8.4.0"
92
92
  },
93
93
  "publishConfig": { "access": "public" },
94
- "gitHead": "2c69d9a5c8821c0e47785e71f03b407832f43139"
94
+ "gitHead": "945c02883fb239cad660662aec70ca7e2a5621f7"
95
95
  }