@storm-software/config 1.106.13 → 1.107.0
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 +2 -0
- package/dist/{chunk-UEFF6FLR.cjs → chunk-5RAKNLPP.cjs} +6 -6
- package/dist/chunk-CPQUL4OS.cjs +22 -0
- package/dist/chunk-KO5ZCYSI.js +22 -0
- package/dist/{chunk-WB3YUUR2.js → chunk-ORVYZZUV.js} +1 -1
- package/dist/constants.cjs +2 -2
- package/dist/constants.d.cts +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/define-config.d.cts +78 -78
- package/dist/define-config.d.ts +78 -78
- package/dist/index.cjs +3 -3
- package/dist/index.js +2 -2
- package/dist/schema.cjs +3 -3
- package/dist/schema.d.cts +631 -631
- package/dist/schema.d.ts +631 -631
- package/dist/schema.js +2 -2
- package/package.json +1 -1
- package/src/constants.d.ts +1 -1
- package/dist/chunk-4VHKMV3R.cjs +0 -34
- package/dist/chunk-EPKJHK5F.js +0 -34
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkCPQUL4OScjs = require('./chunk-CPQUL4OS.cjs');
|
|
8
8
|
|
|
9
9
|
// src/schema.ts
|
|
10
10
|
var _zod = require('zod'); var _zod2 = _interopRequireDefault(_zod);
|
|
@@ -96,9 +96,9 @@ var WorkspaceBotConfigSchema = _zod2.default.object({
|
|
|
96
96
|
email: _zod2.default.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
|
|
97
97
|
}).describe("The workspace's bot user's config used to automated various operations tasks");
|
|
98
98
|
var WorkspaceReleaseConfigSchema = _zod2.default.object({
|
|
99
|
-
banner: _zod2.default.string().trim().default(
|
|
99
|
+
banner: _zod2.default.string().trim().default(_chunkCPQUL4OScjs.STORM_DEFAULT_RELEASE_BANNER).describe("A URL to a banner image used to display the workspace's release"),
|
|
100
100
|
header: _zod2.default.string().trim().optional().describe("A header message appended to the start of the workspace's release notes"),
|
|
101
|
-
footer: _zod2.default.string().trim().default(
|
|
101
|
+
footer: _zod2.default.string().trim().default(_chunkCPQUL4OScjs.STORM_DEFAULT_RELEASE_FOOTER).describe("A footer message appended to the end of the workspace's release notes")
|
|
102
102
|
}).describe("The workspace's release config used during the release process");
|
|
103
103
|
var WorkspaceDirectoryConfigSchema = _zod2.default.object({
|
|
104
104
|
cache: _zod2.default.string().trim().optional().describe("The directory used to store the environment's cached file data"),
|
|
@@ -116,9 +116,9 @@ var StormConfigSchema = _zod2.default.object({
|
|
|
116
116
|
organization: _zod2.default.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
117
117
|
repository: _zod2.default.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
118
118
|
license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
119
|
-
homepage: _zod2.default.string().trim().url().default(
|
|
120
|
-
docs: _zod2.default.string().trim().url().default(
|
|
121
|
-
licensing: _zod2.default.string().trim().url().default(
|
|
119
|
+
homepage: _zod2.default.string().trim().url().default(_chunkCPQUL4OScjs.STORM_DEFAULT_HOMEPAGE).describe("The homepage of the workspace"),
|
|
120
|
+
docs: _zod2.default.string().trim().url().default(_chunkCPQUL4OScjs.STORM_DEFAULT_DOCS).describe("The base documentation site for the workspace"),
|
|
121
|
+
licensing: _zod2.default.string().trim().url().default(_chunkCPQUL4OScjs.STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
122
122
|
branch: _zod2.default.string().trim().default("main").describe("The branch of the workspace"),
|
|
123
123
|
preid: _zod2.default.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
124
124
|
owner: _zod2.default.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/constants.ts
|
|
2
|
+
var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
|
|
3
|
+
var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
4
|
+
var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
|
|
5
|
+
var STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
6
|
+
var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
|
|
7
|
+
var STORM_DEFAULT_RELEASE_FOOTER = `
|
|
8
|
+
[Storm Software](https://stormsoftware.com) 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.
|
|
9
|
+
|
|
10
|
+
Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.
|
|
11
|
+
|
|
12
|
+
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](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!
|
|
13
|
+
`;
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
exports.STORM_DEFAULT_DOCS = STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSING = STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_LICENSE = STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_RELEASE_BANNER = STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = STORM_DEFAULT_RELEASE_FOOTER;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// src/constants.ts
|
|
2
|
+
var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
|
|
3
|
+
var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
4
|
+
var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
|
|
5
|
+
var STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
6
|
+
var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
|
|
7
|
+
var STORM_DEFAULT_RELEASE_FOOTER = `
|
|
8
|
+
[Storm Software](https://stormsoftware.com) 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.
|
|
9
|
+
|
|
10
|
+
Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.
|
|
11
|
+
|
|
12
|
+
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](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!
|
|
13
|
+
`;
|
|
14
|
+
|
|
15
|
+
export {
|
|
16
|
+
STORM_DEFAULT_DOCS,
|
|
17
|
+
STORM_DEFAULT_HOMEPAGE,
|
|
18
|
+
STORM_DEFAULT_LICENSING,
|
|
19
|
+
STORM_DEFAULT_LICENSE,
|
|
20
|
+
STORM_DEFAULT_RELEASE_BANNER,
|
|
21
|
+
STORM_DEFAULT_RELEASE_FOOTER
|
|
22
|
+
};
|
package/dist/constants.cjs
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkCPQUL4OScjs = require('./chunk-CPQUL4OS.cjs');
|
|
9
9
|
require('./chunk-USNT2KNT.cjs');
|
|
10
10
|
|
|
11
11
|
|
|
@@ -14,4 +14,4 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
exports.STORM_DEFAULT_DOCS =
|
|
17
|
+
exports.STORM_DEFAULT_DOCS = _chunkCPQUL4OScjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = _chunkCPQUL4OScjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkCPQUL4OScjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkCPQUL4OScjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkCPQUL4OScjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkCPQUL4OScjs.STORM_DEFAULT_RELEASE_FOOTER;
|
package/dist/constants.d.cts
CHANGED
|
@@ -3,6 +3,6 @@ declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
|
3
3
|
declare const STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
|
|
4
4
|
declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
5
5
|
declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
|
|
6
|
-
declare const STORM_DEFAULT_RELEASE_FOOTER = "\
|
|
6
|
+
declare const STORM_DEFAULT_RELEASE_FOOTER = "\n[Storm Software](https://stormsoftware.com) 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";
|
|
7
7
|
|
|
8
8
|
export { STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER };
|
package/dist/constants.d.ts
CHANGED
|
@@ -3,6 +3,6 @@ declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
|
3
3
|
declare const STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
|
|
4
4
|
declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
5
5
|
declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
|
|
6
|
-
declare const STORM_DEFAULT_RELEASE_FOOTER = "\
|
|
6
|
+
declare const STORM_DEFAULT_RELEASE_FOOTER = "\n[Storm Software](https://stormsoftware.com) 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";
|
|
7
7
|
|
|
8
8
|
export { STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER };
|
package/dist/constants.js
CHANGED
package/dist/define-config.d.cts
CHANGED
|
@@ -27,155 +27,155 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
27
27
|
build?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
colors: {
|
|
30
|
-
fatal?: string | undefined;
|
|
31
|
-
success?: string | undefined;
|
|
32
|
-
info?: string | undefined;
|
|
33
|
-
dark?: string | undefined;
|
|
34
|
-
light?: string | undefined;
|
|
35
|
-
brand?: string | undefined;
|
|
36
|
-
alternate?: string | undefined;
|
|
37
|
-
accent?: string | undefined;
|
|
38
|
-
link?: string | undefined;
|
|
39
|
-
help?: string | undefined;
|
|
40
|
-
warning?: string | undefined;
|
|
41
|
-
danger?: string | undefined;
|
|
42
|
-
positive?: string | undefined;
|
|
43
|
-
negative?: string | undefined;
|
|
44
|
-
} | {
|
|
45
30
|
dark: {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
info?: string | undefined;
|
|
31
|
+
foreground?: string | undefined;
|
|
32
|
+
background?: string | undefined;
|
|
49
33
|
brand?: string | undefined;
|
|
50
34
|
alternate?: string | undefined;
|
|
51
35
|
accent?: string | undefined;
|
|
52
36
|
link?: string | undefined;
|
|
53
37
|
help?: string | undefined;
|
|
38
|
+
success?: string | undefined;
|
|
39
|
+
info?: string | undefined;
|
|
54
40
|
warning?: string | undefined;
|
|
55
41
|
danger?: string | undefined;
|
|
42
|
+
fatal?: string | undefined;
|
|
56
43
|
positive?: string | undefined;
|
|
57
44
|
negative?: string | undefined;
|
|
58
|
-
foreground?: string | undefined;
|
|
59
|
-
background?: string | undefined;
|
|
60
45
|
};
|
|
61
46
|
light: {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
info?: string | undefined;
|
|
47
|
+
foreground?: string | undefined;
|
|
48
|
+
background?: string | undefined;
|
|
65
49
|
brand?: string | undefined;
|
|
66
50
|
alternate?: string | undefined;
|
|
67
51
|
accent?: string | undefined;
|
|
68
52
|
link?: string | undefined;
|
|
69
53
|
help?: string | undefined;
|
|
54
|
+
success?: string | undefined;
|
|
55
|
+
info?: string | undefined;
|
|
70
56
|
warning?: string | undefined;
|
|
71
57
|
danger?: string | undefined;
|
|
58
|
+
fatal?: string | undefined;
|
|
72
59
|
positive?: string | undefined;
|
|
73
60
|
negative?: string | undefined;
|
|
74
|
-
foreground?: string | undefined;
|
|
75
|
-
background?: string | undefined;
|
|
76
61
|
};
|
|
62
|
+
} | {
|
|
63
|
+
brand?: string | undefined;
|
|
64
|
+
alternate?: string | undefined;
|
|
65
|
+
accent?: string | undefined;
|
|
66
|
+
link?: string | undefined;
|
|
67
|
+
help?: string | undefined;
|
|
68
|
+
success?: string | undefined;
|
|
69
|
+
info?: string | undefined;
|
|
70
|
+
warning?: string | undefined;
|
|
71
|
+
danger?: string | undefined;
|
|
72
|
+
fatal?: string | undefined;
|
|
73
|
+
positive?: string | undefined;
|
|
74
|
+
negative?: string | undefined;
|
|
75
|
+
dark?: string | undefined;
|
|
76
|
+
light?: string | undefined;
|
|
77
77
|
} | {
|
|
78
78
|
base: {
|
|
79
|
-
fatal?: string | undefined;
|
|
80
|
-
success?: string | undefined;
|
|
81
|
-
info?: string | undefined;
|
|
82
|
-
dark?: string | undefined;
|
|
83
|
-
light?: string | undefined;
|
|
84
|
-
brand?: string | undefined;
|
|
85
|
-
alternate?: string | undefined;
|
|
86
|
-
accent?: string | undefined;
|
|
87
|
-
link?: string | undefined;
|
|
88
|
-
help?: string | undefined;
|
|
89
|
-
warning?: string | undefined;
|
|
90
|
-
danger?: string | undefined;
|
|
91
|
-
positive?: string | undefined;
|
|
92
|
-
negative?: string | undefined;
|
|
93
|
-
} | {
|
|
94
79
|
dark: {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
info?: string | undefined;
|
|
80
|
+
foreground?: string | undefined;
|
|
81
|
+
background?: string | undefined;
|
|
98
82
|
brand?: string | undefined;
|
|
99
83
|
alternate?: string | undefined;
|
|
100
84
|
accent?: string | undefined;
|
|
101
85
|
link?: string | undefined;
|
|
102
86
|
help?: string | undefined;
|
|
87
|
+
success?: string | undefined;
|
|
88
|
+
info?: string | undefined;
|
|
103
89
|
warning?: string | undefined;
|
|
104
90
|
danger?: string | undefined;
|
|
91
|
+
fatal?: string | undefined;
|
|
105
92
|
positive?: string | undefined;
|
|
106
93
|
negative?: string | undefined;
|
|
107
|
-
foreground?: string | undefined;
|
|
108
|
-
background?: string | undefined;
|
|
109
94
|
};
|
|
110
95
|
light: {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
info?: string | undefined;
|
|
96
|
+
foreground?: string | undefined;
|
|
97
|
+
background?: string | undefined;
|
|
114
98
|
brand?: string | undefined;
|
|
115
99
|
alternate?: string | undefined;
|
|
116
100
|
accent?: string | undefined;
|
|
117
101
|
link?: string | undefined;
|
|
118
102
|
help?: string | undefined;
|
|
103
|
+
success?: string | undefined;
|
|
104
|
+
info?: string | undefined;
|
|
119
105
|
warning?: string | undefined;
|
|
120
106
|
danger?: string | undefined;
|
|
107
|
+
fatal?: string | undefined;
|
|
121
108
|
positive?: string | undefined;
|
|
122
109
|
negative?: string | undefined;
|
|
123
|
-
foreground?: string | undefined;
|
|
124
|
-
background?: string | undefined;
|
|
125
110
|
};
|
|
111
|
+
} | {
|
|
112
|
+
brand?: string | undefined;
|
|
113
|
+
alternate?: string | undefined;
|
|
114
|
+
accent?: string | undefined;
|
|
115
|
+
link?: string | undefined;
|
|
116
|
+
help?: string | undefined;
|
|
117
|
+
success?: string | undefined;
|
|
118
|
+
info?: string | undefined;
|
|
119
|
+
warning?: string | undefined;
|
|
120
|
+
danger?: string | undefined;
|
|
121
|
+
fatal?: string | undefined;
|
|
122
|
+
positive?: string | undefined;
|
|
123
|
+
negative?: string | undefined;
|
|
124
|
+
dark?: string | undefined;
|
|
125
|
+
light?: string | undefined;
|
|
126
126
|
};
|
|
127
127
|
} | Record<string, {
|
|
128
|
-
fatal?: string | undefined;
|
|
129
|
-
success?: string | undefined;
|
|
130
|
-
info?: string | undefined;
|
|
131
|
-
dark?: string | undefined;
|
|
132
|
-
light?: string | undefined;
|
|
133
|
-
brand?: string | undefined;
|
|
134
|
-
alternate?: string | undefined;
|
|
135
|
-
accent?: string | undefined;
|
|
136
|
-
link?: string | undefined;
|
|
137
|
-
help?: string | undefined;
|
|
138
|
-
warning?: string | undefined;
|
|
139
|
-
danger?: string | undefined;
|
|
140
|
-
positive?: string | undefined;
|
|
141
|
-
negative?: string | undefined;
|
|
142
|
-
} | {
|
|
143
128
|
dark: {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
info?: string | undefined;
|
|
129
|
+
foreground?: string | undefined;
|
|
130
|
+
background?: string | undefined;
|
|
147
131
|
brand?: string | undefined;
|
|
148
132
|
alternate?: string | undefined;
|
|
149
133
|
accent?: string | undefined;
|
|
150
134
|
link?: string | undefined;
|
|
151
135
|
help?: string | undefined;
|
|
136
|
+
success?: string | undefined;
|
|
137
|
+
info?: string | undefined;
|
|
152
138
|
warning?: string | undefined;
|
|
153
139
|
danger?: string | undefined;
|
|
140
|
+
fatal?: string | undefined;
|
|
154
141
|
positive?: string | undefined;
|
|
155
142
|
negative?: string | undefined;
|
|
156
|
-
foreground?: string | undefined;
|
|
157
|
-
background?: string | undefined;
|
|
158
143
|
};
|
|
159
144
|
light: {
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
info?: string | undefined;
|
|
145
|
+
foreground?: string | undefined;
|
|
146
|
+
background?: string | undefined;
|
|
163
147
|
brand?: string | undefined;
|
|
164
148
|
alternate?: string | undefined;
|
|
165
149
|
accent?: string | undefined;
|
|
166
150
|
link?: string | undefined;
|
|
167
151
|
help?: string | undefined;
|
|
152
|
+
success?: string | undefined;
|
|
153
|
+
info?: string | undefined;
|
|
168
154
|
warning?: string | undefined;
|
|
169
155
|
danger?: string | undefined;
|
|
156
|
+
fatal?: string | undefined;
|
|
170
157
|
positive?: string | undefined;
|
|
171
158
|
negative?: string | undefined;
|
|
172
|
-
foreground?: string | undefined;
|
|
173
|
-
background?: string | undefined;
|
|
174
159
|
};
|
|
160
|
+
} | {
|
|
161
|
+
brand?: string | undefined;
|
|
162
|
+
alternate?: string | undefined;
|
|
163
|
+
accent?: string | undefined;
|
|
164
|
+
link?: string | undefined;
|
|
165
|
+
help?: string | undefined;
|
|
166
|
+
success?: string | undefined;
|
|
167
|
+
info?: string | undefined;
|
|
168
|
+
warning?: string | undefined;
|
|
169
|
+
danger?: string | undefined;
|
|
170
|
+
fatal?: string | undefined;
|
|
171
|
+
positive?: string | undefined;
|
|
172
|
+
negative?: string | undefined;
|
|
173
|
+
dark?: string | undefined;
|
|
174
|
+
light?: string | undefined;
|
|
175
175
|
}>;
|
|
176
|
+
name?: string | undefined;
|
|
176
177
|
$schema?: string | null | undefined;
|
|
177
178
|
extends?: string | string[] | undefined;
|
|
178
|
-
name?: string | undefined;
|
|
179
179
|
namespace?: string | undefined;
|
|
180
180
|
organization?: string | undefined;
|
|
181
181
|
repository?: string | undefined;
|
|
@@ -193,11 +193,11 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
193
193
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
194
194
|
timezone?: string | undefined;
|
|
195
195
|
locale?: string | undefined;
|
|
196
|
-
logLevel?: "
|
|
196
|
+
logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
197
197
|
skipConfigLogging?: boolean | undefined;
|
|
198
198
|
registry?: {
|
|
199
|
-
npm?: string | undefined;
|
|
200
199
|
github?: string | undefined;
|
|
200
|
+
npm?: string | undefined;
|
|
201
201
|
cargo?: string | undefined;
|
|
202
202
|
cyclone?: string | undefined;
|
|
203
203
|
container?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -27,155 +27,155 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
27
27
|
build?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
colors: {
|
|
30
|
-
fatal?: string | undefined;
|
|
31
|
-
success?: string | undefined;
|
|
32
|
-
info?: string | undefined;
|
|
33
|
-
dark?: string | undefined;
|
|
34
|
-
light?: string | undefined;
|
|
35
|
-
brand?: string | undefined;
|
|
36
|
-
alternate?: string | undefined;
|
|
37
|
-
accent?: string | undefined;
|
|
38
|
-
link?: string | undefined;
|
|
39
|
-
help?: string | undefined;
|
|
40
|
-
warning?: string | undefined;
|
|
41
|
-
danger?: string | undefined;
|
|
42
|
-
positive?: string | undefined;
|
|
43
|
-
negative?: string | undefined;
|
|
44
|
-
} | {
|
|
45
30
|
dark: {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
info?: string | undefined;
|
|
31
|
+
foreground?: string | undefined;
|
|
32
|
+
background?: string | undefined;
|
|
49
33
|
brand?: string | undefined;
|
|
50
34
|
alternate?: string | undefined;
|
|
51
35
|
accent?: string | undefined;
|
|
52
36
|
link?: string | undefined;
|
|
53
37
|
help?: string | undefined;
|
|
38
|
+
success?: string | undefined;
|
|
39
|
+
info?: string | undefined;
|
|
54
40
|
warning?: string | undefined;
|
|
55
41
|
danger?: string | undefined;
|
|
42
|
+
fatal?: string | undefined;
|
|
56
43
|
positive?: string | undefined;
|
|
57
44
|
negative?: string | undefined;
|
|
58
|
-
foreground?: string | undefined;
|
|
59
|
-
background?: string | undefined;
|
|
60
45
|
};
|
|
61
46
|
light: {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
info?: string | undefined;
|
|
47
|
+
foreground?: string | undefined;
|
|
48
|
+
background?: string | undefined;
|
|
65
49
|
brand?: string | undefined;
|
|
66
50
|
alternate?: string | undefined;
|
|
67
51
|
accent?: string | undefined;
|
|
68
52
|
link?: string | undefined;
|
|
69
53
|
help?: string | undefined;
|
|
54
|
+
success?: string | undefined;
|
|
55
|
+
info?: string | undefined;
|
|
70
56
|
warning?: string | undefined;
|
|
71
57
|
danger?: string | undefined;
|
|
58
|
+
fatal?: string | undefined;
|
|
72
59
|
positive?: string | undefined;
|
|
73
60
|
negative?: string | undefined;
|
|
74
|
-
foreground?: string | undefined;
|
|
75
|
-
background?: string | undefined;
|
|
76
61
|
};
|
|
62
|
+
} | {
|
|
63
|
+
brand?: string | undefined;
|
|
64
|
+
alternate?: string | undefined;
|
|
65
|
+
accent?: string | undefined;
|
|
66
|
+
link?: string | undefined;
|
|
67
|
+
help?: string | undefined;
|
|
68
|
+
success?: string | undefined;
|
|
69
|
+
info?: string | undefined;
|
|
70
|
+
warning?: string | undefined;
|
|
71
|
+
danger?: string | undefined;
|
|
72
|
+
fatal?: string | undefined;
|
|
73
|
+
positive?: string | undefined;
|
|
74
|
+
negative?: string | undefined;
|
|
75
|
+
dark?: string | undefined;
|
|
76
|
+
light?: string | undefined;
|
|
77
77
|
} | {
|
|
78
78
|
base: {
|
|
79
|
-
fatal?: string | undefined;
|
|
80
|
-
success?: string | undefined;
|
|
81
|
-
info?: string | undefined;
|
|
82
|
-
dark?: string | undefined;
|
|
83
|
-
light?: string | undefined;
|
|
84
|
-
brand?: string | undefined;
|
|
85
|
-
alternate?: string | undefined;
|
|
86
|
-
accent?: string | undefined;
|
|
87
|
-
link?: string | undefined;
|
|
88
|
-
help?: string | undefined;
|
|
89
|
-
warning?: string | undefined;
|
|
90
|
-
danger?: string | undefined;
|
|
91
|
-
positive?: string | undefined;
|
|
92
|
-
negative?: string | undefined;
|
|
93
|
-
} | {
|
|
94
79
|
dark: {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
info?: string | undefined;
|
|
80
|
+
foreground?: string | undefined;
|
|
81
|
+
background?: string | undefined;
|
|
98
82
|
brand?: string | undefined;
|
|
99
83
|
alternate?: string | undefined;
|
|
100
84
|
accent?: string | undefined;
|
|
101
85
|
link?: string | undefined;
|
|
102
86
|
help?: string | undefined;
|
|
87
|
+
success?: string | undefined;
|
|
88
|
+
info?: string | undefined;
|
|
103
89
|
warning?: string | undefined;
|
|
104
90
|
danger?: string | undefined;
|
|
91
|
+
fatal?: string | undefined;
|
|
105
92
|
positive?: string | undefined;
|
|
106
93
|
negative?: string | undefined;
|
|
107
|
-
foreground?: string | undefined;
|
|
108
|
-
background?: string | undefined;
|
|
109
94
|
};
|
|
110
95
|
light: {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
info?: string | undefined;
|
|
96
|
+
foreground?: string | undefined;
|
|
97
|
+
background?: string | undefined;
|
|
114
98
|
brand?: string | undefined;
|
|
115
99
|
alternate?: string | undefined;
|
|
116
100
|
accent?: string | undefined;
|
|
117
101
|
link?: string | undefined;
|
|
118
102
|
help?: string | undefined;
|
|
103
|
+
success?: string | undefined;
|
|
104
|
+
info?: string | undefined;
|
|
119
105
|
warning?: string | undefined;
|
|
120
106
|
danger?: string | undefined;
|
|
107
|
+
fatal?: string | undefined;
|
|
121
108
|
positive?: string | undefined;
|
|
122
109
|
negative?: string | undefined;
|
|
123
|
-
foreground?: string | undefined;
|
|
124
|
-
background?: string | undefined;
|
|
125
110
|
};
|
|
111
|
+
} | {
|
|
112
|
+
brand?: string | undefined;
|
|
113
|
+
alternate?: string | undefined;
|
|
114
|
+
accent?: string | undefined;
|
|
115
|
+
link?: string | undefined;
|
|
116
|
+
help?: string | undefined;
|
|
117
|
+
success?: string | undefined;
|
|
118
|
+
info?: string | undefined;
|
|
119
|
+
warning?: string | undefined;
|
|
120
|
+
danger?: string | undefined;
|
|
121
|
+
fatal?: string | undefined;
|
|
122
|
+
positive?: string | undefined;
|
|
123
|
+
negative?: string | undefined;
|
|
124
|
+
dark?: string | undefined;
|
|
125
|
+
light?: string | undefined;
|
|
126
126
|
};
|
|
127
127
|
} | Record<string, {
|
|
128
|
-
fatal?: string | undefined;
|
|
129
|
-
success?: string | undefined;
|
|
130
|
-
info?: string | undefined;
|
|
131
|
-
dark?: string | undefined;
|
|
132
|
-
light?: string | undefined;
|
|
133
|
-
brand?: string | undefined;
|
|
134
|
-
alternate?: string | undefined;
|
|
135
|
-
accent?: string | undefined;
|
|
136
|
-
link?: string | undefined;
|
|
137
|
-
help?: string | undefined;
|
|
138
|
-
warning?: string | undefined;
|
|
139
|
-
danger?: string | undefined;
|
|
140
|
-
positive?: string | undefined;
|
|
141
|
-
negative?: string | undefined;
|
|
142
|
-
} | {
|
|
143
128
|
dark: {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
info?: string | undefined;
|
|
129
|
+
foreground?: string | undefined;
|
|
130
|
+
background?: string | undefined;
|
|
147
131
|
brand?: string | undefined;
|
|
148
132
|
alternate?: string | undefined;
|
|
149
133
|
accent?: string | undefined;
|
|
150
134
|
link?: string | undefined;
|
|
151
135
|
help?: string | undefined;
|
|
136
|
+
success?: string | undefined;
|
|
137
|
+
info?: string | undefined;
|
|
152
138
|
warning?: string | undefined;
|
|
153
139
|
danger?: string | undefined;
|
|
140
|
+
fatal?: string | undefined;
|
|
154
141
|
positive?: string | undefined;
|
|
155
142
|
negative?: string | undefined;
|
|
156
|
-
foreground?: string | undefined;
|
|
157
|
-
background?: string | undefined;
|
|
158
143
|
};
|
|
159
144
|
light: {
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
info?: string | undefined;
|
|
145
|
+
foreground?: string | undefined;
|
|
146
|
+
background?: string | undefined;
|
|
163
147
|
brand?: string | undefined;
|
|
164
148
|
alternate?: string | undefined;
|
|
165
149
|
accent?: string | undefined;
|
|
166
150
|
link?: string | undefined;
|
|
167
151
|
help?: string | undefined;
|
|
152
|
+
success?: string | undefined;
|
|
153
|
+
info?: string | undefined;
|
|
168
154
|
warning?: string | undefined;
|
|
169
155
|
danger?: string | undefined;
|
|
156
|
+
fatal?: string | undefined;
|
|
170
157
|
positive?: string | undefined;
|
|
171
158
|
negative?: string | undefined;
|
|
172
|
-
foreground?: string | undefined;
|
|
173
|
-
background?: string | undefined;
|
|
174
159
|
};
|
|
160
|
+
} | {
|
|
161
|
+
brand?: string | undefined;
|
|
162
|
+
alternate?: string | undefined;
|
|
163
|
+
accent?: string | undefined;
|
|
164
|
+
link?: string | undefined;
|
|
165
|
+
help?: string | undefined;
|
|
166
|
+
success?: string | undefined;
|
|
167
|
+
info?: string | undefined;
|
|
168
|
+
warning?: string | undefined;
|
|
169
|
+
danger?: string | undefined;
|
|
170
|
+
fatal?: string | undefined;
|
|
171
|
+
positive?: string | undefined;
|
|
172
|
+
negative?: string | undefined;
|
|
173
|
+
dark?: string | undefined;
|
|
174
|
+
light?: string | undefined;
|
|
175
175
|
}>;
|
|
176
|
+
name?: string | undefined;
|
|
176
177
|
$schema?: string | null | undefined;
|
|
177
178
|
extends?: string | string[] | undefined;
|
|
178
|
-
name?: string | undefined;
|
|
179
179
|
namespace?: string | undefined;
|
|
180
180
|
organization?: string | undefined;
|
|
181
181
|
repository?: string | undefined;
|
|
@@ -193,11 +193,11 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
193
193
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
194
194
|
timezone?: string | undefined;
|
|
195
195
|
locale?: string | undefined;
|
|
196
|
-
logLevel?: "
|
|
196
|
+
logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
197
197
|
skipConfigLogging?: boolean | undefined;
|
|
198
198
|
registry?: {
|
|
199
|
-
npm?: string | undefined;
|
|
200
199
|
github?: string | undefined;
|
|
200
|
+
npm?: string | undefined;
|
|
201
201
|
cargo?: string | undefined;
|
|
202
202
|
cyclone?: string | undefined;
|
|
203
203
|
container?: string | undefined;
|