@storm-software/pnpm-tools 0.6.89 → 0.6.91
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 +23 -0
- package/README.md +1 -1
- package/bin/pnpm.cjs +1 -1
- package/bin/pnpm.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pnpm Tools
|
|
4
4
|
|
|
5
|
+
## [0.6.90](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.6.90) (02/20/2026)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Removed extra spacing after checkmark icon ([143ed5241](https://github.com/storm-software/storm-ops/commit/143ed5241))
|
|
10
|
+
|
|
11
|
+
## [0.6.89](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.6.89) (02/20/2026)
|
|
12
|
+
|
|
13
|
+
### Miscellaneous
|
|
14
|
+
|
|
15
|
+
- **config-tools:** Use different success icon across packages ([85d343d51](https://github.com/storm-software/storm-ops/commit/85d343d51))
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- **prettier:** Ensure consistency when formatting package.json files ([2a81896c5](https://github.com/storm-software/storm-ops/commit/2a81896c5))
|
|
20
|
+
|
|
21
|
+
### Updated Dependencies
|
|
22
|
+
|
|
23
|
+
- Updated **testing-tools** to **v1.119.81**
|
|
24
|
+
- Updated **config-tools** to **v1.189.6**
|
|
25
|
+
- Updated **npm-tools** to **v0.6.44**
|
|
26
|
+
- Updated **config** to **v1.135.7**
|
|
27
|
+
|
|
5
28
|
## [0.6.88](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.6.88) (02/18/2026)
|
|
6
29
|
|
|
7
30
|
### 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
|
@@ -260,7 +260,7 @@ void (async () => {
|
|
|
260
260
|
const program = createProgram(config);
|
|
261
261
|
await program.parseAsync(process.argv);
|
|
262
262
|
(0, import_console2.writeSuccess)(
|
|
263
|
-
`\u2714
|
|
263
|
+
`\u2714 Storm pnpm ${process.argv && process.argv.length >= 3 && process.argv[2] ? process.argv[2] : "tool"} processing completed successfully!`,
|
|
264
264
|
config
|
|
265
265
|
);
|
|
266
266
|
(0, import_process_handler.exitWithSuccess)(config);
|
package/bin/pnpm.js
CHANGED
|
@@ -277,7 +277,7 @@ void (async () => {
|
|
|
277
277
|
const program = createProgram(config);
|
|
278
278
|
await program.parseAsync(process.argv);
|
|
279
279
|
writeSuccess(
|
|
280
|
-
`\u2714
|
|
280
|
+
`\u2714 Storm pnpm ${process.argv && process.argv.length >= 3 && process.argv[2] ? process.argv[2] : "tool"} processing completed successfully!`,
|
|
281
281
|
config
|
|
282
282
|
);
|
|
283
283
|
exitWithSuccess(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.91",
|
|
4
4
|
"type": "module",
|
|
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
|
},
|
|
74
74
|
"types": "./dist/index.d.ts",
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@storm-software/config": "^1.135.
|
|
77
|
-
"@storm-software/config-tools": "^1.189.
|
|
78
|
-
"@storm-software/npm-tools": "^0.6.
|
|
76
|
+
"@storm-software/config": "^1.135.8",
|
|
77
|
+
"@storm-software/config-tools": "^1.189.7",
|
|
78
|
+
"@storm-software/npm-tools": "^0.6.45",
|
|
79
79
|
"commander": "^12.1.0",
|
|
80
80
|
"defu": "6.1.4",
|
|
81
81
|
"prettier": "^3.8.1",
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
87
|
"@pnpm/types": "^1001.3.0",
|
|
88
|
-
"@types/node": "^
|
|
88
|
+
"@types/node": "^25.3.0",
|
|
89
89
|
"tsup": "8.4.0"
|
|
90
90
|
},
|
|
91
91
|
"publishConfig": { "access": "public" },
|
|
92
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "1246351be8bc0444be4f05feb8ddf68950fb4e39"
|
|
93
93
|
}
|