@storm-software/pnpm-tools 0.4.0 → 0.4.2
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 +37 -0
- package/README.md +1 -2
- package/bin/pnpm.cjs +2 -3
- package/bin/pnpm.js +2 -3
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,43 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pnpm Tools
|
|
4
4
|
|
|
5
|
+
## [0.4.1](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.4.1) (2025-09-19)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **pnpm-tools:** Resolve issue parsing the `name` command-line argument
|
|
10
|
+
([532d37c75](https://github.com/storm-software/storm-ops/commit/532d37c75))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Update workspace package links
|
|
15
|
+
([8cd386592](https://github.com/storm-software/storm-ops/commit/8cd386592))
|
|
16
|
+
|
|
17
|
+
### Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- Updated config-tools to 1.186.1
|
|
20
|
+
- Updated npm-tools to 0.4.1
|
|
21
|
+
- Updated config to 1.132.1
|
|
22
|
+
|
|
23
|
+
## [0.4.0](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.4.0) (2025-09-18)
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
- **conventional-changelog:** Added `minimal` and `monorepo` configs to the
|
|
28
|
+
package
|
|
29
|
+
([4b4809048](https://github.com/storm-software/storm-ops/commit/4b4809048))
|
|
30
|
+
|
|
31
|
+
### Miscellaneous
|
|
32
|
+
|
|
33
|
+
- **monorepo:** Update workspace package links
|
|
34
|
+
([18136e9ad](https://github.com/storm-software/storm-ops/commit/18136e9ad))
|
|
35
|
+
|
|
36
|
+
### Updated Dependencies
|
|
37
|
+
|
|
38
|
+
- Updated config-tools to 1.186.0
|
|
39
|
+
- Updated npm-tools to 0.4.0
|
|
40
|
+
- Updated config to 1.132.0
|
|
41
|
+
|
|
5
42
|
## [0.3.4](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.3.4) (2025-09-18)
|
|
6
43
|
|
|
7
44
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -40,7 +40,6 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
-
|
|
44
43
|
## Table of Contents
|
|
45
44
|
|
|
46
45
|
- [Storm Configuration Package](#storm-configuration-package)
|
package/bin/pnpm.cjs
CHANGED
|
@@ -122,7 +122,7 @@ async function upgradeCatalogPackage(packageName, options = {}) {
|
|
|
122
122
|
var _config = {};
|
|
123
123
|
function createProgram(config) {
|
|
124
124
|
_config = config;
|
|
125
|
-
(0, import_config_tools.writeInfo)("\u26A1 Running
|
|
125
|
+
(0, import_config_tools.writeInfo)("\u26A1 Running the `storm-pnpm` command-line application", config);
|
|
126
126
|
const root = (0, import_config_tools.findWorkspaceRootSafe)(process.cwd());
|
|
127
127
|
process.env.STORM_WORKSPACE_ROOT ??= root;
|
|
128
128
|
process.env.NX_WORKSPACE_ROOT_PATH ??= root;
|
|
@@ -143,8 +143,7 @@ function createProgram(config) {
|
|
|
143
143
|
).action(updateAction);
|
|
144
144
|
return program;
|
|
145
145
|
}
|
|
146
|
-
async function updateAction({
|
|
147
|
-
packageName,
|
|
146
|
+
async function updateAction(packageName, {
|
|
148
147
|
tag
|
|
149
148
|
}) {
|
|
150
149
|
try {
|
package/bin/pnpm.js
CHANGED
|
@@ -131,7 +131,7 @@ async function upgradeCatalogPackage(packageName, options = {}) {
|
|
|
131
131
|
var _config = {};
|
|
132
132
|
function createProgram(config) {
|
|
133
133
|
_config = config;
|
|
134
|
-
writeInfo("\u26A1 Running
|
|
134
|
+
writeInfo("\u26A1 Running the `storm-pnpm` command-line application", config);
|
|
135
135
|
const root = findWorkspaceRootSafe(process.cwd());
|
|
136
136
|
process.env.STORM_WORKSPACE_ROOT ??= root;
|
|
137
137
|
process.env.NX_WORKSPACE_ROOT_PATH ??= root;
|
|
@@ -152,8 +152,7 @@ function createProgram(config) {
|
|
|
152
152
|
).action(updateAction);
|
|
153
153
|
return program;
|
|
154
154
|
}
|
|
155
|
-
async function updateAction({
|
|
156
|
-
packageName,
|
|
155
|
+
async function updateAction(packageName, {
|
|
157
156
|
tag
|
|
158
157
|
}) {
|
|
159
158
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/pnpm-tools",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
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": {
|
|
@@ -89,9 +89,9 @@
|
|
|
89
89
|
"dependencies": {
|
|
90
90
|
"@pnpm/plugin-better-defaults": "^0.2.1",
|
|
91
91
|
"@pnpm/plugin-esm-node-path": "^0.1.2",
|
|
92
|
-
"@storm-software/config": "^1.132.
|
|
93
|
-
"@storm-software/config-tools": "^1.186.
|
|
94
|
-
"@storm-software/npm-tools": "^0.4.
|
|
92
|
+
"@storm-software/config": "^1.132.1",
|
|
93
|
+
"@storm-software/config-tools": "^1.186.2",
|
|
94
|
+
"@storm-software/npm-tools": "^0.4.2",
|
|
95
95
|
"commander": "^12.1.0",
|
|
96
96
|
"defu": "6.1.4",
|
|
97
97
|
"prettier": "^3.5.1",
|
|
@@ -105,5 +105,5 @@
|
|
|
105
105
|
"tsup": "8.4.0"
|
|
106
106
|
},
|
|
107
107
|
"publishConfig": { "access": "public" },
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "a27048aa8969fb416f5fbf25265feaeceb2805f0"
|
|
109
109
|
}
|