@storm-software/config 1.127.1 → 1.128.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.md +1 -1
- package/dist/{chunk-63N4QQ4F.cjs → chunk-BWMRPFU3.cjs} +3 -1
- package/dist/chunk-FK3UY2VO.cjs +631 -0
- package/dist/chunk-FYKX55F5.js +631 -0
- package/dist/{chunk-KSQRDQGT.js → chunk-OI57XQ6W.js} +3 -1
- package/dist/constants.cjs +4 -2
- package/dist/constants.d.cts +2 -1
- package/dist/constants.d.ts +2 -1
- package/dist/constants.js +3 -1
- package/dist/define-config.d.cts +18 -14
- package/dist/define-config.d.ts +18 -14
- package/dist/index.cjs +123 -3
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +154 -34
- package/dist/schema.cjs +121 -3
- package/dist/schema.d.cts +476 -380
- package/dist/schema.d.ts +476 -380
- package/dist/schema.js +152 -34
- package/dist/types.d.cts +19 -18
- package/dist/types.d.ts +19 -18
- package/package.json +2 -2
- package/presets/storm-software.json +4 -1
- package/schemas/storm-workspace.schema.json +168 -149
- package/src/constants.d.ts +1 -0
- package/src/define-config.d.ts +18 -15
- package/src/schema.d.ts +476 -380
- package/src/types.d.ts +17 -17
- package/dist/chunk-OOZVCZMK.js +0 -282
- package/dist/chunk-Q4GCJANL.cjs +0 -282
package/src/constants.d.ts
CHANGED
|
@@ -13,3 +13,4 @@ export declare const STORM_DEFAULT_SOCIAL_MEDIUM = "https://medium.com/storm-sof
|
|
|
13
13
|
export declare const STORM_DEFAULT_SOCIAL_GITHUB = "https://github.com/storm-software";
|
|
14
14
|
export declare const STORM_DEFAULT_RELEASE_FOOTER = "\nStorm 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!\n";
|
|
15
15
|
export declare const STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
16
|
+
export declare const STORM_DEFAULT_BANNER_ALT = "The workspace's banner image";
|
package/src/define-config.d.ts
CHANGED
|
@@ -6,12 +6,25 @@ import type { StormWorkspaceConfigInput } from "./types";
|
|
|
6
6
|
* @returns The config values for the current Storm workspace
|
|
7
7
|
*/
|
|
8
8
|
export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
9
|
-
|
|
9
|
+
name: string;
|
|
10
|
+
namespace: string;
|
|
11
|
+
organization: string | {
|
|
10
12
|
name?: string | undefined;
|
|
11
|
-
|
|
13
|
+
description?: string | undefined;
|
|
14
|
+
logo?: string | undefined;
|
|
15
|
+
icon?: string | undefined;
|
|
16
|
+
url?: string | undefined;
|
|
17
|
+
};
|
|
18
|
+
repository: string;
|
|
19
|
+
bot: {
|
|
20
|
+
name: string;
|
|
21
|
+
email: string;
|
|
12
22
|
};
|
|
13
23
|
release: {
|
|
14
|
-
banner
|
|
24
|
+
banner: string | {
|
|
25
|
+
url?: string | undefined;
|
|
26
|
+
alt?: string | undefined;
|
|
27
|
+
};
|
|
15
28
|
header?: string | undefined;
|
|
16
29
|
footer?: string | undefined;
|
|
17
30
|
};
|
|
@@ -141,16 +154,6 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
141
154
|
}>;
|
|
142
155
|
$schema?: string | undefined;
|
|
143
156
|
extends?: string | string[] | undefined;
|
|
144
|
-
name?: string | undefined;
|
|
145
|
-
namespace?: string | undefined;
|
|
146
|
-
organization?: string | {
|
|
147
|
-
name: string;
|
|
148
|
-
description?: string | undefined;
|
|
149
|
-
logo?: string | undefined;
|
|
150
|
-
icon?: string | undefined;
|
|
151
|
-
url?: string | undefined;
|
|
152
|
-
} | undefined;
|
|
153
|
-
repository?: string | undefined;
|
|
154
157
|
license?: string | undefined;
|
|
155
158
|
homepage?: string | undefined;
|
|
156
159
|
docs?: string | undefined;
|
|
@@ -161,12 +164,12 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
161
164
|
branch?: string | undefined;
|
|
162
165
|
preid?: string | undefined;
|
|
163
166
|
owner?: string | undefined;
|
|
164
|
-
mode?:
|
|
167
|
+
mode?: "development" | "staging" | "production" | undefined;
|
|
165
168
|
skipCache?: boolean | undefined;
|
|
166
169
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
167
170
|
timezone?: string | undefined;
|
|
168
171
|
locale?: string | undefined;
|
|
169
|
-
logLevel?: "
|
|
172
|
+
logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
170
173
|
skipConfigLogging?: boolean | undefined;
|
|
171
174
|
registry?: {
|
|
172
175
|
github?: string | undefined;
|