@storm-software/pnpm-tools 0.4.0 → 0.4.1
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 +19 -0
- package/README.md +1 -2
- package/bin/pnpm.cjs +5 -5
- package/bin/pnpm.js +5 -5
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pnpm Tools
|
|
4
4
|
|
|
5
|
+
## [0.4.0](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.4.0) (2025-09-18)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **conventional-changelog:** Added `minimal` and `monorepo` configs to the
|
|
10
|
+
package
|
|
11
|
+
([4b4809048](https://github.com/storm-software/storm-ops/commit/4b4809048))
|
|
12
|
+
|
|
13
|
+
### Miscellaneous
|
|
14
|
+
|
|
15
|
+
- **monorepo:** Update workspace package links
|
|
16
|
+
([18136e9ad](https://github.com/storm-software/storm-ops/commit/18136e9ad))
|
|
17
|
+
|
|
18
|
+
### Updated Dependencies
|
|
19
|
+
|
|
20
|
+
- Updated config-tools to 1.186.0
|
|
21
|
+
- Updated npm-tools to 0.4.0
|
|
22
|
+
- Updated config to 1.132.0
|
|
23
|
+
|
|
5
24
|
## [0.3.4](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.3.4) (2025-09-18)
|
|
6
25
|
|
|
7
26
|
### 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
|
@@ -133,7 +133,7 @@ function createProgram(config) {
|
|
|
133
133
|
program.version("1.0.0", "-v --version", "display CLI version");
|
|
134
134
|
program.command("update").description("Update pnpm catalog dependency package version.").addArgument(
|
|
135
135
|
new import_commander.Argument(
|
|
136
|
-
"<
|
|
136
|
+
"<name>",
|
|
137
137
|
"The package name/pattern to update the version for (e.g., @storm-software/config or @storm-software/ for all Storm packages)."
|
|
138
138
|
)
|
|
139
139
|
).option(
|
|
@@ -144,12 +144,12 @@ function createProgram(config) {
|
|
|
144
144
|
return program;
|
|
145
145
|
}
|
|
146
146
|
async function updateAction({
|
|
147
|
-
|
|
147
|
+
name,
|
|
148
148
|
tag
|
|
149
149
|
}) {
|
|
150
150
|
try {
|
|
151
151
|
(0, import_config_tools.writeInfo)(
|
|
152
|
-
`\u26A1 Preparing to update the package version for ${
|
|
152
|
+
`\u26A1 Preparing to update the package version for ${name}. Please provide the requested details below...`,
|
|
153
153
|
_config
|
|
154
154
|
);
|
|
155
155
|
const catalog = await getCatalog();
|
|
@@ -159,11 +159,11 @@ async function updateAction({
|
|
|
159
159
|
);
|
|
160
160
|
}
|
|
161
161
|
const matchedPackages = Object.keys(catalog).filter(
|
|
162
|
-
(pkg) =>
|
|
162
|
+
(pkg) => name.endsWith("/") ? pkg.startsWith(name) : pkg === name
|
|
163
163
|
);
|
|
164
164
|
if (matchedPackages.length === 0) {
|
|
165
165
|
throw new Error(
|
|
166
|
-
`No packages found in the catalog matching the name/pattern "${
|
|
166
|
+
`No packages found in the catalog matching the name/pattern "${name}".`
|
|
167
167
|
);
|
|
168
168
|
}
|
|
169
169
|
await Promise.all(
|
package/bin/pnpm.js
CHANGED
|
@@ -142,7 +142,7 @@ function createProgram(config) {
|
|
|
142
142
|
program.version("1.0.0", "-v --version", "display CLI version");
|
|
143
143
|
program.command("update").description("Update pnpm catalog dependency package version.").addArgument(
|
|
144
144
|
new Argument(
|
|
145
|
-
"<
|
|
145
|
+
"<name>",
|
|
146
146
|
"The package name/pattern to update the version for (e.g., @storm-software/config or @storm-software/ for all Storm packages)."
|
|
147
147
|
)
|
|
148
148
|
).option(
|
|
@@ -153,12 +153,12 @@ function createProgram(config) {
|
|
|
153
153
|
return program;
|
|
154
154
|
}
|
|
155
155
|
async function updateAction({
|
|
156
|
-
|
|
156
|
+
name,
|
|
157
157
|
tag
|
|
158
158
|
}) {
|
|
159
159
|
try {
|
|
160
160
|
writeInfo(
|
|
161
|
-
`\u26A1 Preparing to update the package version for ${
|
|
161
|
+
`\u26A1 Preparing to update the package version for ${name}. Please provide the requested details below...`,
|
|
162
162
|
_config
|
|
163
163
|
);
|
|
164
164
|
const catalog = await getCatalog();
|
|
@@ -168,11 +168,11 @@ async function updateAction({
|
|
|
168
168
|
);
|
|
169
169
|
}
|
|
170
170
|
const matchedPackages = Object.keys(catalog).filter(
|
|
171
|
-
(pkg) =>
|
|
171
|
+
(pkg) => name.endsWith("/") ? pkg.startsWith(name) : pkg === name
|
|
172
172
|
);
|
|
173
173
|
if (matchedPackages.length === 0) {
|
|
174
174
|
throw new Error(
|
|
175
|
-
`No packages found in the catalog matching the name/pattern "${
|
|
175
|
+
`No packages found in the catalog matching the name/pattern "${name}".`
|
|
176
176
|
);
|
|
177
177
|
}
|
|
178
178
|
await Promise.all(
|
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.1",
|
|
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.1",
|
|
94
|
+
"@storm-software/npm-tools": "^0.4.1",
|
|
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": "cb00892486b8fc96935426f52b620361ae5bb9bb"
|
|
109
109
|
}
|