@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 +24 -0
- package/README.md +1 -1
- package/package.json +35 -11
- package/schemas/storm-workspace.schema.json +1 -1
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
|
-
[](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 -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.
|
|
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": {
|
|
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": {
|
|
28
|
+
"default": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"default": "./dist/index.js"
|
|
31
|
+
}
|
|
26
32
|
},
|
|
27
33
|
".": {
|
|
28
|
-
"import": {
|
|
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": {
|
|
42
|
+
"default": {
|
|
43
|
+
"types": "./dist/index.d.ts",
|
|
44
|
+
"default": "./dist/index.js"
|
|
45
|
+
}
|
|
34
46
|
},
|
|
35
47
|
"./types": {
|
|
36
|
-
"import": {
|
|
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": {
|
|
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": {
|
|
88
|
-
|
|
89
|
-
|
|
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
|
],
|