@storm-software/config 1.112.26 → 1.113.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 CHANGED
@@ -2,6 +2,30 @@
2
2
 
3
3
  # Changelog for Storm Ops - Config
4
4
 
5
+ ## [1.113.2](https://github.com/storm-software/storm-ops/releases/tag/config%401.113.2) (2025-04-25)
6
+
7
+ ### Bug Fixes
8
+
9
+ - **workspace-tools:** Resolve issue with excessive release logging
10
+ ([ded2654b3](https://github.com/storm-software/storm-ops/commit/ded2654b3))
11
+
12
+ ## [1.113.1](https://github.com/storm-software/storm-ops/releases/tag/config%401.113.1) (2025-04-25)
13
+
14
+ ### Miscellaneous
15
+
16
+ - **monorepo:** Regenerate README markdown files
17
+ ([9ab7e03d9](https://github.com/storm-software/storm-ops/commit/9ab7e03d9))
18
+
19
+ ## [1.113.0](https://github.com/storm-software/storm-ops/releases/tag/config%401.113.0) (2025-04-25)
20
+
21
+ ### Features
22
+
23
+ - **config-tools:** Added the `tryGetWorkspaceConfig` helper function
24
+ ([cd4dc675b](https://github.com/storm-software/storm-ops/commit/cd4dc675b))
25
+ - **config:** Added the `storm-software` preset and removed org specific values
26
+ from `base`
27
+ ([c575fbe92](https://github.com/storm-software/storm-ops/commit/c575fbe92))
28
+
5
29
  ## [1.112.25](https://github.com/storm-software/storm-ops/releases/tag/config%401.112.25) (2025-04-16)
6
30
 
7
31
  ### 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-1.112.25-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-1.113.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)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.112.26",
3
+ "version": "1.113.2",
4
4
  "type": "module",
5
5
  "description": "Configuration management tools and schemas for Storm Software projects, providing a standardized approach to handle project settings and presets.",
6
6
  "repository": {
@@ -17,28 +17,46 @@
17
17
  "./presets/base.json": "./presets/base.json",
18
18
  "./presets/storm-software.json": "./presets/storm-software.json",
19
19
  "./index": {
20
- "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
20
+ "import": {
21
+ "types": "./dist/index.d.ts",
22
+ "default": "./dist/index.js"
23
+ },
21
24
  "require": {
22
25
  "types": "./dist/index.d.cts",
23
26
  "default": "./dist/index.cjs"
24
27
  },
25
- "default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
28
+ "default": {
29
+ "types": "./dist/index.d.ts",
30
+ "default": "./dist/index.js"
31
+ }
26
32
  },
27
33
  ".": {
28
- "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
34
+ "import": {
35
+ "types": "./dist/index.d.ts",
36
+ "default": "./dist/index.js"
37
+ },
29
38
  "require": {
30
39
  "types": "./dist/index.d.cts",
31
40
  "default": "./dist/index.cjs"
32
41
  },
33
- "default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
42
+ "default": {
43
+ "types": "./dist/index.d.ts",
44
+ "default": "./dist/index.js"
45
+ }
34
46
  },
35
47
  "./types": {
36
- "import": { "types": "./dist/types.d.ts", "default": "./dist/types.js" },
48
+ "import": {
49
+ "types": "./dist/types.d.ts",
50
+ "default": "./dist/types.js"
51
+ },
37
52
  "require": {
38
53
  "types": "./dist/types.d.cts",
39
54
  "default": "./dist/types.cjs"
40
55
  },
41
- "default": { "types": "./dist/types.d.ts", "default": "./dist/types.js" }
56
+ "default": {
57
+ "types": "./dist/types.d.ts",
58
+ "default": "./dist/types.js"
59
+ }
42
60
  },
43
61
  "./schema": {
44
62
  "import": {
@@ -84,7 +102,13 @@
84
102
  }
85
103
  },
86
104
  "types": "./dist/index.d.ts",
87
- "dependencies": { "zod": "^3.24.0" },
88
- "devDependencies": { "tsup": "8.3.5" },
89
- "publishConfig": { "access": "public" }
90
- }
105
+ "dependencies": {
106
+ "zod": "^3.24.0"
107
+ },
108
+ "devDependencies": {
109
+ "tsup": "8.4.0"
110
+ },
111
+ "publishConfig": {
112
+ "access": "public"
113
+ }
114
+ }
@@ -199,7 +199,6 @@
199
199
  },
200
200
  "workspaceRoot": {
201
201
  "type": "string",
202
- "default": "",
203
202
  "description": "The root directory of the workspace"
204
203
  },
205
204
  "externalPackagePatterns": {
@@ -579,6 +578,7 @@
579
578
  "release",
580
579
  "account",
581
580
  "error",
581
+ "workspaceRoot",
582
582
  "directories",
583
583
  "colors"
584
584
  ],