@storm-software/config 1.112.24 → 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/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/dist/{chunk-BNIGJ2IO.js → chunk-NIKR5IAQ.js} +1 -1
- package/dist/{chunk-C2T4COFE.cjs → chunk-OKZCEIYK.cjs} +1 -1
- package/dist/define-config.d.cts +1 -1
- package/dist/define-config.d.ts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.js +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +2 -2
- package/dist/schema.d.ts +2 -2
- package/dist/schema.js +1 -1
- package/package.json +2 -1
- package/presets/base.json +0 -4
- package/presets/storm-software.json +54 -0
- package/src/define-config.d.ts +1 -1
- package/src/schema.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.112.25](https://github.com/storm-software/storm-ops/releases/tag/config%401.112.25) (2025-04-16)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([762e7076f](https://github.com/storm-software/storm-ops/commit/762e7076f))
|
|
11
|
+
|
|
5
12
|
## [1.112.24](https://github.com/storm-software/storm-ops/releases/tag/config%401.112.24) (2025-04-15)
|
|
6
13
|
|
|
7
14
|
### 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 -->
|
|
@@ -152,7 +152,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
152
152
|
"staging",
|
|
153
153
|
"production"
|
|
154
154
|
]).default("production").describe("The current runtime environment mode for the package"),
|
|
155
|
-
workspaceRoot: z.string().trim().
|
|
155
|
+
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
156
156
|
externalPackagePatterns: z.array(z.string()).default([]).describe("The build will use these package patterns to determine if they should be external to the bundle"),
|
|
157
157
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
158
158
|
directories: WorkspaceDirectoryConfigSchema,
|
|
@@ -152,7 +152,7 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
|
152
152
|
"staging",
|
|
153
153
|
"production"
|
|
154
154
|
]).default("production").describe("The current runtime environment mode for the package"),
|
|
155
|
-
workspaceRoot: _zod2.default.string().trim().
|
|
155
|
+
workspaceRoot: _zod2.default.string().trim().describe("The root directory of the workspace"),
|
|
156
156
|
externalPackagePatterns: _zod2.default.array(_zod2.default.string()).default([]).describe("The build will use these package patterns to determine if they should be external to the bundle"),
|
|
157
157
|
skipCache: _zod2.default.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
158
158
|
directories: WorkspaceDirectoryConfigSchema,
|
package/dist/define-config.d.cts
CHANGED
|
@@ -30,6 +30,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
30
30
|
codesFile?: string | undefined;
|
|
31
31
|
url?: string | undefined;
|
|
32
32
|
};
|
|
33
|
+
workspaceRoot: string;
|
|
33
34
|
directories: {
|
|
34
35
|
cache?: string | undefined;
|
|
35
36
|
data?: string | undefined;
|
|
@@ -200,7 +201,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
200
201
|
preid?: string | undefined;
|
|
201
202
|
owner?: string | undefined;
|
|
202
203
|
mode?: "development" | "staging" | "production" | undefined;
|
|
203
|
-
workspaceRoot?: string | undefined;
|
|
204
204
|
externalPackagePatterns?: string[] | undefined;
|
|
205
205
|
skipCache?: boolean | undefined;
|
|
206
206
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
30
30
|
codesFile?: string | undefined;
|
|
31
31
|
url?: string | undefined;
|
|
32
32
|
};
|
|
33
|
+
workspaceRoot: string;
|
|
33
34
|
directories: {
|
|
34
35
|
cache?: string | undefined;
|
|
35
36
|
data?: string | undefined;
|
|
@@ -200,7 +201,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
200
201
|
preid?: string | undefined;
|
|
201
202
|
owner?: string | undefined;
|
|
202
203
|
mode?: "development" | "staging" | "production" | undefined;
|
|
203
|
-
workspaceRoot?: string | undefined;
|
|
204
204
|
externalPackagePatterns?: string[] | undefined;
|
|
205
205
|
skipCache?: boolean | undefined;
|
|
206
206
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
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 _chunkOKZCEIYKcjs = require('./chunk-OKZCEIYK.cjs');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
@@ -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 = _chunkOKZCEIYKcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkOKZCEIYKcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkOKZCEIYKcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkOKZCEIYKcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkOKZCEIYKcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkOKZCEIYKcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkOKZCEIYKcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkOKZCEIYKcjs.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 = _chunkOKZCEIYKcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkOKZCEIYKcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkOKZCEIYKcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkOKZCEIYKcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkOKZCEIYKcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkSNJKI2QWcjs.defineConfig; exports.errorConfigSchema = _chunkOKZCEIYKcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkOKZCEIYKcjs.stormWorkspaceConfigSchema;
|
package/dist/index.js
CHANGED
package/dist/schema.cjs
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunkOKZCEIYKcjs = require('./chunk-OKZCEIYK.cjs');
|
|
18
18
|
require('./chunk-HAADVBHV.cjs');
|
|
19
19
|
require('./chunk-USNT2KNT.cjs');
|
|
20
20
|
|
|
@@ -33,4 +33,4 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
exports.ColorConfigMapSchema =
|
|
36
|
+
exports.ColorConfigMapSchema = _chunkOKZCEIYKcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkOKZCEIYKcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkOKZCEIYKcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkOKZCEIYKcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkOKZCEIYKcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkOKZCEIYKcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkOKZCEIYKcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkOKZCEIYKcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkOKZCEIYKcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkOKZCEIYKcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkOKZCEIYKcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkOKZCEIYKcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkOKZCEIYKcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkOKZCEIYKcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkOKZCEIYKcjs.stormWorkspaceConfigSchema;
|
package/dist/schema.d.cts
CHANGED
|
@@ -1189,7 +1189,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1189
1189
|
url?: string | undefined;
|
|
1190
1190
|
}>;
|
|
1191
1191
|
mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
|
|
1192
|
-
workspaceRoot: z.
|
|
1192
|
+
workspaceRoot: z.ZodString;
|
|
1193
1193
|
externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1194
1194
|
skipCache: z.ZodDefault<z.ZodBoolean>;
|
|
1195
1195
|
directories: z.ZodObject<{
|
|
@@ -2186,6 +2186,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2186
2186
|
codesFile?: string | undefined;
|
|
2187
2187
|
url?: string | undefined;
|
|
2188
2188
|
};
|
|
2189
|
+
workspaceRoot: string;
|
|
2189
2190
|
directories: {
|
|
2190
2191
|
cache?: string | undefined;
|
|
2191
2192
|
data?: string | undefined;
|
|
@@ -2356,7 +2357,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2356
2357
|
preid?: string | undefined;
|
|
2357
2358
|
owner?: string | undefined;
|
|
2358
2359
|
mode?: "development" | "staging" | "production" | undefined;
|
|
2359
|
-
workspaceRoot?: string | undefined;
|
|
2360
2360
|
externalPackagePatterns?: string[] | undefined;
|
|
2361
2361
|
skipCache?: boolean | undefined;
|
|
2362
2362
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
package/dist/schema.d.ts
CHANGED
|
@@ -1189,7 +1189,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1189
1189
|
url?: string | undefined;
|
|
1190
1190
|
}>;
|
|
1191
1191
|
mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
|
|
1192
|
-
workspaceRoot: z.
|
|
1192
|
+
workspaceRoot: z.ZodString;
|
|
1193
1193
|
externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1194
1194
|
skipCache: z.ZodDefault<z.ZodBoolean>;
|
|
1195
1195
|
directories: z.ZodObject<{
|
|
@@ -2186,6 +2186,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2186
2186
|
codesFile?: string | undefined;
|
|
2187
2187
|
url?: string | undefined;
|
|
2188
2188
|
};
|
|
2189
|
+
workspaceRoot: string;
|
|
2189
2190
|
directories: {
|
|
2190
2191
|
cache?: string | undefined;
|
|
2191
2192
|
data?: string | undefined;
|
|
@@ -2356,7 +2357,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
2356
2357
|
preid?: string | undefined;
|
|
2357
2358
|
owner?: string | undefined;
|
|
2358
2359
|
mode?: "development" | "staging" | "production" | undefined;
|
|
2359
|
-
workspaceRoot?: string | undefined;
|
|
2360
2360
|
externalPackagePatterns?: string[] | undefined;
|
|
2361
2361
|
skipCache?: boolean | undefined;
|
|
2362
2362
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
package/dist/schema.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.112.
|
|
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
|
+
}
|
package/src/define-config.d.ts
CHANGED
|
@@ -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.
|
|
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;
|