@storm-software/build-tools 0.153.12 → 0.153.14
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/README.md +1 -1
- package/dist/{chunk-6TUKWOFJ.mjs → chunk-4UACS7QB.mjs} +12 -0
- package/dist/{chunk-QPVZKJM7.js → chunk-C46ZCHDM.js} +12 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/dist/{types-BL-PZK84.d.mts → types-TuitE_fJ.d.mts} +4 -0
- package/dist/{types-BL-PZK84.d.ts → types-TuitE_fJ.d.ts} +4 -0
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/utilities/copy-assets.d.mts +1 -1
- package/dist/utilities/copy-assets.d.ts +1 -1
- package/dist/utilities/generate-package-json.d.mts +1 -1
- package/dist/utilities/generate-package-json.d.ts +1 -1
- package/dist/utilities/get-entry-points.d.mts +1 -1
- package/dist/utilities/get-entry-points.d.ts +1 -1
- package/dist/utilities/get-env.d.mts +1 -1
- package/dist/utilities/get-env.d.ts +1 -1
- package/dist/utilities/index.d.mts +1 -1
- package/dist/utilities/index.d.ts +1 -1
- package/dist/utilities/index.js +2 -2
- package/dist/utilities/index.mjs +1 -1
- package/dist/utilities/read-nx-config.js +2 -2
- package/dist/utilities/read-nx-config.mjs +1 -1
- package/package.json +2 -2
- package/dist/types-B9d4_BzW.d.mts +0 -226
- package/dist/types-B9d4_BzW.d.ts +0 -226
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 -->
|
|
@@ -350,6 +350,13 @@ var workspaceDirectorySchema = z.object({
|
|
|
350
350
|
schemaRegistry.add(workspaceDirectorySchema, {
|
|
351
351
|
description: "Various directories used by the workspace to store data, cache, and configuration files"
|
|
352
352
|
});
|
|
353
|
+
var variantSchema = z._default(
|
|
354
|
+
z.enum(["minimal", "monorepo"]),
|
|
355
|
+
"monorepo"
|
|
356
|
+
);
|
|
357
|
+
schemaRegistry.add(variantSchema, {
|
|
358
|
+
description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
|
|
359
|
+
});
|
|
353
360
|
var errorCodesFileSchema = z._default(
|
|
354
361
|
z.string().check(z.trim()),
|
|
355
362
|
STORM_DEFAULT_ERROR_CODES_FILE
|
|
@@ -547,6 +554,7 @@ var workspaceConfigSchema = z.object({
|
|
|
547
554
|
$schema: schemaNameSchema,
|
|
548
555
|
extends: extendsSchema,
|
|
549
556
|
name: nameSchema,
|
|
557
|
+
variant: variantSchema,
|
|
550
558
|
namespace: namespaceSchema,
|
|
551
559
|
organization: orgSchema,
|
|
552
560
|
repository: repositorySchema,
|
|
@@ -785,6 +793,7 @@ var getConfigEnv = () => {
|
|
|
785
793
|
let config = {
|
|
786
794
|
extends: process.env[`${prefix}EXTENDS`] || void 0,
|
|
787
795
|
name: process.env[`${prefix}NAME`] || void 0,
|
|
796
|
+
variant: process.env[`${prefix}VARIANT`] || void 0,
|
|
788
797
|
namespace: process.env[`${prefix}NAMESPACE`] || void 0,
|
|
789
798
|
owner: process.env[`${prefix}OWNER`] || void 0,
|
|
790
799
|
bot: {
|
|
@@ -1009,6 +1018,9 @@ var setConfigEnv = (config) => {
|
|
|
1009
1018
|
if (config.name) {
|
|
1010
1019
|
process.env[`${prefix}NAME`] = config.name;
|
|
1011
1020
|
}
|
|
1021
|
+
if (config.variant) {
|
|
1022
|
+
process.env[`${prefix}VARIANT`] = config.variant;
|
|
1023
|
+
}
|
|
1012
1024
|
if (config.namespace) {
|
|
1013
1025
|
process.env[`${prefix}NAMESPACE`] = config.namespace;
|
|
1014
1026
|
}
|
|
@@ -350,6 +350,13 @@ var workspaceDirectorySchema = z.object({
|
|
|
350
350
|
schemaRegistry.add(workspaceDirectorySchema, {
|
|
351
351
|
description: "Various directories used by the workspace to store data, cache, and configuration files"
|
|
352
352
|
});
|
|
353
|
+
var variantSchema = z._default(
|
|
354
|
+
z.enum(["minimal", "monorepo"]),
|
|
355
|
+
"monorepo"
|
|
356
|
+
);
|
|
357
|
+
schemaRegistry.add(variantSchema, {
|
|
358
|
+
description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
|
|
359
|
+
});
|
|
353
360
|
var errorCodesFileSchema = z._default(
|
|
354
361
|
z.string().check(z.trim()),
|
|
355
362
|
STORM_DEFAULT_ERROR_CODES_FILE
|
|
@@ -547,6 +554,7 @@ var workspaceConfigSchema = z.object({
|
|
|
547
554
|
$schema: schemaNameSchema,
|
|
548
555
|
extends: extendsSchema,
|
|
549
556
|
name: nameSchema,
|
|
557
|
+
variant: variantSchema,
|
|
550
558
|
namespace: namespaceSchema,
|
|
551
559
|
organization: orgSchema,
|
|
552
560
|
repository: repositorySchema,
|
|
@@ -785,6 +793,7 @@ var getConfigEnv = () => {
|
|
|
785
793
|
let config = {
|
|
786
794
|
extends: process.env[`${prefix}EXTENDS`] || void 0,
|
|
787
795
|
name: process.env[`${prefix}NAME`] || void 0,
|
|
796
|
+
variant: process.env[`${prefix}VARIANT`] || void 0,
|
|
788
797
|
namespace: process.env[`${prefix}NAMESPACE`] || void 0,
|
|
789
798
|
owner: process.env[`${prefix}OWNER`] || void 0,
|
|
790
799
|
bot: {
|
|
@@ -1009,6 +1018,9 @@ var setConfigEnv = (config) => {
|
|
|
1009
1018
|
if (config.name) {
|
|
1010
1019
|
process.env[`${prefix}NAME`] = config.name;
|
|
1011
1020
|
}
|
|
1021
|
+
if (config.variant) {
|
|
1022
|
+
process.env[`${prefix}VARIANT`] = config.variant;
|
|
1023
|
+
}
|
|
1012
1024
|
if (config.namespace) {
|
|
1013
1025
|
process.env[`${prefix}NAMESPACE`] = config.namespace;
|
|
1014
1026
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -14,7 +14,7 @@ export { getExternalDependencies, getExtraDependencies, getInternalDependencies
|
|
|
14
14
|
export { readNxConfig } from './utilities/read-nx-config.mjs';
|
|
15
15
|
export { createTaskId, getAllWorkspaceTaskGraphs } from './utilities/task-graph.mjs';
|
|
16
16
|
import 'rollup';
|
|
17
|
-
import './types-
|
|
17
|
+
import './types-TuitE_fJ.mjs';
|
|
18
18
|
import 'zod';
|
|
19
19
|
import 'zod/mini';
|
|
20
20
|
import '@nx/devkit';
|
package/dist/index.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export { getExternalDependencies, getExtraDependencies, getInternalDependencies
|
|
|
14
14
|
export { readNxConfig } from './utilities/read-nx-config.js';
|
|
15
15
|
export { createTaskId, getAllWorkspaceTaskGraphs } from './utilities/task-graph.js';
|
|
16
16
|
import 'rollup';
|
|
17
|
-
import './types-
|
|
17
|
+
import './types-TuitE_fJ.js';
|
|
18
18
|
import 'zod';
|
|
19
19
|
import 'zod/mini';
|
|
20
20
|
import '@nx/devkit';
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-65HIHTHN.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkC46ZCHDMjs = require('./chunk-C46ZCHDM.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -81,4 +81,4 @@ var _chunkN7HP2YYEjs = require('./chunk-N7HP2YYE.js');
|
|
|
81
81
|
|
|
82
82
|
|
|
83
83
|
|
|
84
|
-
exports.DEFAULT_COMPILED_BANNER = _chunkMYIXHZMSjs.DEFAULT_COMPILED_BANNER; exports.DEFAULT_ENVIRONMENT = _chunkMYIXHZMSjs.DEFAULT_ENVIRONMENT; exports.DEFAULT_ORGANIZATION = _chunkMYIXHZMSjs.DEFAULT_ORGANIZATION; exports.DEFAULT_PLATFORM = _chunkMYIXHZMSjs.DEFAULT_PLATFORM; exports.DEFAULT_TARGET = _chunkMYIXHZMSjs.DEFAULT_TARGET; exports.addPackageDependencies = _chunkWBSHEDA6js.addPackageDependencies; exports.addPackageJsonExport = _chunkWBSHEDA6js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWBSHEDA6js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWBSHEDA6js.addWorkspacePackageJsonFields; exports.analyze = _chunkFCNQFEENjs.analyze; exports.copyAssets = _chunkBP4NPFBZjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunk35Z5ZVARjs.getEntryPoints; exports.getEnv = _chunkWLW3DA6Xjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig =
|
|
84
|
+
exports.DEFAULT_COMPILED_BANNER = _chunkMYIXHZMSjs.DEFAULT_COMPILED_BANNER; exports.DEFAULT_ENVIRONMENT = _chunkMYIXHZMSjs.DEFAULT_ENVIRONMENT; exports.DEFAULT_ORGANIZATION = _chunkMYIXHZMSjs.DEFAULT_ORGANIZATION; exports.DEFAULT_PLATFORM = _chunkMYIXHZMSjs.DEFAULT_PLATFORM; exports.DEFAULT_TARGET = _chunkMYIXHZMSjs.DEFAULT_TARGET; exports.addPackageDependencies = _chunkWBSHEDA6js.addPackageDependencies; exports.addPackageJsonExport = _chunkWBSHEDA6js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWBSHEDA6js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWBSHEDA6js.addWorkspacePackageJsonFields; exports.analyze = _chunkFCNQFEENjs.analyze; exports.copyAssets = _chunkBP4NPFBZjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunk35Z5ZVARjs.getEntryPoints; exports.getEnv = _chunkWLW3DA6Xjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig = _chunkC46ZCHDMjs.readNxConfig; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunkHHQVJURJjs.tsResolvePlugin; exports.typeDefinitions = _chunkN7HP2YYEjs.typeDefinitions;
|
package/dist/index.mjs
CHANGED
|
@@ -8,6 +8,10 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
8
8
|
$schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
9
9
|
extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
10
10
|
name: z.ZodMiniString<string>;
|
|
11
|
+
variant: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
12
|
+
minimal: "minimal";
|
|
13
|
+
monorepo: "monorepo";
|
|
14
|
+
}>>;
|
|
11
15
|
namespace: z.ZodMiniString<string>;
|
|
12
16
|
organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
13
17
|
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -8,6 +8,10 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
8
8
|
$schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
9
9
|
extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
10
10
|
name: z.ZodMiniString<string>;
|
|
11
|
+
variant: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
12
|
+
minimal: "minimal";
|
|
13
|
+
monorepo: "monorepo";
|
|
14
|
+
}>>;
|
|
11
15
|
namespace: z.ZodMiniString<string>;
|
|
12
16
|
organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
13
17
|
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
package/dist/types.d.mts
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export { getOutExtension } from './get-out-extension.mjs';
|
|
|
7
7
|
export { getExternalDependencies, getExtraDependencies, getInternalDependencies } from './get-project-deps.mjs';
|
|
8
8
|
export { readNxConfig } from './read-nx-config.mjs';
|
|
9
9
|
export { createTaskId, getAllWorkspaceTaskGraphs } from './task-graph.mjs';
|
|
10
|
-
import '../types-
|
|
10
|
+
import '../types-TuitE_fJ.mjs';
|
|
11
11
|
import 'zod';
|
|
12
12
|
import 'zod/mini';
|
|
13
13
|
import '../types.mjs';
|
|
@@ -7,7 +7,7 @@ export { getOutExtension } from './get-out-extension.js';
|
|
|
7
7
|
export { getExternalDependencies, getExtraDependencies, getInternalDependencies } from './get-project-deps.js';
|
|
8
8
|
export { readNxConfig } from './read-nx-config.js';
|
|
9
9
|
export { createTaskId, getAllWorkspaceTaskGraphs } from './task-graph.js';
|
|
10
|
-
import '../types-
|
|
10
|
+
import '../types-TuitE_fJ.js';
|
|
11
11
|
import 'zod';
|
|
12
12
|
import 'zod/mini';
|
|
13
13
|
import '../types.js';
|
package/dist/utilities/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-65HIHTHN.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkC46ZCHDMjs = require('../chunk-C46ZCHDM.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -52,4 +52,4 @@ require('../chunk-KTEGKYAH.js');
|
|
|
52
52
|
|
|
53
53
|
|
|
54
54
|
|
|
55
|
-
exports.addPackageDependencies = _chunkWBSHEDA6js.addPackageDependencies; exports.addPackageJsonExport = _chunkWBSHEDA6js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWBSHEDA6js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWBSHEDA6js.addWorkspacePackageJsonFields; exports.copyAssets = _chunkBP4NPFBZjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunk35Z5ZVARjs.getEntryPoints; exports.getEnv = _chunkWLW3DA6Xjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig =
|
|
55
|
+
exports.addPackageDependencies = _chunkWBSHEDA6js.addPackageDependencies; exports.addPackageJsonExport = _chunkWBSHEDA6js.addPackageJsonExport; exports.addPackageJsonExports = _chunkWBSHEDA6js.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkWBSHEDA6js.addWorkspacePackageJsonFields; exports.copyAssets = _chunkBP4NPFBZjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunk35Z5ZVARjs.getEntryPoints; exports.getEnv = _chunkWLW3DA6Xjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig = _chunkC46ZCHDMjs.readNxConfig;
|
package/dist/utilities/index.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkC46ZCHDMjs = require('../chunk-C46ZCHDM.js');
|
|
4
4
|
require('../chunk-UMP4EIAS.js');
|
|
5
5
|
require('../chunk-JVKCJMCK.js');
|
|
6
6
|
require('../chunk-KTEGKYAH.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.readNxConfig =
|
|
9
|
+
exports.readNxConfig = _chunkC46ZCHDMjs.readNxConfig;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/build-tools",
|
|
3
|
-
"version": "0.153.
|
|
3
|
+
"version": "0.153.14",
|
|
4
4
|
"description": "A comprehensive set of tools for building and managing projects within a Storm workspace. Includes builders such as rollup, rolldown, tsup, and unbuild, along with various utilities.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -168,5 +168,5 @@
|
|
|
168
168
|
"typescript": "^5.9.2"
|
|
169
169
|
},
|
|
170
170
|
"publishConfig": { "access": "public" },
|
|
171
|
-
"gitHead": "
|
|
171
|
+
"gitHead": "bd2cceced6f34cd309c7a8cf92fca76621c40470"
|
|
172
172
|
}
|
|
@@ -1,226 +0,0 @@
|
|
|
1
|
-
import * as z$1 from 'zod';
|
|
2
|
-
import * as z from 'zod/mini';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
6
|
-
*/
|
|
7
|
-
declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
8
|
-
$schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
9
|
-
extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
10
|
-
name: z.ZodMiniString<string>;
|
|
11
|
-
namespace: z.ZodMiniString<string>;
|
|
12
|
-
organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
13
|
-
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
14
|
-
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
15
|
-
logo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
16
|
-
icon: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
17
|
-
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
18
|
-
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
19
|
-
repository: z.ZodMiniString<string>;
|
|
20
|
-
license: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
21
|
-
homepage: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
22
|
-
docs: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
23
|
-
portal: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
24
|
-
licensing: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
25
|
-
contact: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
26
|
-
support: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
27
|
-
branch: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
28
|
-
preid: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
29
|
-
owner: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
30
|
-
bot: z.ZodMiniObject<{
|
|
31
|
-
name: z.ZodMiniString<string>;
|
|
32
|
-
email: z.ZodMiniString<string>;
|
|
33
|
-
}, z.core.$strip>;
|
|
34
|
-
release: z.ZodMiniObject<{
|
|
35
|
-
banner: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
36
|
-
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
37
|
-
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
38
|
-
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
39
|
-
header: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
40
|
-
footer: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
41
|
-
}, z.core.$strip>;
|
|
42
|
-
socials: z.ZodMiniObject<{
|
|
43
|
-
twitter: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
44
|
-
discord: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
45
|
-
telegram: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
46
|
-
slack: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
47
|
-
medium: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
48
|
-
github: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
49
|
-
}, z.core.$strip>;
|
|
50
|
-
error: z.ZodMiniObject<{
|
|
51
|
-
codesFile: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
52
|
-
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
53
|
-
}, z.core.$strip>;
|
|
54
|
-
mode: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
55
|
-
development: "development";
|
|
56
|
-
staging: "staging";
|
|
57
|
-
production: "production";
|
|
58
|
-
}>>;
|
|
59
|
-
workspaceRoot: z.ZodMiniString<string>;
|
|
60
|
-
skipCache: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
61
|
-
directories: z.ZodMiniObject<{
|
|
62
|
-
cache: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
63
|
-
data: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
64
|
-
config: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
65
|
-
temp: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
66
|
-
log: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
67
|
-
build: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
68
|
-
}, z.core.$strip>;
|
|
69
|
-
packageManager: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
70
|
-
npm: "npm";
|
|
71
|
-
yarn: "yarn";
|
|
72
|
-
pnpm: "pnpm";
|
|
73
|
-
bun: "bun";
|
|
74
|
-
}>>;
|
|
75
|
-
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
76
|
-
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
77
|
-
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
78
|
-
debug: "debug";
|
|
79
|
-
error: "error";
|
|
80
|
-
success: "success";
|
|
81
|
-
silent: "silent";
|
|
82
|
-
fatal: "fatal";
|
|
83
|
-
warn: "warn";
|
|
84
|
-
info: "info";
|
|
85
|
-
trace: "trace";
|
|
86
|
-
all: "all";
|
|
87
|
-
}>>;
|
|
88
|
-
skipConfigLogging: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
89
|
-
registry: z.ZodMiniDefault<z.ZodMiniObject<{
|
|
90
|
-
github: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
91
|
-
npm: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
92
|
-
cargo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
93
|
-
cyclone: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
94
|
-
container: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
95
|
-
}, z.core.$strip>>;
|
|
96
|
-
configFile: z.ZodMiniDefault<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
97
|
-
colors: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
98
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
99
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
100
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
101
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
102
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
103
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
104
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
105
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
106
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
107
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
108
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
109
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
110
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
111
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
112
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
113
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
114
|
-
dark: z.ZodMiniObject<{
|
|
115
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
116
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
117
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
118
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
119
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
120
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
121
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
122
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
123
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
124
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
125
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
126
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
127
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
128
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
129
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
130
|
-
}, z.core.$strip>;
|
|
131
|
-
light: z.ZodMiniObject<{
|
|
132
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
133
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
134
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
135
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
136
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
137
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
138
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
139
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
140
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
141
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
142
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
143
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
144
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
145
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
146
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
147
|
-
}, z.core.$strip>;
|
|
148
|
-
}, z.core.$strip>]>, z.ZodMiniRecord<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"base">, z.ZodMiniString<string>]>, z.ZodMiniString<string>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
149
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
150
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
151
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
152
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
153
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
154
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
155
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
156
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
157
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
158
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
159
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
160
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
161
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
162
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
163
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
164
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
165
|
-
dark: z.ZodMiniObject<{
|
|
166
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
167
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
168
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
169
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
170
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
171
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
172
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
173
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
174
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
175
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
176
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
177
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
178
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
179
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
180
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
181
|
-
}, z.core.$strip>;
|
|
182
|
-
light: z.ZodMiniObject<{
|
|
183
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
184
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
185
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
186
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
187
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
188
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
189
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
190
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
191
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
192
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
193
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
194
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
195
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
196
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
197
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
198
|
-
}, z.core.$strip>;
|
|
199
|
-
}, z.core.$strip>]>>]>;
|
|
200
|
-
extensions: z.ZodMiniDefault<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniAny>>;
|
|
201
|
-
}, z.core.$strip>;
|
|
202
|
-
|
|
203
|
-
type TStormWorkspaceConfig = z$1.infer<typeof workspaceConfigSchema>;
|
|
204
|
-
/**
|
|
205
|
-
* The Storm workspace's configuration object
|
|
206
|
-
*
|
|
207
|
-
* @remarks
|
|
208
|
-
* This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
|
|
209
|
-
*
|
|
210
|
-
* @deprecated
|
|
211
|
-
* This type is deprecated and will be removed in the next major version. Use {@link StormWorkspaceConfig} instead.
|
|
212
|
-
*/
|
|
213
|
-
type StormConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = TStormWorkspaceConfig & {
|
|
214
|
-
extensions: (TStormWorkspaceConfig["extensions"] & {
|
|
215
|
-
[extensionName in TExtensionName]: TExtensionConfig;
|
|
216
|
-
}) | NonNullable<Record<string, any>>;
|
|
217
|
-
};
|
|
218
|
-
/**
|
|
219
|
-
* The Storm workspace's configuration object
|
|
220
|
-
*
|
|
221
|
-
* @remarks
|
|
222
|
-
* This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
|
|
223
|
-
*/
|
|
224
|
-
type StormWorkspaceConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = StormConfig<TExtensionName, TExtensionConfig>;
|
|
225
|
-
|
|
226
|
-
export type { StormWorkspaceConfig as S };
|
package/dist/types-B9d4_BzW.d.ts
DELETED
|
@@ -1,226 +0,0 @@
|
|
|
1
|
-
import * as z$1 from 'zod';
|
|
2
|
-
import * as z from 'zod/mini';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
6
|
-
*/
|
|
7
|
-
declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
8
|
-
$schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
9
|
-
extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
10
|
-
name: z.ZodMiniString<string>;
|
|
11
|
-
namespace: z.ZodMiniString<string>;
|
|
12
|
-
organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
13
|
-
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
14
|
-
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
15
|
-
logo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
16
|
-
icon: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
17
|
-
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
18
|
-
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
19
|
-
repository: z.ZodMiniString<string>;
|
|
20
|
-
license: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
21
|
-
homepage: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
22
|
-
docs: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
23
|
-
portal: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
24
|
-
licensing: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
25
|
-
contact: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
26
|
-
support: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
27
|
-
branch: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
28
|
-
preid: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
29
|
-
owner: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
30
|
-
bot: z.ZodMiniObject<{
|
|
31
|
-
name: z.ZodMiniString<string>;
|
|
32
|
-
email: z.ZodMiniString<string>;
|
|
33
|
-
}, z.core.$strip>;
|
|
34
|
-
release: z.ZodMiniObject<{
|
|
35
|
-
banner: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
36
|
-
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
37
|
-
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
38
|
-
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
39
|
-
header: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
40
|
-
footer: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
41
|
-
}, z.core.$strip>;
|
|
42
|
-
socials: z.ZodMiniObject<{
|
|
43
|
-
twitter: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
44
|
-
discord: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
45
|
-
telegram: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
46
|
-
slack: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
47
|
-
medium: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
48
|
-
github: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
49
|
-
}, z.core.$strip>;
|
|
50
|
-
error: z.ZodMiniObject<{
|
|
51
|
-
codesFile: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
52
|
-
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
53
|
-
}, z.core.$strip>;
|
|
54
|
-
mode: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
55
|
-
development: "development";
|
|
56
|
-
staging: "staging";
|
|
57
|
-
production: "production";
|
|
58
|
-
}>>;
|
|
59
|
-
workspaceRoot: z.ZodMiniString<string>;
|
|
60
|
-
skipCache: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
61
|
-
directories: z.ZodMiniObject<{
|
|
62
|
-
cache: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
63
|
-
data: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
64
|
-
config: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
65
|
-
temp: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
66
|
-
log: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
67
|
-
build: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
68
|
-
}, z.core.$strip>;
|
|
69
|
-
packageManager: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
70
|
-
npm: "npm";
|
|
71
|
-
yarn: "yarn";
|
|
72
|
-
pnpm: "pnpm";
|
|
73
|
-
bun: "bun";
|
|
74
|
-
}>>;
|
|
75
|
-
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
76
|
-
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
77
|
-
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
78
|
-
debug: "debug";
|
|
79
|
-
error: "error";
|
|
80
|
-
success: "success";
|
|
81
|
-
silent: "silent";
|
|
82
|
-
fatal: "fatal";
|
|
83
|
-
warn: "warn";
|
|
84
|
-
info: "info";
|
|
85
|
-
trace: "trace";
|
|
86
|
-
all: "all";
|
|
87
|
-
}>>;
|
|
88
|
-
skipConfigLogging: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
89
|
-
registry: z.ZodMiniDefault<z.ZodMiniObject<{
|
|
90
|
-
github: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
91
|
-
npm: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
92
|
-
cargo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
93
|
-
cyclone: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
94
|
-
container: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
95
|
-
}, z.core.$strip>>;
|
|
96
|
-
configFile: z.ZodMiniDefault<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
97
|
-
colors: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
98
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
99
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
100
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
101
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
102
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
103
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
104
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
105
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
106
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
107
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
108
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
109
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
110
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
111
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
112
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
113
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
114
|
-
dark: z.ZodMiniObject<{
|
|
115
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
116
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
117
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
118
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
119
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
120
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
121
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
122
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
123
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
124
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
125
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
126
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
127
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
128
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
129
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
130
|
-
}, z.core.$strip>;
|
|
131
|
-
light: z.ZodMiniObject<{
|
|
132
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
133
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
134
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
135
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
136
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
137
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
138
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
139
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
140
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
141
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
142
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
143
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
144
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
145
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
146
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
147
|
-
}, z.core.$strip>;
|
|
148
|
-
}, z.core.$strip>]>, z.ZodMiniRecord<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"base">, z.ZodMiniString<string>]>, z.ZodMiniString<string>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
149
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
150
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
151
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
152
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
153
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
154
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
155
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
156
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
157
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
158
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
159
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
160
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
161
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
162
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
163
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
164
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
165
|
-
dark: z.ZodMiniObject<{
|
|
166
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
167
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
168
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
169
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
170
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
171
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
172
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
173
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
174
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
175
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
176
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
177
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
178
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
179
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
180
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
181
|
-
}, z.core.$strip>;
|
|
182
|
-
light: z.ZodMiniObject<{
|
|
183
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
184
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
185
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
186
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
187
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
188
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
189
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
190
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
191
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
192
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
193
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
194
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
195
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
196
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
197
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
198
|
-
}, z.core.$strip>;
|
|
199
|
-
}, z.core.$strip>]>>]>;
|
|
200
|
-
extensions: z.ZodMiniDefault<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniAny>>;
|
|
201
|
-
}, z.core.$strip>;
|
|
202
|
-
|
|
203
|
-
type TStormWorkspaceConfig = z$1.infer<typeof workspaceConfigSchema>;
|
|
204
|
-
/**
|
|
205
|
-
* The Storm workspace's configuration object
|
|
206
|
-
*
|
|
207
|
-
* @remarks
|
|
208
|
-
* This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
|
|
209
|
-
*
|
|
210
|
-
* @deprecated
|
|
211
|
-
* This type is deprecated and will be removed in the next major version. Use {@link StormWorkspaceConfig} instead.
|
|
212
|
-
*/
|
|
213
|
-
type StormConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = TStormWorkspaceConfig & {
|
|
214
|
-
extensions: (TStormWorkspaceConfig["extensions"] & {
|
|
215
|
-
[extensionName in TExtensionName]: TExtensionConfig;
|
|
216
|
-
}) | NonNullable<Record<string, any>>;
|
|
217
|
-
};
|
|
218
|
-
/**
|
|
219
|
-
* The Storm workspace's configuration object
|
|
220
|
-
*
|
|
221
|
-
* @remarks
|
|
222
|
-
* This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
|
|
223
|
-
*/
|
|
224
|
-
type StormWorkspaceConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = StormConfig<TExtensionName, TExtensionConfig>;
|
|
225
|
-
|
|
226
|
-
export type { StormWorkspaceConfig as S };
|