@storm-software/pnpm-tools 0.7.8 → 0.7.9
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 +14 -0
- package/bin/pnpm.cjs +4 -4
- package/bin/pnpm.js +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pnpm Tools
|
|
4
4
|
|
|
5
|
+
## [0.7.8](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.7.8) (04/28/2026)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **pnpm-tools:** Added summary logging and reduced general CLI noise ([9d3749d7b](https://github.com/storm-software/storm-ops/commit/9d3749d7b))
|
|
10
|
+
|
|
11
|
+
### Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated **package-constants** to **v0.1.15**
|
|
14
|
+
- Updated **testing-tools** to **v1.119.155**
|
|
15
|
+
- Updated **config-tools** to **v1.190.1**
|
|
16
|
+
- Updated **npm-tools** to **v0.6.118**
|
|
17
|
+
- Updated **config** to **v1.137.34**
|
|
18
|
+
|
|
5
19
|
## [0.7.7](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.7.7) (04/28/2026)
|
|
6
20
|
|
|
7
21
|
### Miscellaneous
|
package/bin/pnpm.cjs
CHANGED
|
@@ -2165,13 +2165,13 @@ var INTERNAL_PACKAGES = [
|
|
|
2165
2165
|
];
|
|
2166
2166
|
|
|
2167
2167
|
// src/cli/index.ts
|
|
2168
|
-
var import_chalk3 = require("chalk");
|
|
2168
|
+
var import_chalk3 = __toESM(require("chalk"), 1);
|
|
2169
2169
|
var import_commander = require("commander");
|
|
2170
2170
|
|
|
2171
2171
|
// package.json
|
|
2172
2172
|
var package_default = {
|
|
2173
2173
|
name: "@storm-software/pnpm-tools",
|
|
2174
|
-
version: "0.7.
|
|
2174
|
+
version: "0.7.8",
|
|
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: {
|
|
@@ -2631,8 +2631,8 @@ async function updateAction(packages, options) {
|
|
|
2631
2631
|
writeSuccess(
|
|
2632
2632
|
`${brandIcon(_config)} Successfully updated the version for the following package(s):
|
|
2633
2633
|
${changed.map(
|
|
2634
|
-
(pkg) => `- ${
|
|
2635
|
-
|
|
2634
|
+
(pkg) => `- ${import_chalk3.default.bold(pkg.packageName)}: ${import_chalk3.default.bold(import_chalk3.default.red(pkg.previous))} -> ${import_chalk3.default.bold(
|
|
2635
|
+
import_chalk3.default.green(pkg.current)
|
|
2636
2636
|
)}`
|
|
2637
2637
|
).join("\n")}`,
|
|
2638
2638
|
_config
|
package/bin/pnpm.js
CHANGED
|
@@ -2143,13 +2143,13 @@ var INTERNAL_PACKAGES = [
|
|
|
2143
2143
|
];
|
|
2144
2144
|
|
|
2145
2145
|
// src/cli/index.ts
|
|
2146
|
-
import
|
|
2146
|
+
import chalk2 from "chalk";
|
|
2147
2147
|
import { Command } from "commander";
|
|
2148
2148
|
|
|
2149
2149
|
// package.json
|
|
2150
2150
|
var package_default = {
|
|
2151
2151
|
name: "@storm-software/pnpm-tools",
|
|
2152
|
-
version: "0.7.
|
|
2152
|
+
version: "0.7.8",
|
|
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: {
|
|
@@ -2609,8 +2609,8 @@ async function updateAction(packages, options) {
|
|
|
2609
2609
|
writeSuccess(
|
|
2610
2610
|
`${brandIcon(_config)} Successfully updated the version for the following package(s):
|
|
2611
2611
|
${changed.map(
|
|
2612
|
-
(pkg) => `- ${bold(pkg.packageName)}: ${bold(red(pkg.previous))} -> ${bold(
|
|
2613
|
-
green(pkg.current)
|
|
2612
|
+
(pkg) => `- ${chalk2.bold(pkg.packageName)}: ${chalk2.bold(chalk2.red(pkg.previous))} -> ${chalk2.bold(
|
|
2613
|
+
chalk2.green(pkg.current)
|
|
2614
2614
|
)}`
|
|
2615
2615
|
).join("\n")}`,
|
|
2616
2616
|
_config
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/pnpm-tools",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.9",
|
|
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": "
|
|
94
|
+
"gitHead": "a1d06d41d54a6cf692278ecc55bd557001204a2b"
|
|
95
95
|
}
|