@storm-software/config 1.124.8 → 1.125.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 +14 -0
- package/README.md +1 -1
- package/dist/{chunk-HPEJ52UX.cjs → chunk-63N4QQ4F.cjs} +10 -10
- package/dist/{chunk-2IM4ZY3U.js → chunk-ABGOB6LC.js} +17 -20
- package/dist/{chunk-M6WLNJVQ.cjs → chunk-C2KLOUYY.cjs} +13 -16
- package/dist/{chunk-X3RNGA5B.js → chunk-KSQRDQGT.js} +15 -15
- package/dist/constants.cjs +2 -2
- package/dist/constants.d.cts +8 -8
- package/dist/constants.d.ts +8 -8
- package/dist/constants.js +13 -13
- package/dist/define-config.d.cts +1 -2
- package/dist/define-config.d.ts +1 -2
- package/dist/index.cjs +3 -3
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +16 -16
- package/dist/schema.cjs +3 -3
- package/dist/schema.d.cts +3 -4
- package/dist/schema.d.ts +3 -4
- package/dist/schema.js +4 -4
- package/package.json +2 -2
- package/presets/storm-software.json +8 -1
- package/schemas/storm-workspace.schema.json +276 -678
- package/src/constants.d.ts +7 -7
- package/src/define-config.d.ts +1 -2
- package/src/schema.d.ts +2 -3
package/src/constants.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export declare const STORM_DEFAULT_DOCS = "https://stormsoftware.com
|
|
1
|
+
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_CONTACT = "https://stormsoftware.com/contact";
|
|
4
4
|
export declare const STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
|
|
5
5
|
export declare const STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
|
|
6
6
|
export declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
7
7
|
export declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
13
|
-
export declare const
|
|
8
|
+
export declare const STORM_DEFAULT_SOCIAL_TWITTER = "StormSoftwareHQ";
|
|
9
|
+
export declare const STORM_DEFAULT_SOCIAL_DISCORD = "https://discord.gg/MQ6YVzakM5";
|
|
10
|
+
export declare const STORM_DEFAULT_SOCIAL_TELEGRAM = "https://t.me/storm_software";
|
|
11
|
+
export declare const STORM_DEFAULT_SOCIAL_SLACK = "https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA";
|
|
12
|
+
export declare const STORM_DEFAULT_SOCIAL_MEDIUM = "https://medium.com/storm-software";
|
|
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";
|
package/src/define-config.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
15
15
|
header?: string | undefined;
|
|
16
16
|
footer?: string | undefined;
|
|
17
17
|
};
|
|
18
|
-
|
|
18
|
+
socials: {
|
|
19
19
|
twitter?: string | undefined;
|
|
20
20
|
discord?: string | undefined;
|
|
21
21
|
telegram?: string | undefined;
|
|
@@ -156,7 +156,6 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
156
156
|
preid?: string | undefined;
|
|
157
157
|
owner?: string | undefined;
|
|
158
158
|
mode?: "development" | "staging" | "production" | undefined;
|
|
159
|
-
externalPackagePatterns?: string[] | undefined;
|
|
160
159
|
skipCache?: boolean | undefined;
|
|
161
160
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
162
161
|
timezone?: string | undefined;
|
package/src/schema.d.ts
CHANGED
|
@@ -200,7 +200,7 @@ export declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
|
|
|
200
200
|
header: z.ZodOptional<z.ZodString>;
|
|
201
201
|
footer: z.ZodDefault<z.ZodString>;
|
|
202
202
|
}, z.core.$strip>;
|
|
203
|
-
export declare const
|
|
203
|
+
export declare const WorkspaceSocialsConfigSchema: z.ZodObject<{
|
|
204
204
|
twitter: z.ZodDefault<z.ZodString>;
|
|
205
205
|
discord: z.ZodDefault<z.ZodString>;
|
|
206
206
|
telegram: z.ZodDefault<z.ZodString>;
|
|
@@ -262,7 +262,7 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
262
262
|
header: z.ZodOptional<z.ZodString>;
|
|
263
263
|
footer: z.ZodDefault<z.ZodString>;
|
|
264
264
|
}, z.core.$strip>;
|
|
265
|
-
|
|
265
|
+
socials: z.ZodObject<{
|
|
266
266
|
twitter: z.ZodDefault<z.ZodString>;
|
|
267
267
|
discord: z.ZodDefault<z.ZodString>;
|
|
268
268
|
telegram: z.ZodDefault<z.ZodString>;
|
|
@@ -280,7 +280,6 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
280
280
|
production: "production";
|
|
281
281
|
}>>;
|
|
282
282
|
workspaceRoot: z.ZodString;
|
|
283
|
-
externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
284
283
|
skipCache: z.ZodDefault<z.ZodBoolean>;
|
|
285
284
|
directories: z.ZodObject<{
|
|
286
285
|
cache: z.ZodOptional<z.ZodString>;
|