@storm-software/pnpm-tools 0.7.43 → 0.7.45
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 +24 -0
- package/README.md +1 -1
- package/bin/pnpm.cjs +114 -1
- package/bin/pnpm.js +114 -1
- package/package.json +95 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pnpm Tools
|
|
4
4
|
|
|
5
|
+
## [0.7.45](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.7.45) (05/28/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **config** to **v1.137.66**
|
|
10
|
+
- Updated **config-tools** to **v1.190.34**
|
|
11
|
+
- Updated **npm-tools** to **v0.6.152**
|
|
12
|
+
- Updated **package-constants** to **v0.1.47**
|
|
13
|
+
- Updated **testing-tools** to **v1.119.187**
|
|
14
|
+
|
|
15
|
+
## [0.7.44](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.7.44) (05/26/2026)
|
|
16
|
+
|
|
17
|
+
### Miscellaneous
|
|
18
|
+
|
|
19
|
+
- **devenv-modules:** Update shared K8s modules ([d571d536f](https://github.com/storm-software/storm-ops/commit/d571d536f))
|
|
20
|
+
|
|
21
|
+
### Updated Dependencies
|
|
22
|
+
|
|
23
|
+
- Updated **config** to **v1.137.65**
|
|
24
|
+
- Updated **config-tools** to **v1.190.33**
|
|
25
|
+
- Updated **npm-tools** to **v0.6.151**
|
|
26
|
+
- Updated **package-constants** to **v0.1.46**
|
|
27
|
+
- Updated **testing-tools** to **v1.119.186**
|
|
28
|
+
|
|
5
29
|
## [0.7.43](https://github.com/storm-software/storm-ops/releases/tag/pnpm-tools%400.7.43) (05/26/2026)
|
|
6
30
|
|
|
7
31
|
### Updated Dependencies
|
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
|
@@ -2184,7 +2184,120 @@ var import_chalk3 = __toESM(require("chalk"), 1);
|
|
|
2184
2184
|
var import_commander = require("commander");
|
|
2185
2185
|
|
|
2186
2186
|
// package.json
|
|
2187
|
-
var package_default = {
|
|
2187
|
+
var package_default = {
|
|
2188
|
+
name: "@storm-software/pnpm-tools",
|
|
2189
|
+
version: "0.7.45",
|
|
2190
|
+
private: false,
|
|
2191
|
+
description: "A set of [pnpm](https://pnpm.io/) plugins and utilities for managing workspace packages/dependencies.",
|
|
2192
|
+
repository: {
|
|
2193
|
+
type: "github",
|
|
2194
|
+
url: "https://github.com/storm-software/storm-ops",
|
|
2195
|
+
directory: "packages/pnpm-tools"
|
|
2196
|
+
},
|
|
2197
|
+
type: "module",
|
|
2198
|
+
exports: {
|
|
2199
|
+
"./package.json": "./package.json",
|
|
2200
|
+
"./index": {
|
|
2201
|
+
import: {
|
|
2202
|
+
types: "./dist/index.d.ts",
|
|
2203
|
+
default: "./dist/index.js"
|
|
2204
|
+
},
|
|
2205
|
+
require: {
|
|
2206
|
+
types: "./dist/index.d.cts",
|
|
2207
|
+
default: "./dist/index.cjs"
|
|
2208
|
+
},
|
|
2209
|
+
default: {
|
|
2210
|
+
types: "./dist/index.d.ts",
|
|
2211
|
+
default: "./dist/index.js"
|
|
2212
|
+
}
|
|
2213
|
+
},
|
|
2214
|
+
".": {
|
|
2215
|
+
import: {
|
|
2216
|
+
types: "./dist/index.d.ts",
|
|
2217
|
+
default: "./dist/index.js"
|
|
2218
|
+
},
|
|
2219
|
+
require: {
|
|
2220
|
+
types: "./dist/index.d.cts",
|
|
2221
|
+
default: "./dist/index.cjs"
|
|
2222
|
+
},
|
|
2223
|
+
default: {
|
|
2224
|
+
types: "./dist/index.d.ts",
|
|
2225
|
+
default: "./dist/index.js"
|
|
2226
|
+
}
|
|
2227
|
+
},
|
|
2228
|
+
"./types": {
|
|
2229
|
+
import: {
|
|
2230
|
+
types: "./dist/types.d.ts",
|
|
2231
|
+
default: "./dist/types.js"
|
|
2232
|
+
},
|
|
2233
|
+
require: {
|
|
2234
|
+
types: "./dist/types.d.cts",
|
|
2235
|
+
default: "./dist/types.cjs"
|
|
2236
|
+
},
|
|
2237
|
+
default: {
|
|
2238
|
+
types: "./dist/types.d.ts",
|
|
2239
|
+
default: "./dist/types.js"
|
|
2240
|
+
}
|
|
2241
|
+
},
|
|
2242
|
+
"./helpers": {
|
|
2243
|
+
import: {
|
|
2244
|
+
types: "./dist/helpers/index.d.ts",
|
|
2245
|
+
default: "./dist/helpers/index.js"
|
|
2246
|
+
},
|
|
2247
|
+
require: {
|
|
2248
|
+
types: "./dist/helpers/index.d.cts",
|
|
2249
|
+
default: "./dist/helpers/index.cjs"
|
|
2250
|
+
},
|
|
2251
|
+
default: {
|
|
2252
|
+
types: "./dist/helpers/index.d.ts",
|
|
2253
|
+
default: "./dist/helpers/index.js"
|
|
2254
|
+
}
|
|
2255
|
+
},
|
|
2256
|
+
"./helpers/*": {
|
|
2257
|
+
import: {
|
|
2258
|
+
types: "./dist/helpers/*.d.ts",
|
|
2259
|
+
default: "./dist/helpers/*.js"
|
|
2260
|
+
},
|
|
2261
|
+
require: {
|
|
2262
|
+
types: "./dist/helpers/*.d.cts",
|
|
2263
|
+
default: "./dist/helpers/*.cjs"
|
|
2264
|
+
},
|
|
2265
|
+
default: {
|
|
2266
|
+
types: "./dist/helpers/*.d.ts",
|
|
2267
|
+
default: "./dist/helpers/*.js"
|
|
2268
|
+
}
|
|
2269
|
+
}
|
|
2270
|
+
},
|
|
2271
|
+
main: "./dist/index.cjs",
|
|
2272
|
+
module: "./dist/index.js",
|
|
2273
|
+
types: "./dist/index.d.ts",
|
|
2274
|
+
bin: {
|
|
2275
|
+
"storm-pnpm": "./bin/pnpm.js",
|
|
2276
|
+
"storm-pnpm-cjs": "./bin/pnpm.cjs",
|
|
2277
|
+
"storm-pnpm-esm": "./bin/pnpm.js"
|
|
2278
|
+
},
|
|
2279
|
+
dependencies: {
|
|
2280
|
+
"@storm-software/config": "workspace:*",
|
|
2281
|
+
"@storm-software/config-tools": "workspace:*",
|
|
2282
|
+
"@storm-software/npm-tools": "workspace:*",
|
|
2283
|
+
"@storm-software/package-constants": "workspace:*",
|
|
2284
|
+
chalk: "catalog:",
|
|
2285
|
+
commander: "catalog:",
|
|
2286
|
+
defu: "catalog:",
|
|
2287
|
+
prettier: "catalog:",
|
|
2288
|
+
"prettier-plugin-packagejson": "catalog:",
|
|
2289
|
+
semver: "catalog:",
|
|
2290
|
+
yaml: "catalog:"
|
|
2291
|
+
},
|
|
2292
|
+
devDependencies: {
|
|
2293
|
+
"@pnpm/types": "catalog:",
|
|
2294
|
+
"@types/node": "catalog:",
|
|
2295
|
+
tsup: "catalog:"
|
|
2296
|
+
},
|
|
2297
|
+
publishConfig: {
|
|
2298
|
+
access: "public"
|
|
2299
|
+
}
|
|
2300
|
+
};
|
|
2188
2301
|
|
|
2189
2302
|
// ../npm-tools/src/constants.ts
|
|
2190
2303
|
var LATEST_NPM_TAG = "latest";
|
package/bin/pnpm.js
CHANGED
|
@@ -2162,7 +2162,120 @@ import chalk2 from "chalk";
|
|
|
2162
2162
|
import { Command } from "commander";
|
|
2163
2163
|
|
|
2164
2164
|
// package.json
|
|
2165
|
-
var package_default = {
|
|
2165
|
+
var package_default = {
|
|
2166
|
+
name: "@storm-software/pnpm-tools",
|
|
2167
|
+
version: "0.7.45",
|
|
2168
|
+
private: false,
|
|
2169
|
+
description: "A set of [pnpm](https://pnpm.io/) plugins and utilities for managing workspace packages/dependencies.",
|
|
2170
|
+
repository: {
|
|
2171
|
+
type: "github",
|
|
2172
|
+
url: "https://github.com/storm-software/storm-ops",
|
|
2173
|
+
directory: "packages/pnpm-tools"
|
|
2174
|
+
},
|
|
2175
|
+
type: "module",
|
|
2176
|
+
exports: {
|
|
2177
|
+
"./package.json": "./package.json",
|
|
2178
|
+
"./index": {
|
|
2179
|
+
import: {
|
|
2180
|
+
types: "./dist/index.d.ts",
|
|
2181
|
+
default: "./dist/index.js"
|
|
2182
|
+
},
|
|
2183
|
+
require: {
|
|
2184
|
+
types: "./dist/index.d.cts",
|
|
2185
|
+
default: "./dist/index.cjs"
|
|
2186
|
+
},
|
|
2187
|
+
default: {
|
|
2188
|
+
types: "./dist/index.d.ts",
|
|
2189
|
+
default: "./dist/index.js"
|
|
2190
|
+
}
|
|
2191
|
+
},
|
|
2192
|
+
".": {
|
|
2193
|
+
import: {
|
|
2194
|
+
types: "./dist/index.d.ts",
|
|
2195
|
+
default: "./dist/index.js"
|
|
2196
|
+
},
|
|
2197
|
+
require: {
|
|
2198
|
+
types: "./dist/index.d.cts",
|
|
2199
|
+
default: "./dist/index.cjs"
|
|
2200
|
+
},
|
|
2201
|
+
default: {
|
|
2202
|
+
types: "./dist/index.d.ts",
|
|
2203
|
+
default: "./dist/index.js"
|
|
2204
|
+
}
|
|
2205
|
+
},
|
|
2206
|
+
"./types": {
|
|
2207
|
+
import: {
|
|
2208
|
+
types: "./dist/types.d.ts",
|
|
2209
|
+
default: "./dist/types.js"
|
|
2210
|
+
},
|
|
2211
|
+
require: {
|
|
2212
|
+
types: "./dist/types.d.cts",
|
|
2213
|
+
default: "./dist/types.cjs"
|
|
2214
|
+
},
|
|
2215
|
+
default: {
|
|
2216
|
+
types: "./dist/types.d.ts",
|
|
2217
|
+
default: "./dist/types.js"
|
|
2218
|
+
}
|
|
2219
|
+
},
|
|
2220
|
+
"./helpers": {
|
|
2221
|
+
import: {
|
|
2222
|
+
types: "./dist/helpers/index.d.ts",
|
|
2223
|
+
default: "./dist/helpers/index.js"
|
|
2224
|
+
},
|
|
2225
|
+
require: {
|
|
2226
|
+
types: "./dist/helpers/index.d.cts",
|
|
2227
|
+
default: "./dist/helpers/index.cjs"
|
|
2228
|
+
},
|
|
2229
|
+
default: {
|
|
2230
|
+
types: "./dist/helpers/index.d.ts",
|
|
2231
|
+
default: "./dist/helpers/index.js"
|
|
2232
|
+
}
|
|
2233
|
+
},
|
|
2234
|
+
"./helpers/*": {
|
|
2235
|
+
import: {
|
|
2236
|
+
types: "./dist/helpers/*.d.ts",
|
|
2237
|
+
default: "./dist/helpers/*.js"
|
|
2238
|
+
},
|
|
2239
|
+
require: {
|
|
2240
|
+
types: "./dist/helpers/*.d.cts",
|
|
2241
|
+
default: "./dist/helpers/*.cjs"
|
|
2242
|
+
},
|
|
2243
|
+
default: {
|
|
2244
|
+
types: "./dist/helpers/*.d.ts",
|
|
2245
|
+
default: "./dist/helpers/*.js"
|
|
2246
|
+
}
|
|
2247
|
+
}
|
|
2248
|
+
},
|
|
2249
|
+
main: "./dist/index.cjs",
|
|
2250
|
+
module: "./dist/index.js",
|
|
2251
|
+
types: "./dist/index.d.ts",
|
|
2252
|
+
bin: {
|
|
2253
|
+
"storm-pnpm": "./bin/pnpm.js",
|
|
2254
|
+
"storm-pnpm-cjs": "./bin/pnpm.cjs",
|
|
2255
|
+
"storm-pnpm-esm": "./bin/pnpm.js"
|
|
2256
|
+
},
|
|
2257
|
+
dependencies: {
|
|
2258
|
+
"@storm-software/config": "workspace:*",
|
|
2259
|
+
"@storm-software/config-tools": "workspace:*",
|
|
2260
|
+
"@storm-software/npm-tools": "workspace:*",
|
|
2261
|
+
"@storm-software/package-constants": "workspace:*",
|
|
2262
|
+
chalk: "catalog:",
|
|
2263
|
+
commander: "catalog:",
|
|
2264
|
+
defu: "catalog:",
|
|
2265
|
+
prettier: "catalog:",
|
|
2266
|
+
"prettier-plugin-packagejson": "catalog:",
|
|
2267
|
+
semver: "catalog:",
|
|
2268
|
+
yaml: "catalog:"
|
|
2269
|
+
},
|
|
2270
|
+
devDependencies: {
|
|
2271
|
+
"@pnpm/types": "catalog:",
|
|
2272
|
+
"@types/node": "catalog:",
|
|
2273
|
+
tsup: "catalog:"
|
|
2274
|
+
},
|
|
2275
|
+
publishConfig: {
|
|
2276
|
+
access: "public"
|
|
2277
|
+
}
|
|
2278
|
+
};
|
|
2166
2279
|
|
|
2167
2280
|
// ../npm-tools/src/constants.ts
|
|
2168
2281
|
var LATEST_NPM_TAG = "latest";
|
package/package.json
CHANGED
|
@@ -1 +1,95 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "@storm-software/pnpm-tools",
|
|
3
|
+
"version": "0.7.45",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "A set of [pnpm](https://pnpm.io/) plugins and utilities for managing workspace packages/dependencies.",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "github",
|
|
8
|
+
"url": "https://github.com/storm-software/storm-ops",
|
|
9
|
+
"directory": "packages/pnpm-tools"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"exports": {
|
|
13
|
+
"./package.json": "./package.json",
|
|
14
|
+
"./index": {
|
|
15
|
+
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
|
|
16
|
+
"require": {
|
|
17
|
+
"types": "./dist/index.d.cts",
|
|
18
|
+
"default": "./dist/index.cjs"
|
|
19
|
+
},
|
|
20
|
+
"default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
|
|
21
|
+
},
|
|
22
|
+
".": {
|
|
23
|
+
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
|
|
24
|
+
"require": {
|
|
25
|
+
"types": "./dist/index.d.cts",
|
|
26
|
+
"default": "./dist/index.cjs"
|
|
27
|
+
},
|
|
28
|
+
"default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
|
|
29
|
+
},
|
|
30
|
+
"./types": {
|
|
31
|
+
"import": { "types": "./dist/types.d.ts", "default": "./dist/types.js" },
|
|
32
|
+
"require": {
|
|
33
|
+
"types": "./dist/types.d.cts",
|
|
34
|
+
"default": "./dist/types.cjs"
|
|
35
|
+
},
|
|
36
|
+
"default": { "types": "./dist/types.d.ts", "default": "./dist/types.js" }
|
|
37
|
+
},
|
|
38
|
+
"./helpers": {
|
|
39
|
+
"import": {
|
|
40
|
+
"types": "./dist/helpers/index.d.ts",
|
|
41
|
+
"default": "./dist/helpers/index.js"
|
|
42
|
+
},
|
|
43
|
+
"require": {
|
|
44
|
+
"types": "./dist/helpers/index.d.cts",
|
|
45
|
+
"default": "./dist/helpers/index.cjs"
|
|
46
|
+
},
|
|
47
|
+
"default": {
|
|
48
|
+
"types": "./dist/helpers/index.d.ts",
|
|
49
|
+
"default": "./dist/helpers/index.js"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"./helpers/*": {
|
|
53
|
+
"import": {
|
|
54
|
+
"types": "./dist/helpers/*.d.ts",
|
|
55
|
+
"default": "./dist/helpers/*.js"
|
|
56
|
+
},
|
|
57
|
+
"require": {
|
|
58
|
+
"types": "./dist/helpers/*.d.cts",
|
|
59
|
+
"default": "./dist/helpers/*.cjs"
|
|
60
|
+
},
|
|
61
|
+
"default": {
|
|
62
|
+
"types": "./dist/helpers/*.d.ts",
|
|
63
|
+
"default": "./dist/helpers/*.js"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"main": "./dist/index.cjs",
|
|
68
|
+
"module": "./dist/index.js",
|
|
69
|
+
"types": "./dist/index.d.ts",
|
|
70
|
+
"bin": {
|
|
71
|
+
"storm-pnpm": "./bin/pnpm.js",
|
|
72
|
+
"storm-pnpm-cjs": "./bin/pnpm.cjs",
|
|
73
|
+
"storm-pnpm-esm": "./bin/pnpm.js"
|
|
74
|
+
},
|
|
75
|
+
"dependencies": {
|
|
76
|
+
"@storm-software/config": "^1.137.66",
|
|
77
|
+
"@storm-software/config-tools": "^1.190.34",
|
|
78
|
+
"@storm-software/npm-tools": "^0.6.152",
|
|
79
|
+
"@storm-software/package-constants": "^0.1.47",
|
|
80
|
+
"chalk": "^4.1.2",
|
|
81
|
+
"commander": "^12.1.0",
|
|
82
|
+
"defu": "^6.1.7",
|
|
83
|
+
"prettier": "^3.8.3",
|
|
84
|
+
"prettier-plugin-packagejson": "^3.0.2",
|
|
85
|
+
"semver": "^7.8.1",
|
|
86
|
+
"yaml": "^2.9.0"
|
|
87
|
+
},
|
|
88
|
+
"devDependencies": {
|
|
89
|
+
"@pnpm/types": "^1001.3.0",
|
|
90
|
+
"@types/node": "^25.9.1",
|
|
91
|
+
"tsup": "8.4.0"
|
|
92
|
+
},
|
|
93
|
+
"publishConfig": { "access": "public" },
|
|
94
|
+
"gitHead": "713b2c5af4f317ddbd35bec335289360bf246b1b"
|
|
95
|
+
}
|