@storm-software/config 1.113.24 → 1.113.25
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-NIKR5IAQ.js → chunk-6TJI3DKA.js} +75 -36
- package/dist/chunk-F6SS2FZA.js +6 -0
- package/dist/chunk-H6PQ7FMQ.cjs +6 -0
- package/dist/{chunk-OKZCEIYK.cjs → chunk-LBKZPA5D.cjs} +75 -36
- package/dist/constants.cjs +0 -1
- package/dist/constants.js +0 -1
- package/dist/define-config.cjs +2 -3
- package/dist/define-config.js +1 -2
- package/dist/index.cjs +3 -4
- package/dist/index.js +2 -3
- package/dist/schema.cjs +2 -3
- package/dist/schema.js +1 -2
- package/dist/types.cjs +0 -1
- package/dist/types.js +0 -1
- package/package.json +1 -1
- package/dist/chunk-5KAGNCTX.js +0 -10
- package/dist/chunk-SHUYVCID.js +0 -6
- package/dist/chunk-SNJKI2QW.cjs +0 -10
- package/dist/chunk-USNT2KNT.cjs +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.113.25](https://github.com/storm-software/storm-ops/releases/tag/config%401.113.25) (2025-04-30)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **esbuild:** Update script to use .cjs file extension
|
|
10
|
+
([95c4e5abd](https://github.com/storm-software/storm-ops/commit/95c4e5abd))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Regenerate README markdown files
|
|
15
|
+
([17b6c5930](https://github.com/storm-software/storm-ops/commit/17b6c5930))
|
|
16
|
+
|
|
5
17
|
## [1.113.24](https://github.com/storm-software/storm-ops/releases/tag/config%401.113.24) (2025-04-30)
|
|
6
18
|
|
|
7
19
|
### Bug Fixes
|
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 -->
|
|
@@ -90,23 +90,39 @@ var RegistryConfigSchema = z.object({
|
|
|
90
90
|
cyclone: RegistryUrlConfigSchema,
|
|
91
91
|
container: RegistryUrlConfigSchema
|
|
92
92
|
}).default({}).describe("A list of remote registry URLs used by Storm Software");
|
|
93
|
-
var ColorConfigSchema = SingleThemeColorConfigSchema.or(
|
|
93
|
+
var ColorConfigSchema = SingleThemeColorConfigSchema.or(
|
|
94
|
+
MultiThemeColorConfigSchema
|
|
95
|
+
).describe("Colors used for various workspace elements");
|
|
94
96
|
var ColorConfigMapSchema = z.union([
|
|
95
|
-
z.object({
|
|
96
|
-
base: ColorConfigSchema
|
|
97
|
-
}),
|
|
97
|
+
z.object({ base: ColorConfigSchema }),
|
|
98
98
|
z.record(z.string(), ColorConfigSchema)
|
|
99
99
|
]);
|
|
100
|
-
var ExtendsItemSchema = z.string().trim().describe(
|
|
101
|
-
|
|
100
|
+
var ExtendsItemSchema = z.string().trim().describe(
|
|
101
|
+
"The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration."
|
|
102
|
+
);
|
|
103
|
+
var ExtendsSchema = ExtendsItemSchema.or(
|
|
104
|
+
z.array(ExtendsItemSchema)
|
|
105
|
+
).describe(
|
|
106
|
+
"The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration."
|
|
107
|
+
);
|
|
102
108
|
var WorkspaceBotConfigSchema = z.object({
|
|
103
|
-
name: z.string().trim().default("stormie-bot").describe(
|
|
109
|
+
name: z.string().trim().default("stormie-bot").describe(
|
|
110
|
+
"The workspace bot user's name (this is the bot that will be used to perform various tasks)"
|
|
111
|
+
),
|
|
104
112
|
email: z.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
|
|
105
|
-
}).describe(
|
|
113
|
+
}).describe(
|
|
114
|
+
"The workspace's bot user's config used to automated various operations tasks"
|
|
115
|
+
);
|
|
106
116
|
var WorkspaceReleaseConfigSchema = z.object({
|
|
107
|
-
banner: z.string().trim().default(STORM_DEFAULT_RELEASE_BANNER).describe(
|
|
108
|
-
|
|
109
|
-
|
|
117
|
+
banner: z.string().trim().default(STORM_DEFAULT_RELEASE_BANNER).describe(
|
|
118
|
+
"A URL to a banner image used to display the workspace's release"
|
|
119
|
+
),
|
|
120
|
+
header: z.string().trim().optional().describe(
|
|
121
|
+
"A header message appended to the start of the workspace's release notes"
|
|
122
|
+
),
|
|
123
|
+
footer: z.string().trim().default(STORM_DEFAULT_RELEASE_FOOTER).describe(
|
|
124
|
+
"A footer message appended to the end of the workspace's release notes"
|
|
125
|
+
)
|
|
110
126
|
}).describe("The workspace's release config used during the release process");
|
|
111
127
|
var WorkspaceAccountConfigSchema = z.object({
|
|
112
128
|
twitter: z.string().trim().default(STORM_DEFAULT_ACCOUNT_TWITTER).describe("A Twitter/X account associated with the organization/project"),
|
|
@@ -115,23 +131,41 @@ var WorkspaceAccountConfigSchema = z.object({
|
|
|
115
131
|
slack: z.string().trim().default(STORM_DEFAULT_ACCOUNT_SLACK).describe("A Slack account associated with the organization/project"),
|
|
116
132
|
medium: z.string().trim().default(STORM_DEFAULT_ACCOUNT_MEDIUM).describe("A Medium account associated with the organization/project"),
|
|
117
133
|
github: z.string().trim().default(STORM_DEFAULT_ACCOUNT_GITHUB).describe("A GitHub account associated with the organization/project")
|
|
118
|
-
}).describe(
|
|
134
|
+
}).describe(
|
|
135
|
+
"The workspace's account config used to store various social media links"
|
|
136
|
+
);
|
|
119
137
|
var WorkspaceDirectoryConfigSchema = z.object({
|
|
120
|
-
cache: z.string().trim().optional().describe(
|
|
138
|
+
cache: z.string().trim().optional().describe(
|
|
139
|
+
"The directory used to store the environment's cached file data"
|
|
140
|
+
),
|
|
121
141
|
data: z.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
122
|
-
config: z.string().trim().optional().describe(
|
|
142
|
+
config: z.string().trim().optional().describe(
|
|
143
|
+
"The directory used to store the environment's configuration files"
|
|
144
|
+
),
|
|
123
145
|
temp: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
124
146
|
log: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
125
|
-
build: z.string().trim().default("dist").describe(
|
|
126
|
-
|
|
147
|
+
build: z.string().trim().default("dist").describe(
|
|
148
|
+
"The directory used to store the workspace's distributable files after a build (relative to the workspace root)"
|
|
149
|
+
)
|
|
150
|
+
}).describe(
|
|
151
|
+
"Various directories used by the workspace to store data, cache, and configuration files"
|
|
152
|
+
);
|
|
127
153
|
var errorConfigSchema = z.object({
|
|
128
154
|
codesFile: z.string().trim().default(STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
|
|
129
|
-
url: z.string().trim().url().optional().describe(
|
|
155
|
+
url: z.string().trim().url().optional().describe(
|
|
156
|
+
"A URL to a page that looks up the workspace's error messages given a specific error code"
|
|
157
|
+
)
|
|
130
158
|
}).describe("The workspace's error config used during the error process");
|
|
131
159
|
var stormWorkspaceConfigSchema = z.object({
|
|
132
|
-
$schema: z.string().trim().default(
|
|
160
|
+
$schema: z.string().trim().default(
|
|
161
|
+
"https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json"
|
|
162
|
+
).optional().nullish().describe(
|
|
163
|
+
"The URL to the JSON schema file that describes the Storm configuration file"
|
|
164
|
+
),
|
|
133
165
|
extends: ExtendsSchema.optional(),
|
|
134
|
-
name: z.string().trim().toLowerCase().optional().describe(
|
|
166
|
+
name: z.string().trim().toLowerCase().optional().describe(
|
|
167
|
+
"The name of the service/package/scope using this configuration"
|
|
168
|
+
),
|
|
135
169
|
namespace: z.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
136
170
|
organization: z.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
137
171
|
repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -147,21 +181,16 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
147
181
|
release: WorkspaceReleaseConfigSchema,
|
|
148
182
|
account: WorkspaceAccountConfigSchema,
|
|
149
183
|
error: errorConfigSchema,
|
|
150
|
-
mode: z.enum([
|
|
151
|
-
"development",
|
|
152
|
-
"staging",
|
|
153
|
-
"production"
|
|
154
|
-
]).default("production").describe("The current runtime environment mode for the package"),
|
|
184
|
+
mode: z.enum(["development", "staging", "production"]).default("production").describe("The current runtime environment mode for the package"),
|
|
155
185
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
156
|
-
externalPackagePatterns: z.array(z.string()).default([]).describe(
|
|
186
|
+
externalPackagePatterns: z.array(z.string()).default([]).describe(
|
|
187
|
+
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
188
|
+
),
|
|
157
189
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
158
190
|
directories: WorkspaceDirectoryConfigSchema,
|
|
159
|
-
packageManager: z.enum([
|
|
160
|
-
"
|
|
161
|
-
|
|
162
|
-
"pnpm",
|
|
163
|
-
"bun"
|
|
164
|
-
]).default("npm").describe("The JavaScript/TypeScript package manager used by the repository"),
|
|
191
|
+
packageManager: z.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
192
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
193
|
+
),
|
|
165
194
|
timezone: z.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
166
195
|
locale: z.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
167
196
|
logLevel: z.enum([
|
|
@@ -174,13 +203,23 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
174
203
|
"debug",
|
|
175
204
|
"trace",
|
|
176
205
|
"all"
|
|
177
|
-
]).default("info").describe(
|
|
178
|
-
|
|
206
|
+
]).default("info").describe(
|
|
207
|
+
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
208
|
+
),
|
|
209
|
+
skipConfigLogging: z.boolean().optional().describe(
|
|
210
|
+
"Should the logging of the current Storm Workspace configuration be skipped?"
|
|
211
|
+
),
|
|
179
212
|
registry: RegistryConfigSchema,
|
|
180
|
-
configFile: z.string().trim().nullable().default(null).describe(
|
|
181
|
-
|
|
213
|
+
configFile: z.string().trim().nullable().default(null).describe(
|
|
214
|
+
"The filepath of the Storm config. When this field is null, no config file was found in the current workspace."
|
|
215
|
+
),
|
|
216
|
+
colors: ColorConfigSchema.or(ColorConfigMapSchema).describe(
|
|
217
|
+
"Storm theme config values used for styling various package elements"
|
|
218
|
+
),
|
|
182
219
|
extensions: z.record(z.any()).optional().default({}).describe("Configuration of each used extension")
|
|
183
|
-
}).describe(
|
|
220
|
+
}).describe(
|
|
221
|
+
"Storm Workspace config values used during various dev-ops processes. This type is a combination of the StormPackageConfig and StormProject types. It represents the config of the entire monorepo."
|
|
222
|
+
);
|
|
184
223
|
|
|
185
224
|
export {
|
|
186
225
|
DarkThemeColorConfigSchema,
|
|
@@ -90,23 +90,39 @@ var RegistryConfigSchema = _zod2.default.object({
|
|
|
90
90
|
cyclone: RegistryUrlConfigSchema,
|
|
91
91
|
container: RegistryUrlConfigSchema
|
|
92
92
|
}).default({}).describe("A list of remote registry URLs used by Storm Software");
|
|
93
|
-
var ColorConfigSchema = SingleThemeColorConfigSchema.or(
|
|
93
|
+
var ColorConfigSchema = SingleThemeColorConfigSchema.or(
|
|
94
|
+
MultiThemeColorConfigSchema
|
|
95
|
+
).describe("Colors used for various workspace elements");
|
|
94
96
|
var ColorConfigMapSchema = _zod2.default.union([
|
|
95
|
-
_zod2.default.object({
|
|
96
|
-
base: ColorConfigSchema
|
|
97
|
-
}),
|
|
97
|
+
_zod2.default.object({ base: ColorConfigSchema }),
|
|
98
98
|
_zod2.default.record(_zod2.default.string(), ColorConfigSchema)
|
|
99
99
|
]);
|
|
100
|
-
var ExtendsItemSchema = _zod2.default.string().trim().describe(
|
|
101
|
-
|
|
100
|
+
var ExtendsItemSchema = _zod2.default.string().trim().describe(
|
|
101
|
+
"The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration."
|
|
102
|
+
);
|
|
103
|
+
var ExtendsSchema = ExtendsItemSchema.or(
|
|
104
|
+
_zod2.default.array(ExtendsItemSchema)
|
|
105
|
+
).describe(
|
|
106
|
+
"The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration."
|
|
107
|
+
);
|
|
102
108
|
var WorkspaceBotConfigSchema = _zod2.default.object({
|
|
103
|
-
name: _zod2.default.string().trim().default("stormie-bot").describe(
|
|
109
|
+
name: _zod2.default.string().trim().default("stormie-bot").describe(
|
|
110
|
+
"The workspace bot user's name (this is the bot that will be used to perform various tasks)"
|
|
111
|
+
),
|
|
104
112
|
email: _zod2.default.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
|
|
105
|
-
}).describe(
|
|
113
|
+
}).describe(
|
|
114
|
+
"The workspace's bot user's config used to automated various operations tasks"
|
|
115
|
+
);
|
|
106
116
|
var WorkspaceReleaseConfigSchema = _zod2.default.object({
|
|
107
|
-
banner: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_BANNER).describe(
|
|
108
|
-
|
|
109
|
-
|
|
117
|
+
banner: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_BANNER).describe(
|
|
118
|
+
"A URL to a banner image used to display the workspace's release"
|
|
119
|
+
),
|
|
120
|
+
header: _zod2.default.string().trim().optional().describe(
|
|
121
|
+
"A header message appended to the start of the workspace's release notes"
|
|
122
|
+
),
|
|
123
|
+
footer: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_FOOTER).describe(
|
|
124
|
+
"A footer message appended to the end of the workspace's release notes"
|
|
125
|
+
)
|
|
110
126
|
}).describe("The workspace's release config used during the release process");
|
|
111
127
|
var WorkspaceAccountConfigSchema = _zod2.default.object({
|
|
112
128
|
twitter: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TWITTER).describe("A Twitter/X account associated with the organization/project"),
|
|
@@ -115,23 +131,41 @@ var WorkspaceAccountConfigSchema = _zod2.default.object({
|
|
|
115
131
|
slack: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_SLACK).describe("A Slack account associated with the organization/project"),
|
|
116
132
|
medium: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_MEDIUM).describe("A Medium account associated with the organization/project"),
|
|
117
133
|
github: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_GITHUB).describe("A GitHub account associated with the organization/project")
|
|
118
|
-
}).describe(
|
|
134
|
+
}).describe(
|
|
135
|
+
"The workspace's account config used to store various social media links"
|
|
136
|
+
);
|
|
119
137
|
var WorkspaceDirectoryConfigSchema = _zod2.default.object({
|
|
120
|
-
cache: _zod2.default.string().trim().optional().describe(
|
|
138
|
+
cache: _zod2.default.string().trim().optional().describe(
|
|
139
|
+
"The directory used to store the environment's cached file data"
|
|
140
|
+
),
|
|
121
141
|
data: _zod2.default.string().trim().optional().describe("The directory used to store the environment's data files"),
|
|
122
|
-
config: _zod2.default.string().trim().optional().describe(
|
|
142
|
+
config: _zod2.default.string().trim().optional().describe(
|
|
143
|
+
"The directory used to store the environment's configuration files"
|
|
144
|
+
),
|
|
123
145
|
temp: _zod2.default.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
124
146
|
log: _zod2.default.string().trim().optional().describe("The directory used to store the environment's temp files"),
|
|
125
|
-
build: _zod2.default.string().trim().default("dist").describe(
|
|
126
|
-
|
|
147
|
+
build: _zod2.default.string().trim().default("dist").describe(
|
|
148
|
+
"The directory used to store the workspace's distributable files after a build (relative to the workspace root)"
|
|
149
|
+
)
|
|
150
|
+
}).describe(
|
|
151
|
+
"Various directories used by the workspace to store data, cache, and configuration files"
|
|
152
|
+
);
|
|
127
153
|
var errorConfigSchema = _zod2.default.object({
|
|
128
154
|
codesFile: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
|
|
129
|
-
url: _zod2.default.string().trim().url().optional().describe(
|
|
155
|
+
url: _zod2.default.string().trim().url().optional().describe(
|
|
156
|
+
"A URL to a page that looks up the workspace's error messages given a specific error code"
|
|
157
|
+
)
|
|
130
158
|
}).describe("The workspace's error config used during the error process");
|
|
131
159
|
var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
132
|
-
$schema: _zod2.default.string().trim().default(
|
|
160
|
+
$schema: _zod2.default.string().trim().default(
|
|
161
|
+
"https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json"
|
|
162
|
+
).optional().nullish().describe(
|
|
163
|
+
"The URL to the JSON schema file that describes the Storm configuration file"
|
|
164
|
+
),
|
|
133
165
|
extends: ExtendsSchema.optional(),
|
|
134
|
-
name: _zod2.default.string().trim().toLowerCase().optional().describe(
|
|
166
|
+
name: _zod2.default.string().trim().toLowerCase().optional().describe(
|
|
167
|
+
"The name of the service/package/scope using this configuration"
|
|
168
|
+
),
|
|
135
169
|
namespace: _zod2.default.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
136
170
|
organization: _zod2.default.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
137
171
|
repository: _zod2.default.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
@@ -147,21 +181,16 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
|
147
181
|
release: WorkspaceReleaseConfigSchema,
|
|
148
182
|
account: WorkspaceAccountConfigSchema,
|
|
149
183
|
error: errorConfigSchema,
|
|
150
|
-
mode: _zod2.default.enum([
|
|
151
|
-
"development",
|
|
152
|
-
"staging",
|
|
153
|
-
"production"
|
|
154
|
-
]).default("production").describe("The current runtime environment mode for the package"),
|
|
184
|
+
mode: _zod2.default.enum(["development", "staging", "production"]).default("production").describe("The current runtime environment mode for the package"),
|
|
155
185
|
workspaceRoot: _zod2.default.string().trim().describe("The root directory of the workspace"),
|
|
156
|
-
externalPackagePatterns: _zod2.default.array(_zod2.default.string()).default([]).describe(
|
|
186
|
+
externalPackagePatterns: _zod2.default.array(_zod2.default.string()).default([]).describe(
|
|
187
|
+
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
188
|
+
),
|
|
157
189
|
skipCache: _zod2.default.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
158
190
|
directories: WorkspaceDirectoryConfigSchema,
|
|
159
|
-
packageManager: _zod2.default.enum([
|
|
160
|
-
"
|
|
161
|
-
|
|
162
|
-
"pnpm",
|
|
163
|
-
"bun"
|
|
164
|
-
]).default("npm").describe("The JavaScript/TypeScript package manager used by the repository"),
|
|
191
|
+
packageManager: _zod2.default.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
192
|
+
"The JavaScript/TypeScript package manager used by the repository"
|
|
193
|
+
),
|
|
165
194
|
timezone: _zod2.default.string().trim().default("America/New_York").describe("The default timezone of the workspace"),
|
|
166
195
|
locale: _zod2.default.string().trim().default("en-US").describe("The default locale of the workspace"),
|
|
167
196
|
logLevel: _zod2.default.enum([
|
|
@@ -174,13 +203,23 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
|
174
203
|
"debug",
|
|
175
204
|
"trace",
|
|
176
205
|
"all"
|
|
177
|
-
]).default("info").describe(
|
|
178
|
-
|
|
206
|
+
]).default("info").describe(
|
|
207
|
+
"The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
|
|
208
|
+
),
|
|
209
|
+
skipConfigLogging: _zod2.default.boolean().optional().describe(
|
|
210
|
+
"Should the logging of the current Storm Workspace configuration be skipped?"
|
|
211
|
+
),
|
|
179
212
|
registry: RegistryConfigSchema,
|
|
180
|
-
configFile: _zod2.default.string().trim().nullable().default(null).describe(
|
|
181
|
-
|
|
213
|
+
configFile: _zod2.default.string().trim().nullable().default(null).describe(
|
|
214
|
+
"The filepath of the Storm config. When this field is null, no config file was found in the current workspace."
|
|
215
|
+
),
|
|
216
|
+
colors: ColorConfigSchema.or(ColorConfigMapSchema).describe(
|
|
217
|
+
"Storm theme config values used for styling various package elements"
|
|
218
|
+
),
|
|
182
219
|
extensions: _zod2.default.record(_zod2.default.any()).optional().default({}).describe("Configuration of each used extension")
|
|
183
|
-
}).describe(
|
|
220
|
+
}).describe(
|
|
221
|
+
"Storm Workspace config values used during various dev-ops processes. This type is a combination of the StormPackageConfig and StormProject types. It represents the config of the entire monorepo."
|
|
222
|
+
);
|
|
184
223
|
|
|
185
224
|
|
|
186
225
|
|
package/dist/constants.cjs
CHANGED
package/dist/constants.js
CHANGED
package/dist/define-config.cjs
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-USNT2KNT.cjs');
|
|
3
|
+
var _chunkH6PQ7FMQcjs = require('./chunk-H6PQ7FMQ.cjs');
|
|
5
4
|
|
|
6
5
|
|
|
7
|
-
exports.defineConfig =
|
|
6
|
+
exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig;
|
package/dist/define-config.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkH6PQ7FMQcjs = require('./chunk-H6PQ7FMQ.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
@@ -17,7 +17,7 @@ var _chunkSNJKI2QWcjs = require('./chunk-SNJKI2QW.cjs');
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkLBKZPA5Dcjs = require('./chunk-LBKZPA5D.cjs');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
@@ -37,7 +37,6 @@ var _chunkHAADVBHVcjs = require('./chunk-HAADVBHV.cjs');
|
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
|
|
40
|
-
require('./chunk-USNT2KNT.cjs');
|
|
41
40
|
|
|
42
41
|
|
|
43
42
|
|
|
@@ -70,4 +69,4 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
70
69
|
|
|
71
70
|
|
|
72
71
|
|
|
73
|
-
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema =
|
|
72
|
+
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkLBKZPA5Dcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkLBKZPA5Dcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkLBKZPA5Dcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkLBKZPA5Dcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkLBKZPA5Dcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkLBKZPA5Dcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkLBKZPA5Dcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkLBKZPA5Dcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkHAADVBHVcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkHAADVBHVcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkHAADVBHVcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkHAADVBHVcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkHAADVBHVcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkHAADVBHVcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.SingleThemeColorConfigSchema = _chunkLBKZPA5Dcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkLBKZPA5Dcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkLBKZPA5Dcjs.stormWorkspaceConfigSchema;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
defineConfig
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-F6SS2FZA.js";
|
|
4
4
|
import {
|
|
5
5
|
ColorConfigMapSchema,
|
|
6
6
|
ColorConfigSchema,
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
WorkspaceReleaseConfigSchema,
|
|
18
18
|
errorConfigSchema,
|
|
19
19
|
stormWorkspaceConfigSchema
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-6TJI3DKA.js";
|
|
21
21
|
import {
|
|
22
22
|
STORM_DEFAULT_ACCOUNT_DISCORD,
|
|
23
23
|
STORM_DEFAULT_ACCOUNT_GITHUB,
|
|
@@ -37,7 +37,6 @@ import {
|
|
|
37
37
|
import {
|
|
38
38
|
COLOR_KEYS
|
|
39
39
|
} from "./chunk-HFZRRAQB.js";
|
|
40
|
-
import "./chunk-SHUYVCID.js";
|
|
41
40
|
export {
|
|
42
41
|
COLOR_KEYS,
|
|
43
42
|
ColorConfigMapSchema,
|
package/dist/schema.cjs
CHANGED
|
@@ -14,9 +14,8 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunkLBKZPA5Dcjs = require('./chunk-LBKZPA5D.cjs');
|
|
18
18
|
require('./chunk-HAADVBHV.cjs');
|
|
19
|
-
require('./chunk-USNT2KNT.cjs');
|
|
20
19
|
|
|
21
20
|
|
|
22
21
|
|
|
@@ -33,4 +32,4 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
33
32
|
|
|
34
33
|
|
|
35
34
|
|
|
36
|
-
exports.ColorConfigMapSchema =
|
|
35
|
+
exports.ColorConfigMapSchema = _chunkLBKZPA5Dcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkLBKZPA5Dcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkLBKZPA5Dcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkLBKZPA5Dcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkLBKZPA5Dcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkLBKZPA5Dcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkLBKZPA5Dcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkLBKZPA5Dcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkLBKZPA5Dcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkLBKZPA5Dcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkLBKZPA5Dcjs.stormWorkspaceConfigSchema;
|
package/dist/schema.js
CHANGED
|
@@ -14,9 +14,8 @@ import {
|
|
|
14
14
|
WorkspaceReleaseConfigSchema,
|
|
15
15
|
errorConfigSchema,
|
|
16
16
|
stormWorkspaceConfigSchema
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-6TJI3DKA.js";
|
|
18
18
|
import "./chunk-PQP7SKBB.js";
|
|
19
|
-
import "./chunk-SHUYVCID.js";
|
|
20
19
|
export {
|
|
21
20
|
ColorConfigMapSchema,
|
|
22
21
|
ColorConfigSchema,
|
package/dist/types.cjs
CHANGED
package/dist/types.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.113.
|
|
3
|
+
"version": "1.113.25",
|
|
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": {
|
package/dist/chunk-5KAGNCTX.js
DELETED
package/dist/chunk-SHUYVCID.js
DELETED
package/dist/chunk-SNJKI2QW.cjs
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
-
|
|
3
|
-
var _chunkUSNT2KNTcjs = require('./chunk-USNT2KNT.cjs');
|
|
4
|
-
|
|
5
|
-
// src/define-config.ts
|
|
6
|
-
var defineConfig = /* @__PURE__ */ _chunkUSNT2KNTcjs.__name.call(void 0, (input) => input, "defineConfig");
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
exports.defineConfig = defineConfig;
|
package/dist/chunk-USNT2KNT.cjs
DELETED