@storm-software/config 1.113.24 → 1.113.26

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,27 @@
2
2
 
3
3
  # Changelog for Storm Ops - Config
4
4
 
5
+ ## [1.113.26](https://github.com/storm-software/storm-ops/releases/tag/config%401.113.26) (2025-04-30)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **esbuild:** Remove swc plugin for ESBuild
10
+ ([ad298c288](https://github.com/storm-software/storm-ops/commit/ad298c288))
11
+ - **monorepo:** Regenerate README markdown files
12
+ ([933d45f0b](https://github.com/storm-software/storm-ops/commit/933d45f0b))
13
+
14
+ ## [1.113.25](https://github.com/storm-software/storm-ops/releases/tag/config%401.113.25) (2025-04-30)
15
+
16
+ ### Bug Fixes
17
+
18
+ - **esbuild:** Update script to use .cjs file extension
19
+ ([95c4e5abd](https://github.com/storm-software/storm-ops/commit/95c4e5abd))
20
+
21
+ ### Miscellaneous
22
+
23
+ - **monorepo:** Regenerate README markdown files
24
+ ([17b6c5930](https://github.com/storm-software/storm-ops/commit/17b6c5930))
25
+
5
26
  ## [1.113.24](https://github.com/storm-software/storm-ops/releases/tag/config%401.113.24) (2025-04-30)
6
27
 
7
28
  ### 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
- [![Version](https://img.shields.io/badge/version-1.113.23-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.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)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -40,7 +40,6 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
40
40
 
41
41
  <!-- START doctoc -->
42
42
  <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
43
-
44
43
  ## Table of Contents
45
44
 
46
45
  - [Storm Configuration Package](#storm-configuration-package)
@@ -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(MultiThemeColorConfigSchema).describe("Colors used for various workspace elements");
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("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.");
101
- var ExtendsSchema = ExtendsItemSchema.or(z.array(ExtendsItemSchema)).describe("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.");
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("The workspace bot user's name (this is the bot that will be used to perform various tasks)"),
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("The workspace's bot user's config used to automated various operations tasks");
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("A URL to a banner image used to display the workspace's release"),
108
- header: z.string().trim().optional().describe("A header message appended to the start of the workspace's release notes"),
109
- footer: z.string().trim().default(STORM_DEFAULT_RELEASE_FOOTER).describe("A footer message appended to the end of the workspace's release notes")
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("The workspace's account config used to store various social media links");
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("The directory used to store the environment's cached file data"),
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("The directory used to store the environment's configuration files"),
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("The directory used to store the workspace's distributable files after a build (relative to the workspace root)")
126
- }).describe("Various directories used by the workspace to store data, cache, and configuration files");
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("A URL to a page that looks up the workspace's error messages given a specific error code")
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("https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json").optional().nullish().describe("The URL to the JSON schema file that describes the Storm configuration file"),
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("The name of the service/package/scope using this configuration"),
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("The build will use these package patterns to determine if they should be external to the bundle"),
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
- "npm",
161
- "yarn",
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("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`)."),
178
- skipConfigLogging: z.boolean().optional().describe("Should the logging of the current Storm Workspace configuration be skipped?"),
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("The filepath of the Storm config. When this field is null, no config file was found in the current workspace."),
181
- colors: ColorConfigSchema.or(ColorConfigMapSchema).describe("Storm theme config values used for styling various package elements"),
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("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.");
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,
@@ -0,0 +1,6 @@
1
+ // src/define-config.ts
2
+ var defineConfig = (input) => input;
3
+
4
+ export {
5
+ defineConfig
6
+ };
@@ -0,0 +1,6 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/define-config.ts
2
+ var defineConfig = (input) => input;
3
+
4
+
5
+
6
+ exports.defineConfig = defineConfig;
@@ -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(MultiThemeColorConfigSchema).describe("Colors used for various workspace elements");
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("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.");
101
- var ExtendsSchema = ExtendsItemSchema.or(_zod2.default.array(ExtendsItemSchema)).describe("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.");
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("The workspace bot user's name (this is the bot that will be used to perform various tasks)"),
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("The workspace's bot user's config used to automated various operations tasks");
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("A URL to a banner image used to display the workspace's release"),
108
- header: _zod2.default.string().trim().optional().describe("A header message appended to the start of the workspace's release notes"),
109
- footer: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_FOOTER).describe("A footer message appended to the end of the workspace's release notes")
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("The workspace's account config used to store various social media links");
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("The directory used to store the environment's cached file data"),
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("The directory used to store the environment's configuration files"),
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("The directory used to store the workspace's distributable files after a build (relative to the workspace root)")
126
- }).describe("Various directories used by the workspace to store data, cache, and configuration files");
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("A URL to a page that looks up the workspace's error messages given a specific error code")
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("https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json").optional().nullish().describe("The URL to the JSON schema file that describes the Storm configuration file"),
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("The name of the service/package/scope using this configuration"),
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("The build will use these package patterns to determine if they should be external to the bundle"),
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
- "npm",
161
- "yarn",
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("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`)."),
178
- skipConfigLogging: _zod2.default.boolean().optional().describe("Should the logging of the current Storm Workspace configuration be skipped?"),
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("The filepath of the Storm config. When this field is null, no config file was found in the current workspace."),
181
- colors: ColorConfigSchema.or(ColorConfigMapSchema).describe("Storm theme config values used for styling various package elements"),
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("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.");
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
 
@@ -14,7 +14,6 @@
14
14
 
15
15
 
16
16
  var _chunkHAADVBHVcjs = require('./chunk-HAADVBHV.cjs');
17
- require('./chunk-USNT2KNT.cjs');
18
17
 
19
18
 
20
19
 
package/dist/constants.js CHANGED
@@ -14,7 +14,6 @@ import {
14
14
  STORM_DEFAULT_RELEASE_BANNER,
15
15
  STORM_DEFAULT_RELEASE_FOOTER
16
16
  } from "./chunk-PQP7SKBB.js";
17
- import "./chunk-SHUYVCID.js";
18
17
  export {
19
18
  STORM_DEFAULT_ACCOUNT_DISCORD,
20
19
  STORM_DEFAULT_ACCOUNT_GITHUB,
@@ -1,7 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkSNJKI2QWcjs = require('./chunk-SNJKI2QW.cjs');
4
- require('./chunk-USNT2KNT.cjs');
3
+ var _chunkH6PQ7FMQcjs = require('./chunk-H6PQ7FMQ.cjs');
5
4
 
6
5
 
7
- exports.defineConfig = _chunkSNJKI2QWcjs.defineConfig;
6
+ exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig;
@@ -1,7 +1,6 @@
1
1
  import {
2
2
  defineConfig
3
- } from "./chunk-5KAGNCTX.js";
4
- import "./chunk-SHUYVCID.js";
3
+ } from "./chunk-F6SS2FZA.js";
5
4
  export {
6
5
  defineConfig
7
6
  };
package/dist/index.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkSNJKI2QWcjs = require('./chunk-SNJKI2QW.cjs');
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 _chunkOKZCEIYKcjs = require('./chunk-OKZCEIYK.cjs');
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 = _chunkOKZCEIYKcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkOKZCEIYKcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkOKZCEIYKcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkOKZCEIYKcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkOKZCEIYKcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkOKZCEIYKcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkOKZCEIYKcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkOKZCEIYKcjs.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 = _chunkOKZCEIYKcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkOKZCEIYKcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkOKZCEIYKcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkOKZCEIYKcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkOKZCEIYKcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkSNJKI2QWcjs.defineConfig; exports.errorConfigSchema = _chunkOKZCEIYKcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkOKZCEIYKcjs.stormWorkspaceConfigSchema;
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-5KAGNCTX.js";
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-NIKR5IAQ.js";
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 _chunkOKZCEIYKcjs = require('./chunk-OKZCEIYK.cjs');
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 = _chunkOKZCEIYKcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkOKZCEIYKcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkOKZCEIYKcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkOKZCEIYKcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkOKZCEIYKcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkOKZCEIYKcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkOKZCEIYKcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkOKZCEIYKcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkOKZCEIYKcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkOKZCEIYKcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkOKZCEIYKcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkOKZCEIYKcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkOKZCEIYKcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkOKZCEIYKcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkOKZCEIYKcjs.stormWorkspaceConfigSchema;
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-NIKR5IAQ.js";
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
@@ -1,7 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
  var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
4
- require('./chunk-USNT2KNT.cjs');
5
4
 
6
5
 
7
6
  exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS;
package/dist/types.js CHANGED
@@ -1,7 +1,6 @@
1
1
  import {
2
2
  COLOR_KEYS
3
3
  } from "./chunk-HFZRRAQB.js";
4
- import "./chunk-SHUYVCID.js";
5
4
  export {
6
5
  COLOR_KEYS
7
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.113.24",
3
+ "version": "1.113.26",
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": {
@@ -1,10 +0,0 @@
1
- import {
2
- __name
3
- } from "./chunk-SHUYVCID.js";
4
-
5
- // src/define-config.ts
6
- var defineConfig = /* @__PURE__ */ __name((input) => input, "defineConfig");
7
-
8
- export {
9
- defineConfig
10
- };
@@ -1,6 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
-
4
- export {
5
- __name
6
- };
@@ -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;
@@ -1,6 +0,0 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});var __defProp = Object.defineProperty;
2
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
-
4
-
5
-
6
- exports.__name = __name;