@storm-software/config 1.103.5 → 1.104.1

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
@@ -1,3 +1,15 @@
1
+ ## 1.104.1 (2025-03-01)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **eslint:** Remove `includeTransitiveDependencies` from Nx linting rules ([2f442eabb](https://github.com/storm-software/storm-ops/commit/2f442eabb))
6
+
7
+ ## 1.104.0 (2025-03-01)
8
+
9
+ ### Features
10
+
11
+ - **monorepo:** Update the repository to use new `stormie-bot` user name and email ([316385be6](https://github.com/storm-software/storm-ops/commit/316385be6))
12
+
1
13
  ## 1.103.5 (2025-02-26)
2
14
 
3
15
  ### 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.103.4-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.104.0-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 -->
@@ -90,7 +90,7 @@ var ColorConfigMapSchema = z.union([
90
90
  var ExtendsItemSchema = z.string().trim().describe("The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration.");
91
91
  var ExtendsSchema = ExtendsItemSchema.or(z.array(ExtendsItemSchema)).describe("The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration.");
92
92
  var WorkspaceBotConfigSchema = z.object({
93
- name: z.string().trim().default("Stormie-Bot").describe("The workspace bot user's name (this is the bot that will be used to perform various tasks)"),
93
+ name: z.string().trim().default("stormie-bot").describe("The workspace bot user's name (this is the bot that will be used to perform various tasks)"),
94
94
  email: z.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
95
95
  }).describe("The workspace's bot user's config used to automated various operations tasks");
96
96
  var WorkspaceDirectoryConfigSchema = z.object({
@@ -90,7 +90,7 @@ var ColorConfigMapSchema = _zod2.default.union([
90
90
  var ExtendsItemSchema = _zod2.default.string().trim().describe("The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration.");
91
91
  var ExtendsSchema = ExtendsItemSchema.or(_zod2.default.array(ExtendsItemSchema)).describe("The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration.");
92
92
  var WorkspaceBotConfigSchema = _zod2.default.object({
93
- name: _zod2.default.string().trim().default("Stormie-Bot").describe("The workspace bot user's name (this is the bot that will be used to perform various tasks)"),
93
+ name: _zod2.default.string().trim().default("stormie-bot").describe("The workspace bot user's name (this is the bot that will be used to perform various tasks)"),
94
94
  email: _zod2.default.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
95
95
  }).describe("The workspace's bot user's config used to automated various operations tasks");
96
96
  var WorkspaceDirectoryConfigSchema = _zod2.default.object({
package/dist/index.cjs CHANGED
@@ -14,7 +14,7 @@ var _chunkSNJKI2QWcjs = require('./chunk-SNJKI2QW.cjs');
14
14
 
15
15
 
16
16
 
17
- var _chunkKBXJ7YRCcjs = require('./chunk-KBXJ7YRC.cjs');
17
+ var _chunkJNZ6APQ5cjs = require('./chunk-JNZ6APQ5.cjs');
18
18
 
19
19
 
20
20
 
@@ -44,4 +44,4 @@ require('./chunk-USNT2KNT.cjs');
44
44
 
45
45
 
46
46
 
47
- exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkKBXJ7YRCcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkKBXJ7YRCcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkKBXJ7YRCcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkKBXJ7YRCcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkKBXJ7YRCcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkKBXJ7YRCcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkKBXJ7YRCcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkKBXJ7YRCcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_DOCS = _chunkAVMOBJJQcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = _chunkAVMOBJJQcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkAVMOBJJQcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkAVMOBJJQcjs.STORM_DEFAULT_LICENSING; exports.SingleThemeColorConfigSchema = _chunkKBXJ7YRCcjs.SingleThemeColorConfigSchema; exports.StormConfigSchema = _chunkKBXJ7YRCcjs.StormConfigSchema; exports.WorkspaceBotConfigSchema = _chunkKBXJ7YRCcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkKBXJ7YRCcjs.WorkspaceDirectoryConfigSchema; exports.defineConfig = _chunkSNJKI2QWcjs.defineConfig;
47
+ exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkJNZ6APQ5cjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkJNZ6APQ5cjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkJNZ6APQ5cjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkJNZ6APQ5cjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkJNZ6APQ5cjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkJNZ6APQ5cjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkJNZ6APQ5cjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkJNZ6APQ5cjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_DOCS = _chunkAVMOBJJQcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = _chunkAVMOBJJQcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkAVMOBJJQcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkAVMOBJJQcjs.STORM_DEFAULT_LICENSING; exports.SingleThemeColorConfigSchema = _chunkJNZ6APQ5cjs.SingleThemeColorConfigSchema; exports.StormConfigSchema = _chunkJNZ6APQ5cjs.StormConfigSchema; exports.WorkspaceBotConfigSchema = _chunkJNZ6APQ5cjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkJNZ6APQ5cjs.WorkspaceDirectoryConfigSchema; exports.defineConfig = _chunkSNJKI2QWcjs.defineConfig;
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ import {
14
14
  StormConfigSchema,
15
15
  WorkspaceBotConfigSchema,
16
16
  WorkspaceDirectoryConfigSchema
17
- } from "./chunk-VSSMITCV.js";
17
+ } from "./chunk-ARJWLQIE.js";
18
18
  import {
19
19
  STORM_DEFAULT_DOCS,
20
20
  STORM_DEFAULT_HOMEPAGE,
package/dist/schema.cjs CHANGED
@@ -11,7 +11,7 @@
11
11
 
12
12
 
13
13
 
14
- var _chunkKBXJ7YRCcjs = require('./chunk-KBXJ7YRC.cjs');
14
+ var _chunkJNZ6APQ5cjs = require('./chunk-JNZ6APQ5.cjs');
15
15
  require('./chunk-AVMOBJJQ.cjs');
16
16
  require('./chunk-USNT2KNT.cjs');
17
17
 
@@ -27,4 +27,4 @@ require('./chunk-USNT2KNT.cjs');
27
27
 
28
28
 
29
29
 
30
- exports.ColorConfigMapSchema = _chunkKBXJ7YRCcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkKBXJ7YRCcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkKBXJ7YRCcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkKBXJ7YRCcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkKBXJ7YRCcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkKBXJ7YRCcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkKBXJ7YRCcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkKBXJ7YRCcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkKBXJ7YRCcjs.SingleThemeColorConfigSchema; exports.StormConfigSchema = _chunkKBXJ7YRCcjs.StormConfigSchema; exports.WorkspaceBotConfigSchema = _chunkKBXJ7YRCcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkKBXJ7YRCcjs.WorkspaceDirectoryConfigSchema;
30
+ exports.ColorConfigMapSchema = _chunkJNZ6APQ5cjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkJNZ6APQ5cjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkJNZ6APQ5cjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkJNZ6APQ5cjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkJNZ6APQ5cjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkJNZ6APQ5cjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkJNZ6APQ5cjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkJNZ6APQ5cjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkJNZ6APQ5cjs.SingleThemeColorConfigSchema; exports.StormConfigSchema = _chunkJNZ6APQ5cjs.StormConfigSchema; exports.WorkspaceBotConfigSchema = _chunkJNZ6APQ5cjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkJNZ6APQ5cjs.WorkspaceDirectoryConfigSchema;
package/dist/schema.js CHANGED
@@ -11,7 +11,7 @@ import {
11
11
  StormConfigSchema,
12
12
  WorkspaceBotConfigSchema,
13
13
  WorkspaceDirectoryConfigSchema
14
- } from "./chunk-VSSMITCV.js";
14
+ } from "./chunk-ARJWLQIE.js";
15
15
  import "./chunk-PQYQEEST.js";
16
16
  import "./chunk-SHUYVCID.js";
17
17
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.103.5",
3
+ "version": "1.104.1",
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
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json",
3
3
  "organization": "storm-software",
4
4
  "owner": "@storm-software/admin",
5
- "bot": { "name": "Stormie-Bot", "email": "bot@stormsoftware.com" },
5
+ "bot": { "name": "stormie-bot", "email": "bot@stormsoftware.com" },
6
6
  "mode": "production",
7
7
  "timezone": "America/New_York",
8
8
  "locale": "en-US",
@@ -97,7 +97,7 @@
97
97
  "properties": {
98
98
  "name": {
99
99
  "type": "string",
100
- "default": "Stormie-Bot",
100
+ "default": "stormie-bot",
101
101
  "description": "The workspace bot user's name (this is the bot that will be used to perform various tasks)"
102
102
  },
103
103
  "email": {
@@ -112,11 +112,7 @@
112
112
  },
113
113
  "mode": {
114
114
  "type": "string",
115
- "enum": [
116
- "development",
117
- "staging",
118
- "production"
119
- ],
115
+ "enum": ["development", "staging", "production"],
120
116
  "default": "production",
121
117
  "description": "The current runtime environment mode for the package"
122
118
  },
@@ -172,12 +168,7 @@
172
168
  },
173
169
  "packageManager": {
174
170
  "type": "string",
175
- "enum": [
176
- "npm",
177
- "yarn",
178
- "pnpm",
179
- "bun"
180
- ],
171
+ "enum": ["npm", "yarn", "pnpm", "bun"],
181
172
  "default": "npm",
182
173
  "description": "The JavaScript/TypeScript package manager used by the repository"
183
174
  },
@@ -466,10 +457,7 @@
466
457
  "additionalProperties": false
467
458
  }
468
459
  },
469
- "required": [
470
- "dark",
471
- "light"
472
- ],
460
+ "required": ["dark", "light"],
473
461
  "additionalProperties": false
474
462
  }
475
463
  ],
@@ -484,9 +472,7 @@
484
472
  "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0"
485
473
  }
486
474
  },
487
- "required": [
488
- "base"
489
- ],
475
+ "required": ["base"],
490
476
  "additionalProperties": false
491
477
  },
492
478
  {
@@ -507,11 +493,7 @@
507
493
  "description": "Configuration of each used extension"
508
494
  }
509
495
  },
510
- "required": [
511
- "bot",
512
- "directories",
513
- "colors"
514
- ],
496
+ "required": ["bot", "directories", "colors"],
515
497
  "additionalProperties": false,
516
498
  "description": "Storm Workspace config values used during various dev-ops processes. This type is a combination of the StormPackageConfig and StormProject types. It represents the config of the entire monorepo."
517
499
  }