@storm-software/config 1.106.12 → 1.107.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/dist/schema.js CHANGED
@@ -10,9 +10,10 @@ import {
10
10
  SingleThemeColorConfigSchema,
11
11
  StormConfigSchema,
12
12
  WorkspaceBotConfigSchema,
13
- WorkspaceDirectoryConfigSchema
14
- } from "./chunk-ARJWLQIE.js";
15
- import "./chunk-PQYQEEST.js";
13
+ WorkspaceDirectoryConfigSchema,
14
+ WorkspaceReleaseConfigSchema
15
+ } from "./chunk-ORVYZZUV.js";
16
+ import "./chunk-KO5ZCYSI.js";
16
17
  import "./chunk-SHUYVCID.js";
17
18
  export {
18
19
  ColorConfigMapSchema,
@@ -26,5 +27,6 @@ export {
26
27
  SingleThemeColorConfigSchema,
27
28
  StormConfigSchema,
28
29
  WorkspaceBotConfigSchema,
29
- WorkspaceDirectoryConfigSchema
30
+ WorkspaceDirectoryConfigSchema,
31
+ WorkspaceReleaseConfigSchema
30
32
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.106.12",
3
+ "version": "1.107.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": {
@@ -110,6 +110,27 @@
110
110
  "additionalProperties": false,
111
111
  "description": "The workspace's bot user's config used to automated various operations tasks"
112
112
  },
113
+ "release": {
114
+ "type": "object",
115
+ "properties": {
116
+ "banner": {
117
+ "type": "string",
118
+ "default": "https://public.storm-cdn.com/logo-banner.png",
119
+ "description": "A URL to a banner image used to display the workspace's release"
120
+ },
121
+ "header": {
122
+ "type": "string",
123
+ "description": "A header message appended to the start of the workspace's release notes"
124
+ },
125
+ "footer": {
126
+ "type": "string",
127
+ "default": "\nStorm Software is an open source software development organization and creator\nof Cyclone UI, Storm Stack and Acidic.\n\nOur mission is to make software development more accessible. Our ideal future is\none where anyone can create software without years of prior development\nexperience serving as a barrier to entry. We hope to achieve this via LLMs,\nGenerative AI, and intuitive, high-level data modeling/programming languages.\n\nJoin us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team,\nreceive release notifications, ask questions, and get involved.\n\nIf this sounds interesting, and you would like to help us in creating the next\ngeneration of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our\n[Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!\n\n![Storm Software](https://public.storm-cdn.com/icon-fill.png){ width=\"200\" style=\"display: block; margin: 0 auto\" }\n![Visit us at stormsoftware.com](https://public.storm-cdn.com/visit-us-text.svg){ height=\"90\" style=\"display: block; margin: 0 auto\" }\n",
128
+ "description": "A footer message appended to the end of the workspace's release notes"
129
+ }
130
+ },
131
+ "additionalProperties": false,
132
+ "description": "The workspace's release config used during the release process"
133
+ },
113
134
  "mode": {
114
135
  "type": "string",
115
136
  "enum": ["development", "staging", "production"],
@@ -493,7 +514,7 @@
493
514
  "description": "Configuration of each used extension"
494
515
  }
495
516
  },
496
- "required": ["bot", "directories", "colors"],
517
+ "required": ["bot", "release", "directories", "colors"],
497
518
  "additionalProperties": false,
498
519
  "description": "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."
499
520
  }
@@ -2,3 +2,5 @@ export declare const STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
2
2
  export declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
3
3
  export declare const STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
4
4
  export declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
5
+ export declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
6
+ export declare const STORM_DEFAULT_RELEASE_FOOTER = "\n[Storm Software](https://stormsoftware.com) 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!\n";
@@ -10,6 +10,11 @@ export declare const defineConfig: (input: StormConfigInput) => {
10
10
  name?: string | undefined;
11
11
  email?: string | undefined;
12
12
  };
13
+ release: {
14
+ banner?: string | undefined;
15
+ header?: string | undefined;
16
+ footer?: string | undefined;
17
+ };
13
18
  directories: {
14
19
  cache?: string | undefined;
15
20
  data?: string | undefined;
package/src/schema.d.ts CHANGED
@@ -1047,6 +1047,19 @@ export declare const WorkspaceBotConfigSchema: z.ZodObject<{
1047
1047
  name?: string | undefined;
1048
1048
  email?: string | undefined;
1049
1049
  }>;
1050
+ export declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
1051
+ banner: z.ZodDefault<z.ZodString>;
1052
+ header: z.ZodOptional<z.ZodString>;
1053
+ footer: z.ZodDefault<z.ZodString>;
1054
+ }, "strip", z.ZodTypeAny, {
1055
+ banner: string;
1056
+ footer: string;
1057
+ header?: string | undefined;
1058
+ }, {
1059
+ banner?: string | undefined;
1060
+ header?: string | undefined;
1061
+ footer?: string | undefined;
1062
+ }>;
1050
1063
  export declare const WorkspaceDirectoryConfigSchema: z.ZodObject<{
1051
1064
  cache: z.ZodOptional<z.ZodString>;
1052
1065
  data: z.ZodOptional<z.ZodString>;
@@ -1096,6 +1109,19 @@ export declare const StormConfigSchema: z.ZodObject<{
1096
1109
  name?: string | undefined;
1097
1110
  email?: string | undefined;
1098
1111
  }>;
1112
+ release: z.ZodObject<{
1113
+ banner: z.ZodDefault<z.ZodString>;
1114
+ header: z.ZodOptional<z.ZodString>;
1115
+ footer: z.ZodDefault<z.ZodString>;
1116
+ }, "strip", z.ZodTypeAny, {
1117
+ banner: string;
1118
+ footer: string;
1119
+ header?: string | undefined;
1120
+ }, {
1121
+ banner?: string | undefined;
1122
+ header?: string | undefined;
1123
+ footer?: string | undefined;
1124
+ }>;
1099
1125
  mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
1100
1126
  workspaceRoot: z.ZodDefault<z.ZodString>;
1101
1127
  externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -1875,6 +1901,11 @@ export declare const StormConfigSchema: z.ZodObject<{
1875
1901
  name: string;
1876
1902
  email: string;
1877
1903
  };
1904
+ release: {
1905
+ banner: string;
1906
+ footer: string;
1907
+ header?: string | undefined;
1908
+ };
1878
1909
  mode: "development" | "staging" | "production";
1879
1910
  workspaceRoot: string;
1880
1911
  externalPackagePatterns: string[];
@@ -2059,6 +2090,11 @@ export declare const StormConfigSchema: z.ZodObject<{
2059
2090
  name?: string | undefined;
2060
2091
  email?: string | undefined;
2061
2092
  };
2093
+ release: {
2094
+ banner?: string | undefined;
2095
+ header?: string | undefined;
2096
+ footer?: string | undefined;
2097
+ };
2062
2098
  directories: {
2063
2099
  cache?: string | undefined;
2064
2100
  data?: string | undefined;
@@ -1,12 +0,0 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/constants.ts
2
- var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
3
- var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
4
- var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
5
- var STORM_DEFAULT_LICENSE = "Apache-2.0";
6
-
7
-
8
-
9
-
10
-
11
-
12
- exports.STORM_DEFAULT_DOCS = STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSING = STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_LICENSE = STORM_DEFAULT_LICENSE;
@@ -1,12 +0,0 @@
1
- // src/constants.ts
2
- var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
3
- var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
4
- var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
5
- var STORM_DEFAULT_LICENSE = "Apache-2.0";
6
-
7
- export {
8
- STORM_DEFAULT_DOCS,
9
- STORM_DEFAULT_HOMEPAGE,
10
- STORM_DEFAULT_LICENSING,
11
- STORM_DEFAULT_LICENSE
12
- };