@storm-software/config 1.112.20 → 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 CHANGED
@@ -2,6 +2,25 @@
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
+
17
+ ## [1.112.21](https://github.com/storm-software/storm-ops/releases/tag/config%401.112.21) (2025-04-10)
18
+
19
+ ### Miscellaneous
20
+
21
+ - **monorepo:** Regenerate README markdown files
22
+ ([82c74e006](https://github.com/storm-software/storm-ops/commit/82c74e006))
23
+
5
24
  ## [1.112.20](https://github.com/storm-software/storm-ops/releases/tag/config%401.112.20) (2025-04-09)
6
25
 
7
26
  ### 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
- [![Version](https://img.shields.io/badge/version-1.112.18-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-1.112.21-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
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-JXP4TNRB.js";
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(STORM_DEFAULT_RELEASE_BANNER).describe("The path to the workspace's error codes JSON file"),
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
- var _chunkVFB443BHcjs = require('./chunk-VFB443BH.cjs');
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(_chunkVFB443BHcjs.STORM_DEFAULT_RELEASE_BANNER).describe("A URL to a banner image used to display the workspace's release"),
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(_chunkVFB443BHcjs.STORM_DEFAULT_RELEASE_FOOTER).describe("A footer message appended to the end of the workspace's release notes")
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(_chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_TWITTER).describe("A Twitter/X account associated with the organization/project"),
112
- discord: _zod2.default.string().trim().default(_chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_DISCORD).describe("A Discord account associated with the organization/project"),
113
- telegram: _zod2.default.string().trim().default(_chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM).describe("A Telegram account associated with the organization/project"),
114
- slack: _zod2.default.string().trim().default(_chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_SLACK).describe("A Slack account associated with the organization/project"),
115
- medium: _zod2.default.string().trim().default(_chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_MEDIUM).describe("A Medium account associated with the organization/project"),
116
- github: _zod2.default.string().trim().default(_chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_GITHUB).describe("A GitHub account associated with the organization/project")
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(_chunkVFB443BHcjs.STORM_DEFAULT_RELEASE_BANNER).describe("The path to the workspace's error codes JSON file"),
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(_chunkVFB443BHcjs.STORM_DEFAULT_HOMEPAGE).describe("The homepage of the workspace"),
139
- docs: _zod2.default.string().trim().url().default(_chunkVFB443BHcjs.STORM_DEFAULT_DOCS).describe("The base documentation site for the workspace"),
140
- licensing: _zod2.default.string().trim().url().default(_chunkVFB443BHcjs.STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
141
- contact: _zod2.default.string().trim().url().default(_chunkVFB443BHcjs.STORM_DEFAULT_CONTACT).describe("The base contact site for the workspace"),
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,
@@ -13,7 +13,7 @@
13
13
 
14
14
 
15
15
 
16
- var _chunkVFB443BHcjs = require('./chunk-VFB443BH.cjs');
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 = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkVFB443BHcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkVFB443BHcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkVFB443BHcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkVFB443BHcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkVFB443BHcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkVFB443BHcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkVFB443BHcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkVFB443BHcjs.STORM_DEFAULT_RELEASE_FOOTER;
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;
@@ -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 };
@@ -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
@@ -13,7 +13,7 @@ import {
13
13
  STORM_DEFAULT_LICENSING,
14
14
  STORM_DEFAULT_RELEASE_BANNER,
15
15
  STORM_DEFAULT_RELEASE_FOOTER
16
- } from "./chunk-JXP4TNRB.js";
16
+ } from "./chunk-PQP7SKBB.js";
17
17
  import "./chunk-SHUYVCID.js";
18
18
  export {
19
19
  STORM_DEFAULT_ACCOUNT_DISCORD,
package/dist/index.cjs CHANGED
@@ -17,7 +17,7 @@ var _chunkSNJKI2QWcjs = require('./chunk-SNJKI2QW.cjs');
17
17
 
18
18
 
19
19
 
20
- var _chunkITLP7RTFcjs = require('./chunk-ITLP7RTF.cjs');
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 _chunkVFB443BHcjs = require('./chunk-VFB443BH.cjs');
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 = _chunkITLP7RTFcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkITLP7RTFcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkITLP7RTFcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkITLP7RTFcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkITLP7RTFcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkITLP7RTFcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkITLP7RTFcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkITLP7RTFcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkVFB443BHcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkVFB443BHcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkVFB443BHcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkVFB443BHcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkVFB443BHcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkVFB443BHcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkVFB443BHcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkVFB443BHcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.SingleThemeColorConfigSchema = _chunkITLP7RTFcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkITLP7RTFcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkITLP7RTFcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkITLP7RTFcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkITLP7RTFcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkSNJKI2QWcjs.defineConfig; exports.errorConfigSchema = _chunkITLP7RTFcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkITLP7RTFcjs.stormWorkspaceConfigSchema;
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-CIOGSYBE.js";
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-JXP4TNRB.js";
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 _chunkITLP7RTFcjs = require('./chunk-ITLP7RTF.cjs');
18
- require('./chunk-VFB443BH.cjs');
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 = _chunkITLP7RTFcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkITLP7RTFcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkITLP7RTFcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkITLP7RTFcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkITLP7RTFcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkITLP7RTFcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkITLP7RTFcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkITLP7RTFcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkITLP7RTFcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkITLP7RTFcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkITLP7RTFcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkITLP7RTFcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkITLP7RTFcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkITLP7RTFcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkITLP7RTFcjs.stormWorkspaceConfigSchema;
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-CIOGSYBE.js";
18
- import "./chunk-JXP4TNRB.js";
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.20",
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
@@ -13,7 +13,7 @@
13
13
  "build": "dist"
14
14
  },
15
15
  "error": {
16
- "codesFile": "errors/codes.json"
16
+ "codesFile": "tools/errors/codes.json"
17
17
  },
18
18
  "externalPackagePatterns": ["@storm-software/"],
19
19
  "registry": {
@@ -179,7 +179,7 @@
179
179
  "properties": {
180
180
  "codesFile": {
181
181
  "type": "string",
182
- "default": "https://public.storm-cdn.com/brand-banner.png",
182
+ "default": "tools/errors/codes.json",
183
183
  "description": "The path to the workspace's error codes JSON file"
184
184
  },
185
185
  "url": {
@@ -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";