@storm-software/config 1.112.21 → 1.112.22
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 +12 -0
- package/README.md +1 -1
- package/dist/{chunk-CIOGSYBE.js → chunk-BNIGJ2IO.js} +3 -2
- package/dist/{chunk-ITLP7RTF.cjs → chunk-C2T4COFE.cjs} +15 -14
- package/dist/{chunk-VFB443BH.cjs → chunk-HAADVBHV.cjs} +1 -1
- package/dist/{chunk-JXP4TNRB.js → chunk-PQP7SKBB.js} +1 -1
- package/dist/constants.cjs +2 -2
- package/dist/constants.d.cts +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.js +2 -2
- package/dist/schema.cjs +3 -3
- package/dist/schema.js +2 -2
- package/package.json +1 -1
- package/presets/base.json +1 -1
- package/schemas/storm-workspace.schema.json +1 -1
- package/src/constants.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.112.22](https://github.com/storm-software/storm-ops/releases/tag/config%401.112.22) (2025-04-15)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **config:** Resolve issue with incorrect error config path
|
|
10
|
+
([cbaabec82](https://github.com/storm-software/storm-ops/commit/cbaabec82))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Reformat README markdown files
|
|
15
|
+
([04b2bc7ed](https://github.com/storm-software/storm-ops/commit/04b2bc7ed))
|
|
16
|
+
|
|
5
17
|
## [1.112.21](https://github.com/storm-software/storm-ops/releases/tag/config%401.112.21) (2025-04-10)
|
|
6
18
|
|
|
7
19
|
### 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 -->
|
|
@@ -7,11 +7,12 @@ import {
|
|
|
7
7
|
STORM_DEFAULT_ACCOUNT_TWITTER,
|
|
8
8
|
STORM_DEFAULT_CONTACT,
|
|
9
9
|
STORM_DEFAULT_DOCS,
|
|
10
|
+
STORM_DEFAULT_ERROR_CODES_FILE,
|
|
10
11
|
STORM_DEFAULT_HOMEPAGE,
|
|
11
12
|
STORM_DEFAULT_LICENSING,
|
|
12
13
|
STORM_DEFAULT_RELEASE_BANNER,
|
|
13
14
|
STORM_DEFAULT_RELEASE_FOOTER
|
|
14
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-PQP7SKBB.js";
|
|
15
16
|
|
|
16
17
|
// src/schema.ts
|
|
17
18
|
import z from "zod";
|
|
@@ -124,7 +125,7 @@ var WorkspaceDirectoryConfigSchema = z.object({
|
|
|
124
125
|
build: z.string().trim().default("dist").describe("The directory used to store the workspace's distributable files after a build (relative to the workspace root)")
|
|
125
126
|
}).describe("Various directories used by the workspace to store data, cache, and configuration files");
|
|
126
127
|
var errorConfigSchema = z.object({
|
|
127
|
-
codesFile: z.string().trim().default(
|
|
128
|
+
codesFile: z.string().trim().default(STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
|
|
128
129
|
url: z.string().trim().url().optional().describe("A URL to a page that looks up the workspace's error messages given a specific error code")
|
|
129
130
|
}).describe("The workspace's error config used during the error process");
|
|
130
131
|
var stormWorkspaceConfigSchema = z.object({
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
|
|
15
|
+
var _chunkHAADVBHVcjs = require('./chunk-HAADVBHV.cjs');
|
|
15
16
|
|
|
16
17
|
// src/schema.ts
|
|
17
18
|
var _zod = require('zod'); var _zod2 = _interopRequireDefault(_zod);
|
|
@@ -103,17 +104,17 @@ var WorkspaceBotConfigSchema = _zod2.default.object({
|
|
|
103
104
|
email: _zod2.default.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
|
|
104
105
|
}).describe("The workspace's bot user's config used to automated various operations tasks");
|
|
105
106
|
var WorkspaceReleaseConfigSchema = _zod2.default.object({
|
|
106
|
-
banner: _zod2.default.string().trim().default(
|
|
107
|
+
banner: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_BANNER).describe("A URL to a banner image used to display the workspace's release"),
|
|
107
108
|
header: _zod2.default.string().trim().optional().describe("A header message appended to the start of the workspace's release notes"),
|
|
108
|
-
footer: _zod2.default.string().trim().default(
|
|
109
|
+
footer: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_FOOTER).describe("A footer message appended to the end of the workspace's release notes")
|
|
109
110
|
}).describe("The workspace's release config used during the release process");
|
|
110
111
|
var WorkspaceAccountConfigSchema = _zod2.default.object({
|
|
111
|
-
twitter: _zod2.default.string().trim().default(
|
|
112
|
-
discord: _zod2.default.string().trim().default(
|
|
113
|
-
telegram: _zod2.default.string().trim().default(
|
|
114
|
-
slack: _zod2.default.string().trim().default(
|
|
115
|
-
medium: _zod2.default.string().trim().default(
|
|
116
|
-
github: _zod2.default.string().trim().default(
|
|
112
|
+
twitter: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TWITTER).describe("A Twitter/X account associated with the organization/project"),
|
|
113
|
+
discord: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_DISCORD).describe("A Discord account associated with the organization/project"),
|
|
114
|
+
telegram: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM).describe("A Telegram account associated with the organization/project"),
|
|
115
|
+
slack: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_SLACK).describe("A Slack account associated with the organization/project"),
|
|
116
|
+
medium: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_MEDIUM).describe("A Medium account associated with the organization/project"),
|
|
117
|
+
github: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_GITHUB).describe("A GitHub account associated with the organization/project")
|
|
117
118
|
}).describe("The workspace's account config used to store various social media links");
|
|
118
119
|
var WorkspaceDirectoryConfigSchema = _zod2.default.object({
|
|
119
120
|
cache: _zod2.default.string().trim().optional().describe("The directory used to store the environment's cached file data"),
|
|
@@ -124,7 +125,7 @@ var WorkspaceDirectoryConfigSchema = _zod2.default.object({
|
|
|
124
125
|
build: _zod2.default.string().trim().default("dist").describe("The directory used to store the workspace's distributable files after a build (relative to the workspace root)")
|
|
125
126
|
}).describe("Various directories used by the workspace to store data, cache, and configuration files");
|
|
126
127
|
var errorConfigSchema = _zod2.default.object({
|
|
127
|
-
codesFile: _zod2.default.string().trim().default(
|
|
128
|
+
codesFile: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
|
|
128
129
|
url: _zod2.default.string().trim().url().optional().describe("A URL to a page that looks up the workspace's error messages given a specific error code")
|
|
129
130
|
}).describe("The workspace's error config used during the error process");
|
|
130
131
|
var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
@@ -135,10 +136,10 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
|
135
136
|
organization: _zod2.default.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
136
137
|
repository: _zod2.default.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
137
138
|
license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
138
|
-
homepage: _zod2.default.string().trim().url().default(
|
|
139
|
-
docs: _zod2.default.string().trim().url().default(
|
|
140
|
-
licensing: _zod2.default.string().trim().url().default(
|
|
141
|
-
contact: _zod2.default.string().trim().url().default(
|
|
139
|
+
homepage: _zod2.default.string().trim().url().default(_chunkHAADVBHVcjs.STORM_DEFAULT_HOMEPAGE).describe("The homepage of the workspace"),
|
|
140
|
+
docs: _zod2.default.string().trim().url().default(_chunkHAADVBHVcjs.STORM_DEFAULT_DOCS).describe("The base documentation site for the workspace"),
|
|
141
|
+
licensing: _zod2.default.string().trim().url().default(_chunkHAADVBHVcjs.STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
142
|
+
contact: _zod2.default.string().trim().url().default(_chunkHAADVBHVcjs.STORM_DEFAULT_CONTACT).describe("The base contact site for the workspace"),
|
|
142
143
|
branch: _zod2.default.string().trim().default("main").describe("The branch of the workspace"),
|
|
143
144
|
preid: _zod2.default.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
144
145
|
owner: _zod2.default.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
@@ -18,7 +18,7 @@ Join us on [Discord](${STORM_DEFAULT_ACCOUNT_DISCORD}) to chat with the team, re
|
|
|
18
18
|
|
|
19
19
|
If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](${STORM_DEFAULT_CONTACT}) or join our [Slack](${STORM_DEFAULT_ACCOUNT_SLACK}) channel!
|
|
20
20
|
`;
|
|
21
|
-
var STORM_DEFAULT_ERROR_CODES_FILE = "errors/codes.json";
|
|
21
|
+
var STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -18,7 +18,7 @@ Join us on [Discord](${STORM_DEFAULT_ACCOUNT_DISCORD}) to chat with the team, re
|
|
|
18
18
|
|
|
19
19
|
If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](${STORM_DEFAULT_CONTACT}) or join our [Slack](${STORM_DEFAULT_ACCOUNT_SLACK}) channel!
|
|
20
20
|
`;
|
|
21
|
-
var STORM_DEFAULT_ERROR_CODES_FILE = "errors/codes.json";
|
|
21
|
+
var STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
22
22
|
|
|
23
23
|
export {
|
|
24
24
|
STORM_DEFAULT_DOCS,
|
package/dist/constants.cjs
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
16
|
+
var _chunkHAADVBHVcjs = require('./chunk-HAADVBHV.cjs');
|
|
17
17
|
require('./chunk-USNT2KNT.cjs');
|
|
18
18
|
|
|
19
19
|
|
|
@@ -30,4 +30,4 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
exports.STORM_DEFAULT_ACCOUNT_DISCORD =
|
|
33
|
+
exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkHAADVBHVcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkHAADVBHVcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkHAADVBHVcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkHAADVBHVcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkHAADVBHVcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkHAADVBHVcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_FOOTER;
|
package/dist/constants.d.cts
CHANGED
|
@@ -11,6 +11,6 @@ declare const STORM_DEFAULT_ACCOUNT_SLACK = "https://join.slack.com/t/storm-soft
|
|
|
11
11
|
declare const STORM_DEFAULT_ACCOUNT_MEDIUM = "https://medium.com/storm-software";
|
|
12
12
|
declare const STORM_DEFAULT_ACCOUNT_GITHUB = "https://github.com/storm-software";
|
|
13
13
|
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
|
-
declare const STORM_DEFAULT_ERROR_CODES_FILE = "errors/codes.json";
|
|
14
|
+
declare const STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
15
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 };
|
package/dist/constants.d.ts
CHANGED
|
@@ -11,6 +11,6 @@ declare const STORM_DEFAULT_ACCOUNT_SLACK = "https://join.slack.com/t/storm-soft
|
|
|
11
11
|
declare const STORM_DEFAULT_ACCOUNT_MEDIUM = "https://medium.com/storm-software";
|
|
12
12
|
declare const STORM_DEFAULT_ACCOUNT_GITHUB = "https://github.com/storm-software";
|
|
13
13
|
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
|
-
declare const STORM_DEFAULT_ERROR_CODES_FILE = "errors/codes.json";
|
|
14
|
+
declare const STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
15
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 };
|
package/dist/constants.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -17,7 +17,7 @@ var _chunkSNJKI2QWcjs = require('./chunk-SNJKI2QW.cjs');
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkC2T4COFEcjs = require('./chunk-C2T4COFE.cjs');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
@@ -33,7 +33,7 @@ var _chunkITLP7RTFcjs = require('./chunk-ITLP7RTF.cjs');
|
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
var
|
|
36
|
+
var _chunkHAADVBHVcjs = require('./chunk-HAADVBHV.cjs');
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
|
|
@@ -70,4 +70,4 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
|
|
73
|
-
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema =
|
|
73
|
+
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkC2T4COFEcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkC2T4COFEcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkC2T4COFEcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkC2T4COFEcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkC2T4COFEcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkC2T4COFEcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkC2T4COFEcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkC2T4COFEcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkHAADVBHVcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkHAADVBHVcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkHAADVBHVcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkHAADVBHVcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkHAADVBHVcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkHAADVBHVcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.SingleThemeColorConfigSchema = _chunkC2T4COFEcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkC2T4COFEcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkC2T4COFEcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkC2T4COFEcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkC2T4COFEcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkSNJKI2QWcjs.defineConfig; exports.errorConfigSchema = _chunkC2T4COFEcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkC2T4COFEcjs.stormWorkspaceConfigSchema;
|
package/dist/index.js
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
WorkspaceReleaseConfigSchema,
|
|
18
18
|
errorConfigSchema,
|
|
19
19
|
stormWorkspaceConfigSchema
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-BNIGJ2IO.js";
|
|
21
21
|
import {
|
|
22
22
|
STORM_DEFAULT_ACCOUNT_DISCORD,
|
|
23
23
|
STORM_DEFAULT_ACCOUNT_GITHUB,
|
|
@@ -33,7 +33,7 @@ import {
|
|
|
33
33
|
STORM_DEFAULT_LICENSING,
|
|
34
34
|
STORM_DEFAULT_RELEASE_BANNER,
|
|
35
35
|
STORM_DEFAULT_RELEASE_FOOTER
|
|
36
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-PQP7SKBB.js";
|
|
37
37
|
import {
|
|
38
38
|
COLOR_KEYS
|
|
39
39
|
} from "./chunk-HFZRRAQB.js";
|
package/dist/schema.cjs
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
18
|
-
require('./chunk-
|
|
17
|
+
var _chunkC2T4COFEcjs = require('./chunk-C2T4COFE.cjs');
|
|
18
|
+
require('./chunk-HAADVBHV.cjs');
|
|
19
19
|
require('./chunk-USNT2KNT.cjs');
|
|
20
20
|
|
|
21
21
|
|
|
@@ -33,4 +33,4 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
exports.ColorConfigMapSchema =
|
|
36
|
+
exports.ColorConfigMapSchema = _chunkC2T4COFEcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkC2T4COFEcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkC2T4COFEcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkC2T4COFEcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkC2T4COFEcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkC2T4COFEcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkC2T4COFEcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkC2T4COFEcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkC2T4COFEcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkC2T4COFEcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkC2T4COFEcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkC2T4COFEcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkC2T4COFEcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkC2T4COFEcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkC2T4COFEcjs.stormWorkspaceConfigSchema;
|
package/dist/schema.js
CHANGED
|
@@ -14,8 +14,8 @@ import {
|
|
|
14
14
|
WorkspaceReleaseConfigSchema,
|
|
15
15
|
errorConfigSchema,
|
|
16
16
|
stormWorkspaceConfigSchema
|
|
17
|
-
} from "./chunk-
|
|
18
|
-
import "./chunk-
|
|
17
|
+
} from "./chunk-BNIGJ2IO.js";
|
|
18
|
+
import "./chunk-PQP7SKBB.js";
|
|
19
19
|
import "./chunk-SHUYVCID.js";
|
|
20
20
|
export {
|
|
21
21
|
ColorConfigMapSchema,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.112.
|
|
3
|
+
"version": "1.112.22",
|
|
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": {
|
package/presets/base.json
CHANGED
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
"properties": {
|
|
180
180
|
"codesFile": {
|
|
181
181
|
"type": "string",
|
|
182
|
-
"default": "
|
|
182
|
+
"default": "tools/errors/codes.json",
|
|
183
183
|
"description": "The path to the workspace's error codes JSON file"
|
|
184
184
|
},
|
|
185
185
|
"url": {
|
package/src/constants.d.ts
CHANGED
|
@@ -11,4 +11,4 @@ export declare const STORM_DEFAULT_ACCOUNT_SLACK = "https://join.slack.com/t/sto
|
|
|
11
11
|
export declare const STORM_DEFAULT_ACCOUNT_MEDIUM = "https://medium.com/storm-software";
|
|
12
12
|
export declare const STORM_DEFAULT_ACCOUNT_GITHUB = "https://github.com/storm-software";
|
|
13
13
|
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";
|
|
14
|
-
export declare const STORM_DEFAULT_ERROR_CODES_FILE = "errors/codes.json";
|
|
14
|
+
export declare const STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|