@storm-software/config 1.112.25 → 1.112.26

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/dist/schema.js CHANGED
@@ -14,7 +14,7 @@ import {
14
14
  WorkspaceReleaseConfigSchema,
15
15
  errorConfigSchema,
16
16
  stormWorkspaceConfigSchema
17
- } from "./chunk-BNIGJ2IO.js";
17
+ } from "./chunk-NIKR5IAQ.js";
18
18
  import "./chunk-PQP7SKBB.js";
19
19
  import "./chunk-SHUYVCID.js";
20
20
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.112.25",
3
+ "version": "1.112.26",
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": {
@@ -15,6 +15,7 @@
15
15
  "./package.json": "./package.json",
16
16
  "./schemas/storm.schema.json": "./schemas/storm.schema.json",
17
17
  "./presets/base.json": "./presets/base.json",
18
+ "./presets/storm-software.json": "./presets/storm-software.json",
18
19
  "./index": {
19
20
  "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
20
21
  "require": {
package/presets/base.json CHANGED
@@ -1,8 +1,5 @@
1
1
  {
2
2
  "$schema": "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json",
3
- "organization": "storm-software",
4
- "owner": "@storm-software/admin",
5
- "bot": { "name": "stormie-bot", "email": "bot@stormsoftware.com" },
6
3
  "mode": "production",
7
4
  "timezone": "America/New_York",
8
5
  "locale": "en-US",
@@ -15,7 +12,6 @@
15
12
  "error": {
16
13
  "codesFile": "tools/errors/codes.json"
17
14
  },
18
- "externalPackagePatterns": ["@storm-software/"],
19
15
  "registry": {
20
16
  "github": "https://npm.pkg.github.com",
21
17
  "npm": "https://registry.npmjs.org",
@@ -0,0 +1,54 @@
1
+ {
2
+ "$schema": "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json",
3
+ "organization": "storm-software",
4
+ "owner": "@storm-software/admin",
5
+ "bot": { "name": "stormie-bot", "email": "bot@stormsoftware.com" },
6
+ "mode": "production",
7
+ "timezone": "America/New_York",
8
+ "locale": "en-US",
9
+ "logLevel": "info",
10
+ "skipConfigLogging": true,
11
+ "skipCache": false,
12
+ "directories": {
13
+ "build": "dist"
14
+ },
15
+ "error": {
16
+ "codesFile": "tools/errors/codes.json"
17
+ },
18
+ "externalPackagePatterns": ["@storm-software/"],
19
+ "registry": {
20
+ "github": "https://npm.pkg.github.com",
21
+ "npm": "https://registry.npmjs.org",
22
+ "cargo": "https://crates.io",
23
+ "cyclone": "https://registry.cyclone-ui.com/components",
24
+ "container": "https://hub.docker.com"
25
+ },
26
+ "colors": {
27
+ "light": {
28
+ "background": "#fafafa",
29
+ "foreground": "#1d1e22",
30
+ "brand": "#1fb2a6",
31
+ "alternate": "#db2777",
32
+ "help": "#5C4EE5",
33
+ "success": "#087f5b",
34
+ "info": "#0550ae",
35
+ "warning": "#e3b341",
36
+ "danger": "#a40e26",
37
+ "positive": "#22c55e",
38
+ "negative": "#dc2626"
39
+ },
40
+ "dark": {
41
+ "background": "#1d1e22",
42
+ "foreground": "#cbd5e1",
43
+ "brand": "#1fb2a6",
44
+ "alternate": "#db2777",
45
+ "help": "#818cf8",
46
+ "success": "#12B66A",
47
+ "info": "#0070E0",
48
+ "warning": "#f3d371",
49
+ "danger": "#D8314A",
50
+ "positive": "#22c55e",
51
+ "negative": "#dc2626"
52
+ }
53
+ }
54
+ }
@@ -27,6 +27,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
27
27
  codesFile?: string | undefined;
28
28
  url?: string | undefined;
29
29
  };
30
+ workspaceRoot: string;
30
31
  directories: {
31
32
  cache?: string | undefined;
32
33
  data?: string | undefined;
@@ -197,7 +198,6 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
197
198
  preid?: string | undefined;
198
199
  owner?: string | undefined;
199
200
  mode?: "development" | "staging" | "production" | undefined;
200
- workspaceRoot?: string | undefined;
201
201
  externalPackagePatterns?: string[] | undefined;
202
202
  skipCache?: boolean | undefined;
203
203
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
package/src/schema.d.ts CHANGED
@@ -1188,7 +1188,7 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
1188
1188
  url?: string | undefined;
1189
1189
  }>;
1190
1190
  mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
1191
- workspaceRoot: z.ZodDefault<z.ZodString>;
1191
+ workspaceRoot: z.ZodString;
1192
1192
  externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
1193
1193
  skipCache: z.ZodDefault<z.ZodBoolean>;
1194
1194
  directories: z.ZodObject<{
@@ -2185,6 +2185,7 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
2185
2185
  codesFile?: string | undefined;
2186
2186
  url?: string | undefined;
2187
2187
  };
2188
+ workspaceRoot: string;
2188
2189
  directories: {
2189
2190
  cache?: string | undefined;
2190
2191
  data?: string | undefined;
@@ -2355,7 +2356,6 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
2355
2356
  preid?: string | undefined;
2356
2357
  owner?: string | undefined;
2357
2358
  mode?: "development" | "staging" | "production" | undefined;
2358
- workspaceRoot?: string | undefined;
2359
2359
  externalPackagePatterns?: string[] | undefined;
2360
2360
  skipCache?: boolean | undefined;
2361
2361
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;