@storm-software/config 1.121.15 → 1.122.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 +12 -0
- package/README.md +1 -1
- package/dist/{chunk-6AI6N4A2.js → chunk-RTIWPBE6.js} +1 -0
- package/dist/{chunk-VCBBW6S7.cjs → chunk-YZ4LXHOB.cjs} +1 -0
- package/dist/define-config.d.cts +1 -0
- package/dist/define-config.d.ts +1 -0
- package/dist/index.cjs +2 -2
- package/dist/index.js +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +3 -0
- package/dist/schema.d.ts +3 -0
- package/dist/schema.js +1 -1
- package/package.json +1 -1
- package/presets/storm-software.json +2 -1
- package/schemas/storm-workspace.schema.json +5 -0
- package/src/define-config.d.ts +1 -0
- package/src/schema.d.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.122.0](https://github.com/storm-software/storm-ops/releases/tag/config%401.122.0) (2025-06-07)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **config:** Added the `portal` website configuration parameter
|
|
10
|
+
|
|
11
|
+
## [1.121.15](https://github.com/storm-software/storm-ops/releases/tag/config%401.121.15) (2025-06-06)
|
|
12
|
+
|
|
13
|
+
### Miscellaneous
|
|
14
|
+
|
|
15
|
+
- **monorepo:** Regenerate README markdown files
|
|
16
|
+
|
|
5
17
|
## [1.121.14](https://github.com/storm-software/storm-ops/releases/tag/config%401.121.14) (2025-06-06)
|
|
6
18
|
|
|
7
19
|
### 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 -->
|
|
@@ -168,6 +168,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
168
168
|
license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
169
169
|
homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
|
|
170
170
|
docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
|
|
171
|
+
portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
|
|
171
172
|
licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
|
|
172
173
|
contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
|
|
173
174
|
support: z.string().trim().url().optional().describe(
|
|
@@ -168,6 +168,7 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
|
168
168
|
license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
169
169
|
homepage: _zod2.default.string().trim().url().optional().describe("The homepage of the workspace"),
|
|
170
170
|
docs: _zod2.default.string().trim().url().optional().describe("The documentation site for the workspace"),
|
|
171
|
+
portal: _zod2.default.string().trim().url().optional().describe("The development portal site for the workspace"),
|
|
171
172
|
licensing: _zod2.default.string().trim().url().optional().describe("The licensing site for the workspace"),
|
|
172
173
|
contact: _zod2.default.string().trim().url().optional().describe("The contact site for the workspace"),
|
|
173
174
|
support: _zod2.default.string().trim().url().optional().describe(
|
package/dist/define-config.d.cts
CHANGED
|
@@ -195,6 +195,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
195
195
|
license?: string | undefined;
|
|
196
196
|
homepage?: string | undefined;
|
|
197
197
|
docs?: string | undefined;
|
|
198
|
+
portal?: string | undefined;
|
|
198
199
|
licensing?: string | undefined;
|
|
199
200
|
contact?: string | undefined;
|
|
200
201
|
support?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -195,6 +195,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
195
195
|
license?: string | undefined;
|
|
196
196
|
homepage?: string | undefined;
|
|
197
197
|
docs?: string | undefined;
|
|
198
|
+
portal?: string | undefined;
|
|
198
199
|
licensing?: string | undefined;
|
|
199
200
|
contact?: string | undefined;
|
|
200
201
|
support?: string | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -17,7 +17,7 @@ var _chunkH6PQ7FMQcjs = require('./chunk-H6PQ7FMQ.cjs');
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkYZ4LXHOBcjs = require('./chunk-YZ4LXHOB.cjs');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
@@ -71,4 +71,4 @@ var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
|
|
|
71
71
|
|
|
72
72
|
|
|
73
73
|
|
|
74
|
-
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema =
|
|
74
|
+
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkYZ4LXHOBcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkYZ4LXHOBcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkYZ4LXHOBcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkYZ4LXHOBcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkYZ4LXHOBcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkYZ4LXHOBcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkYZ4LXHOBcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkYZ4LXHOBcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkHPEJ52UXcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkHPEJ52UXcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkHPEJ52UXcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkHPEJ52UXcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkHPEJ52UXcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkHPEJ52UXcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.STORM_DEFAULT_SUPPORT = _chunkHPEJ52UXcjs.STORM_DEFAULT_SUPPORT; exports.SingleThemeColorConfigSchema = _chunkYZ4LXHOBcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkYZ4LXHOBcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkYZ4LXHOBcjs.stormWorkspaceConfigSchema;
|
package/dist/index.js
CHANGED
package/dist/schema.cjs
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunkYZ4LXHOBcjs = require('./chunk-YZ4LXHOB.cjs');
|
|
18
18
|
require('./chunk-HPEJ52UX.cjs');
|
|
19
19
|
|
|
20
20
|
|
|
@@ -32,4 +32,4 @@ require('./chunk-HPEJ52UX.cjs');
|
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
|
|
35
|
-
exports.ColorConfigMapSchema =
|
|
35
|
+
exports.ColorConfigMapSchema = _chunkYZ4LXHOBcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkYZ4LXHOBcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkYZ4LXHOBcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkYZ4LXHOBcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkYZ4LXHOBcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkYZ4LXHOBcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkYZ4LXHOBcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkYZ4LXHOBcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkYZ4LXHOBcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkYZ4LXHOBcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkYZ4LXHOBcjs.stormWorkspaceConfigSchema;
|
package/dist/schema.d.cts
CHANGED
|
@@ -1128,6 +1128,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1128
1128
|
license: z.ZodDefault<z.ZodString>;
|
|
1129
1129
|
homepage: z.ZodOptional<z.ZodString>;
|
|
1130
1130
|
docs: z.ZodOptional<z.ZodString>;
|
|
1131
|
+
portal: z.ZodOptional<z.ZodString>;
|
|
1131
1132
|
licensing: z.ZodOptional<z.ZodString>;
|
|
1132
1133
|
contact: z.ZodOptional<z.ZodString>;
|
|
1133
1134
|
support: z.ZodOptional<z.ZodString>;
|
|
@@ -2161,6 +2162,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2161
2162
|
repository?: string | undefined;
|
|
2162
2163
|
homepage?: string | undefined;
|
|
2163
2164
|
docs?: string | undefined;
|
|
2165
|
+
portal?: string | undefined;
|
|
2164
2166
|
licensing?: string | undefined;
|
|
2165
2167
|
contact?: string | undefined;
|
|
2166
2168
|
support?: string | undefined;
|
|
@@ -2353,6 +2355,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2353
2355
|
license?: string | undefined;
|
|
2354
2356
|
homepage?: string | undefined;
|
|
2355
2357
|
docs?: string | undefined;
|
|
2358
|
+
portal?: string | undefined;
|
|
2356
2359
|
licensing?: string | undefined;
|
|
2357
2360
|
contact?: string | undefined;
|
|
2358
2361
|
support?: string | undefined;
|
package/dist/schema.d.ts
CHANGED
|
@@ -1128,6 +1128,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1128
1128
|
license: z.ZodDefault<z.ZodString>;
|
|
1129
1129
|
homepage: z.ZodOptional<z.ZodString>;
|
|
1130
1130
|
docs: z.ZodOptional<z.ZodString>;
|
|
1131
|
+
portal: z.ZodOptional<z.ZodString>;
|
|
1131
1132
|
licensing: z.ZodOptional<z.ZodString>;
|
|
1132
1133
|
contact: z.ZodOptional<z.ZodString>;
|
|
1133
1134
|
support: z.ZodOptional<z.ZodString>;
|
|
@@ -2161,6 +2162,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2161
2162
|
repository?: string | undefined;
|
|
2162
2163
|
homepage?: string | undefined;
|
|
2163
2164
|
docs?: string | undefined;
|
|
2165
|
+
portal?: string | undefined;
|
|
2164
2166
|
licensing?: string | undefined;
|
|
2165
2167
|
contact?: string | undefined;
|
|
2166
2168
|
support?: string | undefined;
|
|
@@ -2353,6 +2355,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2353
2355
|
license?: string | undefined;
|
|
2354
2356
|
homepage?: string | undefined;
|
|
2355
2357
|
docs?: string | undefined;
|
|
2358
|
+
portal?: string | undefined;
|
|
2356
2359
|
licensing?: string | undefined;
|
|
2357
2360
|
contact?: string | undefined;
|
|
2358
2361
|
support?: string | undefined;
|
package/dist/schema.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.122.1",
|
|
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": {
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"skipCache": false,
|
|
12
12
|
"homepage": "https://stormsoftware.com",
|
|
13
13
|
"docs": "https://docs.stormsoftware.com",
|
|
14
|
+
"portal": "https://developer.stormsoftware.com",
|
|
14
15
|
"licensing": "https://stormsoftware.com/license",
|
|
15
16
|
"contact": "https://stormsoftware.com/contact",
|
|
16
17
|
"support": "https://stormsoftware.com/support",
|
|
@@ -19,7 +20,7 @@
|
|
|
19
20
|
},
|
|
20
21
|
"error": {
|
|
21
22
|
"codesFile": "tools/errors/codes.json",
|
|
22
|
-
"url": "https://
|
|
23
|
+
"url": "https://developer.stormsoftware.com/static/errors"
|
|
23
24
|
},
|
|
24
25
|
"externalPackagePatterns": ["@storm-software/"],
|
|
25
26
|
"registry": {
|
|
@@ -70,6 +70,11 @@
|
|
|
70
70
|
"format": "uri",
|
|
71
71
|
"description": "The documentation site for the workspace"
|
|
72
72
|
},
|
|
73
|
+
"portal": {
|
|
74
|
+
"type": "string",
|
|
75
|
+
"format": "uri",
|
|
76
|
+
"description": "The development portal site for the workspace"
|
|
77
|
+
},
|
|
73
78
|
"licensing": {
|
|
74
79
|
"type": "string",
|
|
75
80
|
"format": "uri",
|
package/src/define-config.d.ts
CHANGED
|
@@ -192,6 +192,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
192
192
|
license?: string | undefined;
|
|
193
193
|
homepage?: string | undefined;
|
|
194
194
|
docs?: string | undefined;
|
|
195
|
+
portal?: string | undefined;
|
|
195
196
|
licensing?: string | undefined;
|
|
196
197
|
contact?: string | undefined;
|
|
197
198
|
support?: string | undefined;
|
package/src/schema.d.ts
CHANGED
|
@@ -1127,6 +1127,7 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1127
1127
|
license: z.ZodDefault<z.ZodString>;
|
|
1128
1128
|
homepage: z.ZodOptional<z.ZodString>;
|
|
1129
1129
|
docs: z.ZodOptional<z.ZodString>;
|
|
1130
|
+
portal: z.ZodOptional<z.ZodString>;
|
|
1130
1131
|
licensing: z.ZodOptional<z.ZodString>;
|
|
1131
1132
|
contact: z.ZodOptional<z.ZodString>;
|
|
1132
1133
|
support: z.ZodOptional<z.ZodString>;
|
|
@@ -2160,6 +2161,7 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2160
2161
|
repository?: string | undefined;
|
|
2161
2162
|
homepage?: string | undefined;
|
|
2162
2163
|
docs?: string | undefined;
|
|
2164
|
+
portal?: string | undefined;
|
|
2163
2165
|
licensing?: string | undefined;
|
|
2164
2166
|
contact?: string | undefined;
|
|
2165
2167
|
support?: string | undefined;
|
|
@@ -2352,6 +2354,7 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2352
2354
|
license?: string | undefined;
|
|
2353
2355
|
homepage?: string | undefined;
|
|
2354
2356
|
docs?: string | undefined;
|
|
2357
|
+
portal?: string | undefined;
|
|
2355
2358
|
licensing?: string | undefined;
|
|
2356
2359
|
contact?: string | undefined;
|
|
2357
2360
|
support?: string | undefined;
|