@storm-software/config 1.134.68 → 1.134.70

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
@@ -1,7 +1,19 @@
1
- ![Storm Software's logo banner](https://public.storm-cdn.com/storm-software/banner-1280x320-optimized.gif)
1
+ ![Storm Software's logo banner](https://public.storm-cdn.com/storm-software/optimized/banner-1280x320.gif)
2
2
 
3
3
  # Changelog for Storm Ops - Config
4
4
 
5
+ ## [1.134.69](https://github.com/storm-software/storm-ops/releases/tag/config%401.134.69) (12/17/2025)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **testing-tools** to **v1.119.68**
10
+
11
+ ## [1.134.68](https://github.com/storm-software/storm-ops/releases/tag/config%401.134.68) (12/16/2025)
12
+
13
+ ### Updated Dependencies
14
+
15
+ - Updated **testing-tools** to **v1.119.67**
16
+
5
17
  ## [1.134.67](https://github.com/storm-software/storm-ops/releases/tag/config%401.134.67) (12/15/2025)
6
18
 
7
19
  ### Miscellaneous
@@ -136,10 +148,6 @@
136
148
 
137
149
  - Updated **testing-tools** to **v1.119.52**
138
150
 
139
- ![Storm Software's logo banner](https://public.storm-cdn.com/storm-software/banner-1280x320-dark-optimized.gif)
140
-
141
- # Changelog for Storm Ops - Config
142
-
143
151
  ## [1.134.51](https://github.com/storm-software/storm-ops/releases/tag/config%401.134.51) (12/04/2025)
144
152
 
145
153
  ### Miscellaneous
package/README.md CHANGED
@@ -5,9 +5,9 @@
5
5
 
6
6
  <div align="center">
7
7
  <picture>
8
- <source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x640-dark-optimized.gif">
9
- <source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x640-light-optimized.gif">
10
- <img src="https://public.storm-cdn.com/storm-software/banner-1280x640-dark-optimized.gif" width="100%" alt="Storm Software" />
8
+ <source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/optimized/banner-1280x640-dark.gif">
9
+ <source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/optimized/banner-1280x640-light.gif">
10
+ <img src="https://public.storm-cdn.com/storm-software/optimized/banner-1280x640-dark.gif" width="100%" alt="Storm Software" />
11
11
  </picture>
12
12
  </div>
13
13
  <br />
@@ -301,9 +301,9 @@ specification. Contributions of any kind welcome!
301
301
 
302
302
  <div align="center">
303
303
  <picture>
304
- <source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-dark-optimized.webp">
305
- <source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-light-optimized.webp">
306
- <img src="https://public.storm-cdn.com/storm-software/banner-1280x320-dark-optimized.webp" width="100%" alt="Storm Software" />
304
+ <source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/optimized/banner-1280x320-dark.webp">
305
+ <source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/optimized/banner-1280x320-light.webp">
306
+ <img src="https://public.storm-cdn.com/storm-software/optimized/banner-1280x320-dark.webp" width="100%" alt="Storm Software" />
307
307
  </picture>
308
308
  </div>
309
309
  <br />
@@ -54,22 +54,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
54
54
  build?: string | undefined;
55
55
  };
56
56
  colors: {
57
- dark?: string | undefined;
58
- light?: string | undefined;
59
- brand?: string | undefined;
60
- alternate?: string | undefined;
61
- accent?: string | undefined;
62
- link?: string | undefined;
63
- help?: string | undefined;
64
- success?: string | undefined;
65
- info?: string | undefined;
66
- warning?: string | undefined;
67
- danger?: string | undefined;
68
- fatal?: string | undefined;
69
- positive?: string | undefined;
70
- negative?: string | undefined;
71
- gradient?: string[] | undefined;
72
- } | {
73
57
  dark: {
74
58
  foreground?: string | undefined;
75
59
  background?: string | undefined;
@@ -104,7 +88,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
104
88
  negative?: string | undefined;
105
89
  gradient?: string[] | undefined;
106
90
  };
107
- } | Record<string, {
91
+ } | {
108
92
  dark?: string | undefined;
109
93
  light?: string | undefined;
110
94
  brand?: string | undefined;
@@ -120,7 +104,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
120
104
  positive?: string | undefined;
121
105
  negative?: string | undefined;
122
106
  gradient?: string[] | undefined;
123
- } | {
107
+ } | Record<string, {
124
108
  dark: {
125
109
  foreground?: string | undefined;
126
110
  background?: string | undefined;
@@ -155,6 +139,22 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
155
139
  negative?: string | undefined;
156
140
  gradient?: string[] | undefined;
157
141
  };
142
+ } | {
143
+ dark?: string | undefined;
144
+ light?: string | undefined;
145
+ brand?: string | undefined;
146
+ alternate?: string | undefined;
147
+ accent?: string | undefined;
148
+ link?: string | undefined;
149
+ help?: string | undefined;
150
+ success?: string | undefined;
151
+ info?: string | undefined;
152
+ warning?: string | undefined;
153
+ danger?: string | undefined;
154
+ fatal?: string | undefined;
155
+ positive?: string | undefined;
156
+ negative?: string | undefined;
157
+ gradient?: string[] | undefined;
158
158
  }>;
159
159
  $schema?: string | undefined;
160
160
  extends?: string | string[] | undefined;
@@ -174,7 +174,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
174
174
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
175
175
  timezone?: string | undefined;
176
176
  locale?: string | undefined;
177
- logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "debug" | "trace" | "all" | undefined;
177
+ logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
178
178
  skipConfigLogging?: boolean | undefined;
179
179
  registry?: {
180
180
  github?: string | undefined;
@@ -54,22 +54,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
54
54
  build?: string | undefined;
55
55
  };
56
56
  colors: {
57
- dark?: string | undefined;
58
- light?: string | undefined;
59
- brand?: string | undefined;
60
- alternate?: string | undefined;
61
- accent?: string | undefined;
62
- link?: string | undefined;
63
- help?: string | undefined;
64
- success?: string | undefined;
65
- info?: string | undefined;
66
- warning?: string | undefined;
67
- danger?: string | undefined;
68
- fatal?: string | undefined;
69
- positive?: string | undefined;
70
- negative?: string | undefined;
71
- gradient?: string[] | undefined;
72
- } | {
73
57
  dark: {
74
58
  foreground?: string | undefined;
75
59
  background?: string | undefined;
@@ -104,7 +88,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
104
88
  negative?: string | undefined;
105
89
  gradient?: string[] | undefined;
106
90
  };
107
- } | Record<string, {
91
+ } | {
108
92
  dark?: string | undefined;
109
93
  light?: string | undefined;
110
94
  brand?: string | undefined;
@@ -120,7 +104,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
120
104
  positive?: string | undefined;
121
105
  negative?: string | undefined;
122
106
  gradient?: string[] | undefined;
123
- } | {
107
+ } | Record<string, {
124
108
  dark: {
125
109
  foreground?: string | undefined;
126
110
  background?: string | undefined;
@@ -155,6 +139,22 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
155
139
  negative?: string | undefined;
156
140
  gradient?: string[] | undefined;
157
141
  };
142
+ } | {
143
+ dark?: string | undefined;
144
+ light?: string | undefined;
145
+ brand?: string | undefined;
146
+ alternate?: string | undefined;
147
+ accent?: string | undefined;
148
+ link?: string | undefined;
149
+ help?: string | undefined;
150
+ success?: string | undefined;
151
+ info?: string | undefined;
152
+ warning?: string | undefined;
153
+ danger?: string | undefined;
154
+ fatal?: string | undefined;
155
+ positive?: string | undefined;
156
+ negative?: string | undefined;
157
+ gradient?: string[] | undefined;
158
158
  }>;
159
159
  $schema?: string | undefined;
160
160
  extends?: string | string[] | undefined;
@@ -174,7 +174,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
174
174
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
175
175
  timezone?: string | undefined;
176
176
  locale?: string | undefined;
177
- logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "debug" | "trace" | "all" | undefined;
177
+ logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
178
178
  skipConfigLogging?: boolean | undefined;
179
179
  registry?: {
180
180
  github?: string | undefined;
package/dist/schema.d.cts CHANGED
@@ -319,12 +319,12 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
319
319
  declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
320
320
  declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
321
321
  declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
322
- error: "error";
323
322
  success: "success";
324
- silent: "silent";
323
+ info: "info";
325
324
  fatal: "fatal";
325
+ silent: "silent";
326
+ error: "error";
326
327
  warn: "warn";
327
- info: "info";
328
328
  debug: "debug";
329
329
  trace: "trace";
330
330
  all: "all";
@@ -410,12 +410,12 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
410
410
  timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
411
411
  locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
412
412
  logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
413
- error: "error";
414
413
  success: "success";
415
- silent: "silent";
414
+ info: "info";
416
415
  fatal: "fatal";
416
+ silent: "silent";
417
+ error: "error";
417
418
  warn: "warn";
418
- info: "info";
419
419
  debug: "debug";
420
420
  trace: "trace";
421
421
  all: "all";
package/dist/schema.d.ts CHANGED
@@ -319,12 +319,12 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
319
319
  declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
320
320
  declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
321
321
  declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
322
- error: "error";
323
322
  success: "success";
324
- silent: "silent";
323
+ info: "info";
325
324
  fatal: "fatal";
325
+ silent: "silent";
326
+ error: "error";
326
327
  warn: "warn";
327
- info: "info";
328
328
  debug: "debug";
329
329
  trace: "trace";
330
330
  all: "all";
@@ -410,12 +410,12 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
410
410
  timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
411
411
  locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
412
412
  logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
413
- error: "error";
414
413
  success: "success";
415
- silent: "silent";
414
+ info: "info";
416
415
  fatal: "fatal";
416
+ silent: "silent";
417
+ error: "error";
417
418
  warn: "warn";
418
- info: "info";
419
419
  debug: "debug";
420
420
  trace: "trace";
421
421
  all: "all";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.134.68",
3
+ "version": "1.134.70",
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": {
@@ -87,5 +87,5 @@
87
87
  "dependencies": { "zod": "^4.2.0" },
88
88
  "devDependencies": { "tsup": "8.4.0" },
89
89
  "publishConfig": { "access": "public" },
90
- "gitHead": "31bafb4a3df535a83106fea15b3e0ed3a4bce93a"
90
+ "gitHead": "ae090c42b3fb6c2826b532016af90a62bfe57349"
91
91
  }
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "release": {
47
47
  "banner": {
48
- "url": "https://public.storm-cdn.com/storm-software/banner-1280x320-optimized.gif",
48
+ "url": "https://public.storm-cdn.com/storm-software/optimized/banner-1280x320.gif",
49
49
  "alt": "Storm Software's logo banner"
50
50
  },
51
51
  "footer": "Storm Software is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.\n\nJoin us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.\n\nIf this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!"