@storm-software/config 1.119.7 → 1.121.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 +16 -0
- package/README.md +1 -1
- package/dist/{chunk-6TJI3DKA.js → chunk-6AI6N4A2.js} +8 -9
- package/dist/{chunk-HAADVBHV.cjs → chunk-HPEJ52UX.cjs} +5 -3
- package/dist/{chunk-LBKZPA5D.cjs → chunk-VCBBW6S7.cjs} +17 -18
- package/dist/{chunk-PQP7SKBB.js → chunk-X3RNGA5B.js} +4 -2
- package/dist/constants.cjs +4 -2
- package/dist/constants.d.cts +4 -3
- package/dist/constants.d.ts +4 -3
- package/dist/constants.js +5 -3
- package/dist/define-config.d.cts +79 -78
- package/dist/define-config.d.ts +79 -78
- package/dist/index.cjs +5 -3
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -3
- package/dist/schema.cjs +3 -3
- package/dist/schema.d.cts +642 -639
- package/dist/schema.d.ts +642 -639
- package/dist/schema.js +2 -2
- package/package.json +1 -1
- package/presets/storm-software.json +7 -1
- package/schemas/storm-workspace.schema.json +8 -7
- package/src/constants.d.ts +3 -2
- package/src/define-config.d.ts +1 -0
- package/src/schema.d.ts +11 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.120.0](https://github.com/storm-software/storm-ops/releases/tag/config%401.120.0) (2025-05-18)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **config:** Added the `support` workspace configuration parameter
|
|
10
|
+
|
|
11
|
+
### Miscellaneous
|
|
12
|
+
|
|
13
|
+
- **monorepo:** Regenerate README markdown files
|
|
14
|
+
|
|
15
|
+
## [1.119.7](https://github.com/storm-software/storm-ops/releases/tag/config%401.119.7) (2025-05-13)
|
|
16
|
+
|
|
17
|
+
### Miscellaneous
|
|
18
|
+
|
|
19
|
+
- **monorepo:** Regenerate README markdown files
|
|
20
|
+
|
|
5
21
|
## [1.119.6](https://github.com/storm-software/storm-ops/releases/tag/config%401.119.6) (2025-05-09)
|
|
6
22
|
|
|
7
23
|
### Miscellaneous
|
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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -5,14 +5,10 @@ import {
|
|
|
5
5
|
STORM_DEFAULT_ACCOUNT_SLACK,
|
|
6
6
|
STORM_DEFAULT_ACCOUNT_TELEGRAM,
|
|
7
7
|
STORM_DEFAULT_ACCOUNT_TWITTER,
|
|
8
|
-
STORM_DEFAULT_CONTACT,
|
|
9
|
-
STORM_DEFAULT_DOCS,
|
|
10
8
|
STORM_DEFAULT_ERROR_CODES_FILE,
|
|
11
|
-
STORM_DEFAULT_HOMEPAGE,
|
|
12
|
-
STORM_DEFAULT_LICENSING,
|
|
13
9
|
STORM_DEFAULT_RELEASE_BANNER,
|
|
14
10
|
STORM_DEFAULT_RELEASE_FOOTER
|
|
15
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-X3RNGA5B.js";
|
|
16
12
|
|
|
17
13
|
// src/schema.ts
|
|
18
14
|
import z from "zod";
|
|
@@ -170,10 +166,13 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
170
166
|
organization: z.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
171
167
|
repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
172
168
|
license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
173
|
-
homepage: z.string().trim().url().
|
|
174
|
-
docs: z.string().trim().url().
|
|
175
|
-
licensing: z.string().trim().url().
|
|
176
|
-
contact: z.string().trim().url().
|
|
169
|
+
homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
|
|
170
|
+
docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
|
|
171
|
+
licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
|
|
172
|
+
contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
|
|
173
|
+
support: z.string().trim().url().optional().describe(
|
|
174
|
+
"The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
|
|
175
|
+
),
|
|
177
176
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
178
177
|
preid: z.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
179
178
|
owner: z.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/constants.ts
|
|
2
|
-
var STORM_DEFAULT_DOCS = "https://
|
|
2
|
+
var STORM_DEFAULT_DOCS = "https://stormsoftware.com/docs";
|
|
3
3
|
var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
4
4
|
var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
5
|
-
var
|
|
5
|
+
var STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
|
|
6
|
+
var STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
|
|
6
7
|
var STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
7
8
|
var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
8
9
|
var STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
|
|
@@ -35,4 +36,5 @@ var STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
|
35
36
|
|
|
36
37
|
|
|
37
38
|
|
|
38
|
-
|
|
39
|
+
|
|
40
|
+
exports.STORM_DEFAULT_DOCS = STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_CONTACT = STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_SUPPORT = STORM_DEFAULT_SUPPORT; exports.STORM_DEFAULT_LICENSING = STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_LICENSE = STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_RELEASE_BANNER = STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_ACCOUNT_TWITTER = STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_ACCOUNT_DISCORD = STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_SLACK = STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_GITHUB = STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_RELEASE_FOOTER = STORM_DEFAULT_RELEASE_FOOTER; exports.STORM_DEFAULT_ERROR_CODES_FILE = STORM_DEFAULT_ERROR_CODES_FILE;
|
|
@@ -8,11 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
var _chunkHAADVBHVcjs = require('./chunk-HAADVBHV.cjs');
|
|
11
|
+
var _chunkHPEJ52UXcjs = require('./chunk-HPEJ52UX.cjs');
|
|
16
12
|
|
|
17
13
|
// src/schema.ts
|
|
18
14
|
var _zod = require('zod'); var _zod2 = _interopRequireDefault(_zod);
|
|
@@ -114,23 +110,23 @@ var WorkspaceBotConfigSchema = _zod2.default.object({
|
|
|
114
110
|
"The workspace's bot user's config used to automated various operations tasks"
|
|
115
111
|
);
|
|
116
112
|
var WorkspaceReleaseConfigSchema = _zod2.default.object({
|
|
117
|
-
banner: _zod2.default.string().trim().default(
|
|
113
|
+
banner: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_BANNER).describe(
|
|
118
114
|
"A URL to a banner image used to display the workspace's release"
|
|
119
115
|
),
|
|
120
116
|
header: _zod2.default.string().trim().optional().describe(
|
|
121
117
|
"A header message appended to the start of the workspace's release notes"
|
|
122
118
|
),
|
|
123
|
-
footer: _zod2.default.string().trim().default(
|
|
119
|
+
footer: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_FOOTER).describe(
|
|
124
120
|
"A footer message appended to the end of the workspace's release notes"
|
|
125
121
|
)
|
|
126
122
|
}).describe("The workspace's release config used during the release process");
|
|
127
123
|
var WorkspaceAccountConfigSchema = _zod2.default.object({
|
|
128
|
-
twitter: _zod2.default.string().trim().default(
|
|
129
|
-
discord: _zod2.default.string().trim().default(
|
|
130
|
-
telegram: _zod2.default.string().trim().default(
|
|
131
|
-
slack: _zod2.default.string().trim().default(
|
|
132
|
-
medium: _zod2.default.string().trim().default(
|
|
133
|
-
github: _zod2.default.string().trim().default(
|
|
124
|
+
twitter: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TWITTER).describe("A Twitter/X account associated with the organization/project"),
|
|
125
|
+
discord: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_DISCORD).describe("A Discord account associated with the organization/project"),
|
|
126
|
+
telegram: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM).describe("A Telegram account associated with the organization/project"),
|
|
127
|
+
slack: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_SLACK).describe("A Slack account associated with the organization/project"),
|
|
128
|
+
medium: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_MEDIUM).describe("A Medium account associated with the organization/project"),
|
|
129
|
+
github: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_GITHUB).describe("A GitHub account associated with the organization/project")
|
|
134
130
|
}).describe(
|
|
135
131
|
"The workspace's account config used to store various social media links"
|
|
136
132
|
);
|
|
@@ -151,7 +147,7 @@ var WorkspaceDirectoryConfigSchema = _zod2.default.object({
|
|
|
151
147
|
"Various directories used by the workspace to store data, cache, and configuration files"
|
|
152
148
|
);
|
|
153
149
|
var errorConfigSchema = _zod2.default.object({
|
|
154
|
-
codesFile: _zod2.default.string().trim().default(
|
|
150
|
+
codesFile: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
|
|
155
151
|
url: _zod2.default.string().trim().url().optional().describe(
|
|
156
152
|
"A URL to a page that looks up the workspace's error messages given a specific error code"
|
|
157
153
|
)
|
|
@@ -170,10 +166,13 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
|
170
166
|
organization: _zod2.default.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
171
167
|
repository: _zod2.default.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
172
168
|
license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
173
|
-
homepage: _zod2.default.string().trim().url().
|
|
174
|
-
docs: _zod2.default.string().trim().url().
|
|
175
|
-
licensing: _zod2.default.string().trim().url().
|
|
176
|
-
contact: _zod2.default.string().trim().url().
|
|
169
|
+
homepage: _zod2.default.string().trim().url().optional().describe("The homepage of the workspace"),
|
|
170
|
+
docs: _zod2.default.string().trim().url().optional().describe("The documentation site for the workspace"),
|
|
171
|
+
licensing: _zod2.default.string().trim().url().optional().describe("The licensing site for the workspace"),
|
|
172
|
+
contact: _zod2.default.string().trim().url().optional().describe("The contact site for the workspace"),
|
|
173
|
+
support: _zod2.default.string().trim().url().optional().describe(
|
|
174
|
+
"The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
|
|
175
|
+
),
|
|
177
176
|
branch: _zod2.default.string().trim().default("main").describe("The branch of the workspace"),
|
|
178
177
|
preid: _zod2.default.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
179
178
|
owner: _zod2.default.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
// src/constants.ts
|
|
2
|
-
var STORM_DEFAULT_DOCS = "https://
|
|
2
|
+
var STORM_DEFAULT_DOCS = "https://stormsoftware.com/docs";
|
|
3
3
|
var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
4
4
|
var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
5
|
-
var
|
|
5
|
+
var STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
|
|
6
|
+
var STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
|
|
6
7
|
var STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
7
8
|
var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
8
9
|
var STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
|
|
@@ -24,6 +25,7 @@ export {
|
|
|
24
25
|
STORM_DEFAULT_DOCS,
|
|
25
26
|
STORM_DEFAULT_HOMEPAGE,
|
|
26
27
|
STORM_DEFAULT_CONTACT,
|
|
28
|
+
STORM_DEFAULT_SUPPORT,
|
|
27
29
|
STORM_DEFAULT_LICENSING,
|
|
28
30
|
STORM_DEFAULT_LICENSE,
|
|
29
31
|
STORM_DEFAULT_RELEASE_BANNER,
|
package/dist/constants.cjs
CHANGED
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var _chunkHAADVBHVcjs = require('./chunk-HAADVBHV.cjs');
|
|
17
16
|
|
|
17
|
+
var _chunkHPEJ52UXcjs = require('./chunk-HPEJ52UX.cjs');
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
@@ -29,4 +29,6 @@ var _chunkHAADVBHVcjs = require('./chunk-HAADVBHV.cjs');
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkHPEJ52UXcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkHPEJ52UXcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkHPEJ52UXcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkHPEJ52UXcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkHPEJ52UXcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkHPEJ52UXcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.STORM_DEFAULT_SUPPORT = _chunkHPEJ52UXcjs.STORM_DEFAULT_SUPPORT;
|
package/dist/constants.d.cts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
declare const STORM_DEFAULT_DOCS = "https://
|
|
1
|
+
declare const STORM_DEFAULT_DOCS = "https://stormsoftware.com/docs";
|
|
2
2
|
declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
3
3
|
declare const STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
4
|
-
declare const
|
|
4
|
+
declare const STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
|
|
5
|
+
declare const STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
|
|
5
6
|
declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
6
7
|
declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
7
8
|
declare const STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
|
|
@@ -13,4 +14,4 @@ declare const STORM_DEFAULT_ACCOUNT_GITHUB = "https://github.com/storm-software"
|
|
|
13
14
|
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";
|
|
14
15
|
declare const STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
15
16
|
|
|
16
|
-
export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER };
|
|
17
|
+
export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER, STORM_DEFAULT_SUPPORT };
|
package/dist/constants.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
declare const STORM_DEFAULT_DOCS = "https://
|
|
1
|
+
declare const STORM_DEFAULT_DOCS = "https://stormsoftware.com/docs";
|
|
2
2
|
declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
3
3
|
declare const STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
4
|
-
declare const
|
|
4
|
+
declare const STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
|
|
5
|
+
declare const STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
|
|
5
6
|
declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
6
7
|
declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
7
8
|
declare const STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
|
|
@@ -13,4 +14,4 @@ declare const STORM_DEFAULT_ACCOUNT_GITHUB = "https://github.com/storm-software"
|
|
|
13
14
|
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";
|
|
14
15
|
declare const STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
15
16
|
|
|
16
|
-
export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER };
|
|
17
|
+
export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER, STORM_DEFAULT_SUPPORT };
|
package/dist/constants.js
CHANGED
|
@@ -12,8 +12,9 @@ import {
|
|
|
12
12
|
STORM_DEFAULT_LICENSE,
|
|
13
13
|
STORM_DEFAULT_LICENSING,
|
|
14
14
|
STORM_DEFAULT_RELEASE_BANNER,
|
|
15
|
-
STORM_DEFAULT_RELEASE_FOOTER
|
|
16
|
-
|
|
15
|
+
STORM_DEFAULT_RELEASE_FOOTER,
|
|
16
|
+
STORM_DEFAULT_SUPPORT
|
|
17
|
+
} from "./chunk-X3RNGA5B.js";
|
|
17
18
|
export {
|
|
18
19
|
STORM_DEFAULT_ACCOUNT_DISCORD,
|
|
19
20
|
STORM_DEFAULT_ACCOUNT_GITHUB,
|
|
@@ -28,5 +29,6 @@ export {
|
|
|
28
29
|
STORM_DEFAULT_LICENSE,
|
|
29
30
|
STORM_DEFAULT_LICENSING,
|
|
30
31
|
STORM_DEFAULT_RELEASE_BANNER,
|
|
31
|
-
STORM_DEFAULT_RELEASE_FOOTER
|
|
32
|
+
STORM_DEFAULT_RELEASE_FOOTER,
|
|
33
|
+
STORM_DEFAULT_SUPPORT
|
|
32
34
|
};
|
package/dist/define-config.d.cts
CHANGED
|
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
19
19
|
footer?: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
account: {
|
|
22
|
-
github?: string | undefined;
|
|
23
22
|
twitter?: string | undefined;
|
|
24
23
|
discord?: string | undefined;
|
|
25
24
|
telegram?: string | undefined;
|
|
26
25
|
slack?: string | undefined;
|
|
27
26
|
medium?: string | undefined;
|
|
27
|
+
github?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
error: {
|
|
30
30
|
codesFile?: string | undefined;
|
|
@@ -40,155 +40,155 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
40
40
|
build?: string | undefined;
|
|
41
41
|
};
|
|
42
42
|
colors: {
|
|
43
|
+
fatal?: string | undefined;
|
|
44
|
+
success?: string | undefined;
|
|
45
|
+
info?: string | undefined;
|
|
46
|
+
dark?: string | undefined;
|
|
47
|
+
light?: string | undefined;
|
|
48
|
+
brand?: string | undefined;
|
|
49
|
+
alternate?: string | undefined;
|
|
50
|
+
accent?: string | undefined;
|
|
51
|
+
link?: string | undefined;
|
|
52
|
+
help?: string | undefined;
|
|
53
|
+
warning?: string | undefined;
|
|
54
|
+
danger?: string | undefined;
|
|
55
|
+
positive?: string | undefined;
|
|
56
|
+
negative?: string | undefined;
|
|
57
|
+
} | {
|
|
43
58
|
dark: {
|
|
44
|
-
|
|
45
|
-
|
|
59
|
+
fatal?: string | undefined;
|
|
60
|
+
success?: string | undefined;
|
|
61
|
+
info?: string | undefined;
|
|
46
62
|
brand?: string | undefined;
|
|
47
63
|
alternate?: string | undefined;
|
|
48
64
|
accent?: string | undefined;
|
|
49
65
|
link?: string | undefined;
|
|
50
66
|
help?: string | undefined;
|
|
51
|
-
success?: string | undefined;
|
|
52
|
-
info?: string | undefined;
|
|
53
67
|
warning?: string | undefined;
|
|
54
68
|
danger?: string | undefined;
|
|
55
|
-
fatal?: string | undefined;
|
|
56
69
|
positive?: string | undefined;
|
|
57
70
|
negative?: string | undefined;
|
|
58
|
-
};
|
|
59
|
-
light: {
|
|
60
71
|
foreground?: string | undefined;
|
|
61
72
|
background?: string | undefined;
|
|
73
|
+
};
|
|
74
|
+
light: {
|
|
75
|
+
fatal?: string | undefined;
|
|
76
|
+
success?: string | undefined;
|
|
77
|
+
info?: string | undefined;
|
|
62
78
|
brand?: string | undefined;
|
|
63
79
|
alternate?: string | undefined;
|
|
64
80
|
accent?: string | undefined;
|
|
65
81
|
link?: string | undefined;
|
|
66
82
|
help?: string | undefined;
|
|
67
|
-
success?: string | undefined;
|
|
68
|
-
info?: string | undefined;
|
|
69
83
|
warning?: string | undefined;
|
|
70
84
|
danger?: string | undefined;
|
|
71
|
-
fatal?: string | undefined;
|
|
72
85
|
positive?: string | undefined;
|
|
73
86
|
negative?: string | undefined;
|
|
87
|
+
foreground?: string | undefined;
|
|
88
|
+
background?: string | undefined;
|
|
74
89
|
};
|
|
75
|
-
} | {
|
|
76
|
-
brand?: string | undefined;
|
|
77
|
-
alternate?: string | undefined;
|
|
78
|
-
accent?: string | undefined;
|
|
79
|
-
link?: string | undefined;
|
|
80
|
-
help?: string | undefined;
|
|
81
|
-
success?: string | undefined;
|
|
82
|
-
info?: string | undefined;
|
|
83
|
-
warning?: string | undefined;
|
|
84
|
-
danger?: string | undefined;
|
|
85
|
-
fatal?: string | undefined;
|
|
86
|
-
positive?: string | undefined;
|
|
87
|
-
negative?: string | undefined;
|
|
88
|
-
dark?: string | undefined;
|
|
89
|
-
light?: string | undefined;
|
|
90
90
|
} | {
|
|
91
91
|
base: {
|
|
92
|
+
fatal?: string | undefined;
|
|
93
|
+
success?: string | undefined;
|
|
94
|
+
info?: string | undefined;
|
|
95
|
+
dark?: string | undefined;
|
|
96
|
+
light?: string | undefined;
|
|
97
|
+
brand?: string | undefined;
|
|
98
|
+
alternate?: string | undefined;
|
|
99
|
+
accent?: string | undefined;
|
|
100
|
+
link?: string | undefined;
|
|
101
|
+
help?: string | undefined;
|
|
102
|
+
warning?: string | undefined;
|
|
103
|
+
danger?: string | undefined;
|
|
104
|
+
positive?: string | undefined;
|
|
105
|
+
negative?: string | undefined;
|
|
106
|
+
} | {
|
|
92
107
|
dark: {
|
|
93
|
-
|
|
94
|
-
|
|
108
|
+
fatal?: string | undefined;
|
|
109
|
+
success?: string | undefined;
|
|
110
|
+
info?: string | undefined;
|
|
95
111
|
brand?: string | undefined;
|
|
96
112
|
alternate?: string | undefined;
|
|
97
113
|
accent?: string | undefined;
|
|
98
114
|
link?: string | undefined;
|
|
99
115
|
help?: string | undefined;
|
|
100
|
-
success?: string | undefined;
|
|
101
|
-
info?: string | undefined;
|
|
102
116
|
warning?: string | undefined;
|
|
103
117
|
danger?: string | undefined;
|
|
104
|
-
fatal?: string | undefined;
|
|
105
118
|
positive?: string | undefined;
|
|
106
119
|
negative?: string | undefined;
|
|
107
|
-
};
|
|
108
|
-
light: {
|
|
109
120
|
foreground?: string | undefined;
|
|
110
121
|
background?: string | undefined;
|
|
122
|
+
};
|
|
123
|
+
light: {
|
|
124
|
+
fatal?: string | undefined;
|
|
125
|
+
success?: string | undefined;
|
|
126
|
+
info?: string | undefined;
|
|
111
127
|
brand?: string | undefined;
|
|
112
128
|
alternate?: string | undefined;
|
|
113
129
|
accent?: string | undefined;
|
|
114
130
|
link?: string | undefined;
|
|
115
131
|
help?: string | undefined;
|
|
116
|
-
success?: string | undefined;
|
|
117
|
-
info?: string | undefined;
|
|
118
132
|
warning?: string | undefined;
|
|
119
133
|
danger?: string | undefined;
|
|
120
|
-
fatal?: string | undefined;
|
|
121
134
|
positive?: string | undefined;
|
|
122
135
|
negative?: string | undefined;
|
|
136
|
+
foreground?: string | undefined;
|
|
137
|
+
background?: string | undefined;
|
|
123
138
|
};
|
|
124
|
-
} | {
|
|
125
|
-
brand?: string | undefined;
|
|
126
|
-
alternate?: string | undefined;
|
|
127
|
-
accent?: string | undefined;
|
|
128
|
-
link?: string | undefined;
|
|
129
|
-
help?: string | undefined;
|
|
130
|
-
success?: string | undefined;
|
|
131
|
-
info?: string | undefined;
|
|
132
|
-
warning?: string | undefined;
|
|
133
|
-
danger?: string | undefined;
|
|
134
|
-
fatal?: string | undefined;
|
|
135
|
-
positive?: string | undefined;
|
|
136
|
-
negative?: string | undefined;
|
|
137
|
-
dark?: string | undefined;
|
|
138
|
-
light?: string | undefined;
|
|
139
139
|
};
|
|
140
140
|
} | Record<string, {
|
|
141
|
+
fatal?: string | undefined;
|
|
142
|
+
success?: string | undefined;
|
|
143
|
+
info?: string | undefined;
|
|
144
|
+
dark?: string | undefined;
|
|
145
|
+
light?: string | undefined;
|
|
146
|
+
brand?: string | undefined;
|
|
147
|
+
alternate?: string | undefined;
|
|
148
|
+
accent?: string | undefined;
|
|
149
|
+
link?: string | undefined;
|
|
150
|
+
help?: string | undefined;
|
|
151
|
+
warning?: string | undefined;
|
|
152
|
+
danger?: string | undefined;
|
|
153
|
+
positive?: string | undefined;
|
|
154
|
+
negative?: string | undefined;
|
|
155
|
+
} | {
|
|
141
156
|
dark: {
|
|
142
|
-
|
|
143
|
-
|
|
157
|
+
fatal?: string | undefined;
|
|
158
|
+
success?: string | undefined;
|
|
159
|
+
info?: string | undefined;
|
|
144
160
|
brand?: string | undefined;
|
|
145
161
|
alternate?: string | undefined;
|
|
146
162
|
accent?: string | undefined;
|
|
147
163
|
link?: string | undefined;
|
|
148
164
|
help?: string | undefined;
|
|
149
|
-
success?: string | undefined;
|
|
150
|
-
info?: string | undefined;
|
|
151
165
|
warning?: string | undefined;
|
|
152
166
|
danger?: string | undefined;
|
|
153
|
-
fatal?: string | undefined;
|
|
154
167
|
positive?: string | undefined;
|
|
155
168
|
negative?: string | undefined;
|
|
156
|
-
};
|
|
157
|
-
light: {
|
|
158
169
|
foreground?: string | undefined;
|
|
159
170
|
background?: string | undefined;
|
|
171
|
+
};
|
|
172
|
+
light: {
|
|
173
|
+
fatal?: string | undefined;
|
|
174
|
+
success?: string | undefined;
|
|
175
|
+
info?: string | undefined;
|
|
160
176
|
brand?: string | undefined;
|
|
161
177
|
alternate?: string | undefined;
|
|
162
178
|
accent?: string | undefined;
|
|
163
179
|
link?: string | undefined;
|
|
164
180
|
help?: string | undefined;
|
|
165
|
-
success?: string | undefined;
|
|
166
|
-
info?: string | undefined;
|
|
167
181
|
warning?: string | undefined;
|
|
168
182
|
danger?: string | undefined;
|
|
169
|
-
fatal?: string | undefined;
|
|
170
183
|
positive?: string | undefined;
|
|
171
184
|
negative?: string | undefined;
|
|
185
|
+
foreground?: string | undefined;
|
|
186
|
+
background?: string | undefined;
|
|
172
187
|
};
|
|
173
|
-
} | {
|
|
174
|
-
brand?: string | undefined;
|
|
175
|
-
alternate?: string | undefined;
|
|
176
|
-
accent?: string | undefined;
|
|
177
|
-
link?: string | undefined;
|
|
178
|
-
help?: string | undefined;
|
|
179
|
-
success?: string | undefined;
|
|
180
|
-
info?: string | undefined;
|
|
181
|
-
warning?: string | undefined;
|
|
182
|
-
danger?: string | undefined;
|
|
183
|
-
fatal?: string | undefined;
|
|
184
|
-
positive?: string | undefined;
|
|
185
|
-
negative?: string | undefined;
|
|
186
|
-
dark?: string | undefined;
|
|
187
|
-
light?: string | undefined;
|
|
188
188
|
}>;
|
|
189
|
-
name?: string | undefined;
|
|
190
189
|
$schema?: string | null | undefined;
|
|
191
190
|
extends?: string | string[] | undefined;
|
|
191
|
+
name?: string | undefined;
|
|
192
192
|
namespace?: string | undefined;
|
|
193
193
|
organization?: string | undefined;
|
|
194
194
|
repository?: string | undefined;
|
|
@@ -197,6 +197,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
197
197
|
docs?: string | undefined;
|
|
198
198
|
licensing?: string | undefined;
|
|
199
199
|
contact?: string | undefined;
|
|
200
|
+
support?: string | undefined;
|
|
200
201
|
branch?: string | undefined;
|
|
201
202
|
preid?: string | undefined;
|
|
202
203
|
owner?: string | undefined;
|
|
@@ -206,7 +207,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
206
207
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
207
208
|
timezone?: string | undefined;
|
|
208
209
|
locale?: string | undefined;
|
|
209
|
-
logLevel?: "
|
|
210
|
+
logLevel?: "error" | "silent" | "fatal" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
|
|
210
211
|
skipConfigLogging?: boolean | undefined;
|
|
211
212
|
registry?: {
|
|
212
213
|
github?: string | undefined;
|