@storm-software/pnpm-tools 0.3.4 → 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 CHANGED
@@ -2,6 +2,38 @@
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
+
24
+ ## [0.3.4](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.3.4) (2025-09-18)
25
+
26
+ ### Miscellaneous
27
+
28
+ - **monorepo:** Update workspace package links
29
+ ([4ecf1952d](https://github.com/storm-software/storm-ops/commit/4ecf1952d))
30
+
31
+ ### Updated Dependencies
32
+
33
+ - Updated config-tools to 1.185.4
34
+ - Updated npm-tools to 0.3.4
35
+ - Updated config to 1.131.4
36
+
5
37
  ## [0.3.3](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.3.3) (2025-09-18)
6
38
 
7
39
  ### 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
- [![Version](https://img.shields.io/badge/version-0.3.2-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.3.4-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
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
- "<package-name>",
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
- packageName,
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 ${packageName}. Please provide the requested details below...`,
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) => packageName.endsWith("/") ? pkg.startsWith(packageName) : pkg === packageName
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 "${packageName}".`
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
- "<package-name>",
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
- packageName,
156
+ name,
157
157
  tag
158
158
  }) {
159
159
  try {
160
160
  writeInfo(
161
- `\u26A1 Preparing to update the package version for ${packageName}. Please provide the requested details below...`,
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) => packageName.endsWith("/") ? pkg.startsWith(packageName) : pkg === packageName
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 "${packageName}".`
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.3.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.131.4",
93
- "@storm-software/config-tools": "^1.185.4",
94
- "@storm-software/npm-tools": "^0.3.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": "bf0e3ad2902fa0cd4613fe4896deea054a78a4be"
108
+ "gitHead": "cb00892486b8fc96935426f52b620361ae5bb9bb"
109
109
  }