@storm-software/config-tools 1.190.2 → 1.190.5

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +55 -24
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
- [![Version](https://img.shields.io/badge/version-1.190.1-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)
30
+ [![Version](https://img.shields.io/badge/version-1.190.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)
31
31
 
32
32
  <!-- prettier-ignore-start -->
33
33
  <!-- markdownlint-disable -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config-tools",
3
- "version": "1.190.2",
3
+ "version": "1.190.5",
4
4
  "private": false,
5
5
  "description": "A package containing various utilities to support custom workspace configurations and environment management for Storm Software projects, including configuration file handling, environment variable management, and logging utilities.",
6
6
  "keywords": [
@@ -43,28 +43,46 @@
43
43
  "exports": {
44
44
  "./package.json": "./package.json",
45
45
  "./types": {
46
- "import": { "types": "./dist/types.d.ts", "default": "./dist/types.js" },
46
+ "import": {
47
+ "types": "./dist/types.d.ts",
48
+ "default": "./dist/types.js"
49
+ },
47
50
  "require": {
48
51
  "types": "./dist/types.d.cts",
49
52
  "default": "./dist/types.cjs"
50
53
  },
51
- "default": { "types": "./dist/types.d.ts", "default": "./dist/types.js" }
54
+ "default": {
55
+ "types": "./dist/types.d.ts",
56
+ "default": "./dist/types.js"
57
+ }
52
58
  },
53
59
  "./index": {
54
- "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
60
+ "import": {
61
+ "types": "./dist/index.d.ts",
62
+ "default": "./dist/index.js"
63
+ },
55
64
  "require": {
56
65
  "types": "./dist/index.d.cts",
57
66
  "default": "./dist/index.cjs"
58
67
  },
59
- "default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
68
+ "default": {
69
+ "types": "./dist/index.d.ts",
70
+ "default": "./dist/index.js"
71
+ }
60
72
  },
61
73
  ".": {
62
- "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
74
+ "import": {
75
+ "types": "./dist/index.d.ts",
76
+ "default": "./dist/index.js"
77
+ },
63
78
  "require": {
64
79
  "types": "./dist/index.d.cts",
65
80
  "default": "./dist/index.cjs"
66
81
  },
67
- "default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
82
+ "default": {
83
+ "types": "./dist/index.d.ts",
84
+ "default": "./dist/index.js"
85
+ }
68
86
  },
69
87
  "./create-storm-config": {
70
88
  "import": {
@@ -137,12 +155,18 @@
137
155
  }
138
156
  },
139
157
  "./env/*": {
140
- "import": { "types": "./dist/env/*.d.ts", "default": "./dist/env/*.js" },
158
+ "import": {
159
+ "types": "./dist/env/*.d.ts",
160
+ "default": "./dist/env/*.js"
161
+ },
141
162
  "require": {
142
163
  "types": "./dist/env/*.d.cts",
143
164
  "default": "./dist/env/*.cjs"
144
165
  },
145
- "default": { "types": "./dist/env/*.d.ts", "default": "./dist/env/*.js" }
166
+ "default": {
167
+ "types": "./dist/env/*.d.ts",
168
+ "default": "./dist/env/*.js"
169
+ }
146
170
  },
147
171
  "./logger": {
148
172
  "import": {
@@ -211,24 +235,31 @@
211
235
  },
212
236
  "files": ["dist/**/*"],
213
237
  "dependencies": {
214
- "@ltd/j-toml": "1.38.0",
215
- "@storm-software/config": "^1.137.35",
216
- "c12": "^2.0.4",
217
- "chalk": "^4.1.2",
218
- "commander": "^12.1.0",
219
- "date-fns": "^4.1.0",
220
- "defu": "6.1.4",
238
+ "@ltd/j-toml": "catalog:",
239
+ "@storm-software/config": "workspace:*",
240
+ "c12": "catalog:",
241
+ "chalk": "catalog:",
242
+ "commander": "catalog:",
243
+ "date-fns": "catalog:",
244
+ "defu": "catalog:",
221
245
  "giget": "^1.2.5",
222
- "jiti": "2.4.2",
246
+ "jiti": "catalog:",
223
247
  "sqlite": "^5.1.1"
224
248
  },
225
249
  "devDependencies": {
226
- "@types/node": "^25.7.0",
227
- "tsup": "8.4.0",
228
- "zod": "^4.4.3"
250
+ "@types/node": "catalog:",
251
+ "tsup": "catalog:",
252
+ "zod": "catalog:"
253
+ },
254
+ "peerDependencies": {
255
+ "zod": "^3.25.0 || ^4.0.0"
256
+ },
257
+ "peerDependenciesMeta": {
258
+ "zod": {
259
+ "optional": false
260
+ }
229
261
  },
230
- "peerDependencies": { "zod": "^3.25.0 || ^4.0.0" },
231
- "peerDependenciesMeta": { "zod": { "optional": false } },
232
- "publishConfig": { "access": "public" },
233
- "gitHead": "0ee786bb6e727df540f3879591f8b4e7724ab615"
262
+ "publishConfig": {
263
+ "access": "public"
264
+ }
234
265
  }