@storm-software/config 1.119.7 → 1.121.0
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 +16 -0
- package/README.md +1 -1
- package/dist/{chunk-6TJI3DKA.js → chunk-6AI6N4A2.js} +8 -9
- package/dist/{chunk-HAADVBHV.cjs → chunk-HPEJ52UX.cjs} +5 -3
- package/dist/{chunk-LBKZPA5D.cjs → chunk-VCBBW6S7.cjs} +17 -18
- package/dist/{chunk-PQP7SKBB.js → chunk-X3RNGA5B.js} +4 -2
- package/dist/constants.cjs +4 -2
- package/dist/constants.d.cts +4 -3
- package/dist/constants.d.ts +4 -3
- package/dist/constants.js +5 -3
- package/dist/define-config.d.cts +79 -78
- package/dist/define-config.d.ts +79 -78
- package/dist/index.cjs +5 -3
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -3
- package/dist/schema.cjs +3 -3
- package/dist/schema.d.cts +642 -639
- package/dist/schema.d.ts +642 -639
- package/dist/schema.js +2 -2
- package/package.json +1 -1
- package/presets/storm-software.json +7 -1
- package/schemas/storm-workspace.schema.json +8 -7
- package/src/constants.d.ts +3 -2
- package/src/define-config.d.ts +1 -0
- package/src/schema.d.ts +11 -8
package/dist/schema.js
CHANGED
|
@@ -14,8 +14,8 @@ import {
|
|
|
14
14
|
WorkspaceReleaseConfigSchema,
|
|
15
15
|
errorConfigSchema,
|
|
16
16
|
stormWorkspaceConfigSchema
|
|
17
|
-
} from "./chunk-
|
|
18
|
-
import "./chunk-
|
|
17
|
+
} from "./chunk-6AI6N4A2.js";
|
|
18
|
+
import "./chunk-X3RNGA5B.js";
|
|
19
19
|
export {
|
|
20
20
|
ColorConfigMapSchema,
|
|
21
21
|
ColorConfigSchema,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.121.0",
|
|
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": {
|
|
@@ -9,11 +9,17 @@
|
|
|
9
9
|
"logLevel": "info",
|
|
10
10
|
"skipConfigLogging": true,
|
|
11
11
|
"skipCache": false,
|
|
12
|
+
"homepage": "https://stormsoftware.com",
|
|
13
|
+
"docs": "https://stormsoftware.com/docs",
|
|
14
|
+
"licensing": "https://stormsoftware.com/license",
|
|
15
|
+
"contact": "https://stormsoftware.com/contact",
|
|
16
|
+
"support": "https://stormsoftware.com/support",
|
|
12
17
|
"directories": {
|
|
13
18
|
"build": "dist"
|
|
14
19
|
},
|
|
15
20
|
"error": {
|
|
16
|
-
"codesFile": "tools/errors/codes.json"
|
|
21
|
+
"codesFile": "tools/errors/codes.json",
|
|
22
|
+
"url": "https://stormsoftware.com/api/errors"
|
|
17
23
|
},
|
|
18
24
|
"externalPackagePatterns": ["@storm-software/"],
|
|
19
25
|
"registry": {
|
|
@@ -63,26 +63,27 @@
|
|
|
63
63
|
"homepage": {
|
|
64
64
|
"type": "string",
|
|
65
65
|
"format": "uri",
|
|
66
|
-
"default": "https://stormsoftware.com",
|
|
67
66
|
"description": "The homepage of the workspace"
|
|
68
67
|
},
|
|
69
68
|
"docs": {
|
|
70
69
|
"type": "string",
|
|
71
70
|
"format": "uri",
|
|
72
|
-
"
|
|
73
|
-
"description": "The base documentation site for the workspace"
|
|
71
|
+
"description": "The documentation site for the workspace"
|
|
74
72
|
},
|
|
75
73
|
"licensing": {
|
|
76
74
|
"type": "string",
|
|
77
75
|
"format": "uri",
|
|
78
|
-
"
|
|
79
|
-
"description": "The base licensing site for the workspace"
|
|
76
|
+
"description": "The licensing site for the workspace"
|
|
80
77
|
},
|
|
81
78
|
"contact": {
|
|
82
79
|
"type": "string",
|
|
83
80
|
"format": "uri",
|
|
84
|
-
"
|
|
85
|
-
|
|
81
|
+
"description": "The contact site for the workspace"
|
|
82
|
+
},
|
|
83
|
+
"support": {
|
|
84
|
+
"type": "string",
|
|
85
|
+
"format": "uri",
|
|
86
|
+
"description": "The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
|
|
86
87
|
},
|
|
87
88
|
"branch": {
|
|
88
89
|
"type": "string",
|
package/src/constants.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
export declare const STORM_DEFAULT_DOCS = "https://
|
|
1
|
+
export declare const STORM_DEFAULT_DOCS = "https://stormsoftware.com/docs";
|
|
2
2
|
export declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
3
3
|
export declare const STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
4
|
-
export declare const
|
|
4
|
+
export declare const STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
|
|
5
|
+
export declare const STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
|
|
5
6
|
export declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
6
7
|
export declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
7
8
|
export declare const STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
|
package/src/define-config.d.ts
CHANGED
|
@@ -194,6 +194,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
194
194
|
docs?: string | undefined;
|
|
195
195
|
licensing?: string | undefined;
|
|
196
196
|
contact?: string | undefined;
|
|
197
|
+
support?: string | undefined;
|
|
197
198
|
branch?: string | undefined;
|
|
198
199
|
preid?: string | undefined;
|
|
199
200
|
owner?: string | undefined;
|
package/src/schema.d.ts
CHANGED
|
@@ -1125,10 +1125,11 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1125
1125
|
organization: z.ZodDefault<z.ZodString>;
|
|
1126
1126
|
repository: z.ZodOptional<z.ZodString>;
|
|
1127
1127
|
license: z.ZodDefault<z.ZodString>;
|
|
1128
|
-
homepage: z.
|
|
1129
|
-
docs: z.
|
|
1130
|
-
licensing: z.
|
|
1131
|
-
contact: z.
|
|
1128
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
1129
|
+
docs: z.ZodOptional<z.ZodString>;
|
|
1130
|
+
licensing: z.ZodOptional<z.ZodString>;
|
|
1131
|
+
contact: z.ZodOptional<z.ZodString>;
|
|
1132
|
+
support: z.ZodOptional<z.ZodString>;
|
|
1132
1133
|
branch: z.ZodDefault<z.ZodString>;
|
|
1133
1134
|
preid: z.ZodOptional<z.ZodString>;
|
|
1134
1135
|
owner: z.ZodDefault<z.ZodString>;
|
|
@@ -1957,10 +1958,6 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1957
1958
|
}, "strip", z.ZodTypeAny, {
|
|
1958
1959
|
organization: string;
|
|
1959
1960
|
license: string;
|
|
1960
|
-
homepage: string;
|
|
1961
|
-
docs: string;
|
|
1962
|
-
licensing: string;
|
|
1963
|
-
contact: string;
|
|
1964
1961
|
branch: string;
|
|
1965
1962
|
owner: string;
|
|
1966
1963
|
bot: {
|
|
@@ -2161,6 +2158,11 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2161
2158
|
extends?: string | string[] | undefined;
|
|
2162
2159
|
namespace?: string | undefined;
|
|
2163
2160
|
repository?: string | undefined;
|
|
2161
|
+
homepage?: string | undefined;
|
|
2162
|
+
docs?: string | undefined;
|
|
2163
|
+
licensing?: string | undefined;
|
|
2164
|
+
contact?: string | undefined;
|
|
2165
|
+
support?: string | undefined;
|
|
2164
2166
|
preid?: string | undefined;
|
|
2165
2167
|
skipConfigLogging?: boolean | undefined;
|
|
2166
2168
|
}, {
|
|
@@ -2352,6 +2354,7 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2352
2354
|
docs?: string | undefined;
|
|
2353
2355
|
licensing?: string | undefined;
|
|
2354
2356
|
contact?: string | undefined;
|
|
2357
|
+
support?: string | undefined;
|
|
2355
2358
|
branch?: string | undefined;
|
|
2356
2359
|
preid?: string | undefined;
|
|
2357
2360
|
owner?: string | undefined;
|