@storm-software/config 1.108.0 → 1.110.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 +15 -1
- package/dist/{chunk-JFTD6CBJ.cjs → chunk-4SJ57WRV.cjs} +13 -13
- package/dist/{chunk-XA5LFJUS.js → chunk-FWJ7T4PW.js} +1 -1
- package/dist/{chunk-2DXL7O2R.js → chunk-HODJMVAD.js} +1 -1
- package/dist/{chunk-DWIKKIAV.cjs → chunk-OLYJTH7R.cjs} +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/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
|
-

|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.110.0](https://github.com/storm-software/storm-ops/releases/tag/config%401.110.0) (2025-03-16)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **git-tools:** Updated the default release notes banner image
|
|
10
|
+
([46b55b394](https://github.com/storm-software/storm-ops/commit/46b55b394))
|
|
11
|
+
|
|
12
|
+
## [1.109.0](https://github.com/storm-software/storm-ops/releases/tag/config%401.109.0) (2025-03-16)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- **git-tools:** Improve the release notes markdown text
|
|
17
|
+
([9192feeae](https://github.com/storm-software/storm-ops/commit/9192feeae))
|
|
18
|
+
|
|
5
19
|
## [1.108.0](https://github.com/storm-software/storm-ops/releases/tag/config%401.108.0) (2025-03-16)
|
|
6
20
|
|
|
7
21
|
### Features
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
var
|
|
14
|
+
var _chunkOLYJTH7Rcjs = require('./chunk-OLYJTH7R.cjs');
|
|
15
15
|
|
|
16
16
|
// src/schema.ts
|
|
17
17
|
var _zod = require('zod'); var _zod2 = _interopRequireDefault(_zod);
|
|
@@ -103,17 +103,17 @@ var WorkspaceBotConfigSchema = _zod2.default.object({
|
|
|
103
103
|
email: _zod2.default.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
|
|
104
104
|
}).describe("The workspace's bot user's config used to automated various operations tasks");
|
|
105
105
|
var WorkspaceReleaseConfigSchema = _zod2.default.object({
|
|
106
|
-
banner: _zod2.default.string().trim().default(
|
|
106
|
+
banner: _zod2.default.string().trim().default(_chunkOLYJTH7Rcjs.STORM_DEFAULT_RELEASE_BANNER).describe("A URL to a banner image used to display the workspace's release"),
|
|
107
107
|
header: _zod2.default.string().trim().optional().describe("A header message appended to the start of the workspace's release notes"),
|
|
108
|
-
footer: _zod2.default.string().trim().default(
|
|
108
|
+
footer: _zod2.default.string().trim().default(_chunkOLYJTH7Rcjs.STORM_DEFAULT_RELEASE_FOOTER).describe("A footer message appended to the end of the workspace's release notes")
|
|
109
109
|
}).describe("The workspace's release config used during the release process");
|
|
110
110
|
var WorkspaceAccountConfigSchema = _zod2.default.object({
|
|
111
|
-
twitter: _zod2.default.string().trim().default(
|
|
112
|
-
discord: _zod2.default.string().trim().default(
|
|
113
|
-
telegram: _zod2.default.string().trim().default(
|
|
114
|
-
slack: _zod2.default.string().trim().default(
|
|
115
|
-
medium: _zod2.default.string().trim().default(
|
|
116
|
-
github: _zod2.default.string().trim().default(
|
|
111
|
+
twitter: _zod2.default.string().trim().default(_chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_TWITTER).describe("A Twitter/X account associated with the organization/project"),
|
|
112
|
+
discord: _zod2.default.string().trim().default(_chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_DISCORD).describe("A Discord account associated with the organization/project"),
|
|
113
|
+
telegram: _zod2.default.string().trim().default(_chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM).describe("A Telegram account associated with the organization/project"),
|
|
114
|
+
slack: _zod2.default.string().trim().default(_chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_SLACK).describe("A Slack account associated with the organization/project"),
|
|
115
|
+
medium: _zod2.default.string().trim().default(_chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_MEDIUM).describe("A Medium account associated with the organization/project"),
|
|
116
|
+
github: _zod2.default.string().trim().default(_chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_GITHUB).describe("A GitHub account associated with the organization/project")
|
|
117
117
|
}).describe("The workspace's account config used to store various social media links");
|
|
118
118
|
var WorkspaceDirectoryConfigSchema = _zod2.default.object({
|
|
119
119
|
cache: _zod2.default.string().trim().optional().describe("The directory used to store the environment's cached file data"),
|
|
@@ -131,10 +131,10 @@ var StormConfigSchema = _zod2.default.object({
|
|
|
131
131
|
organization: _zod2.default.string().trim().default("storm-software").describe("The organization of the workspace"),
|
|
132
132
|
repository: _zod2.default.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
133
133
|
license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
134
|
-
homepage: _zod2.default.string().trim().url().default(
|
|
135
|
-
docs: _zod2.default.string().trim().url().default(
|
|
136
|
-
licensing: _zod2.default.string().trim().url().default(
|
|
137
|
-
contact: _zod2.default.string().trim().url().default(
|
|
134
|
+
homepage: _zod2.default.string().trim().url().default(_chunkOLYJTH7Rcjs.STORM_DEFAULT_HOMEPAGE).describe("The homepage of the workspace"),
|
|
135
|
+
docs: _zod2.default.string().trim().url().default(_chunkOLYJTH7Rcjs.STORM_DEFAULT_DOCS).describe("The base documentation site for the workspace"),
|
|
136
|
+
licensing: _zod2.default.string().trim().url().default(_chunkOLYJTH7Rcjs.STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
|
|
137
|
+
contact: _zod2.default.string().trim().url().default(_chunkOLYJTH7Rcjs.STORM_DEFAULT_CONTACT).describe("The base contact site for the workspace"),
|
|
138
138
|
branch: _zod2.default.string().trim().default("main").describe("The branch of the workspace"),
|
|
139
139
|
preid: _zod2.default.string().optional().describe("A tag specifying the version pre-release identifier"),
|
|
140
140
|
owner: _zod2.default.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
@@ -4,7 +4,7 @@ var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
|
4
4
|
var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
5
5
|
var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
|
|
6
6
|
var STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
7
|
-
var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/
|
|
7
|
+
var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
8
8
|
var STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
|
|
9
9
|
var STORM_DEFAULT_ACCOUNT_DISCORD = "https://discord.gg/MQ6YVzakM5";
|
|
10
10
|
var STORM_DEFAULT_ACCOUNT_TELEGRAM = "https://t.me/storm_software";
|
|
@@ -4,7 +4,7 @@ var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
|
4
4
|
var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
5
5
|
var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
|
|
6
6
|
var STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
7
|
-
var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/
|
|
7
|
+
var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
8
8
|
var STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
|
|
9
9
|
var STORM_DEFAULT_ACCOUNT_DISCORD = "https://discord.gg/MQ6YVzakM5";
|
|
10
10
|
var STORM_DEFAULT_ACCOUNT_TELEGRAM = "https://t.me/storm_software";
|
package/dist/constants.cjs
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
var
|
|
15
|
+
var _chunkOLYJTH7Rcjs = require('./chunk-OLYJTH7R.cjs');
|
|
16
16
|
require('./chunk-USNT2KNT.cjs');
|
|
17
17
|
|
|
18
18
|
|
|
@@ -28,4 +28,4 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
exports.STORM_DEFAULT_ACCOUNT_DISCORD =
|
|
31
|
+
exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkOLYJTH7Rcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkOLYJTH7Rcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkOLYJTH7Rcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = _chunkOLYJTH7Rcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkOLYJTH7Rcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkOLYJTH7Rcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkOLYJTH7Rcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkOLYJTH7Rcjs.STORM_DEFAULT_RELEASE_FOOTER;
|
package/dist/constants.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
|
3
3
|
declare const STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
4
4
|
declare const STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
|
|
5
5
|
declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
6
|
-
declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/
|
|
6
|
+
declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
7
7
|
declare const STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
|
|
8
8
|
declare const STORM_DEFAULT_ACCOUNT_DISCORD = "https://discord.gg/MQ6YVzakM5";
|
|
9
9
|
declare const STORM_DEFAULT_ACCOUNT_TELEGRAM = "https://t.me/storm_software";
|
package/dist/constants.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
|
3
3
|
declare const STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
4
4
|
declare const STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
|
|
5
5
|
declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
6
|
-
declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/
|
|
6
|
+
declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
7
7
|
declare const STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
|
|
8
8
|
declare const STORM_DEFAULT_ACCOUNT_DISCORD = "https://discord.gg/MQ6YVzakM5";
|
|
9
9
|
declare const STORM_DEFAULT_ACCOUNT_TELEGRAM = "https://t.me/storm_software";
|
package/dist/constants.js
CHANGED
package/dist/define-config.d.cts
CHANGED
|
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
19
19
|
footer?: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
account: {
|
|
22
|
-
github?: string | undefined;
|
|
23
22
|
twitter?: string | undefined;
|
|
24
23
|
discord?: string | undefined;
|
|
25
24
|
telegram?: string | undefined;
|
|
26
25
|
slack?: string | undefined;
|
|
27
26
|
medium?: string | undefined;
|
|
27
|
+
github?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
directories: {
|
|
30
30
|
cache?: string | undefined;
|
|
@@ -35,155 +35,155 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
35
35
|
build?: string | undefined;
|
|
36
36
|
};
|
|
37
37
|
colors: {
|
|
38
|
+
fatal?: string | undefined;
|
|
39
|
+
success?: string | undefined;
|
|
40
|
+
info?: string | undefined;
|
|
41
|
+
dark?: string | undefined;
|
|
42
|
+
light?: string | undefined;
|
|
43
|
+
brand?: string | undefined;
|
|
44
|
+
alternate?: string | undefined;
|
|
45
|
+
accent?: string | undefined;
|
|
46
|
+
link?: string | undefined;
|
|
47
|
+
help?: string | undefined;
|
|
48
|
+
warning?: string | undefined;
|
|
49
|
+
danger?: string | undefined;
|
|
50
|
+
positive?: string | undefined;
|
|
51
|
+
negative?: string | undefined;
|
|
52
|
+
} | {
|
|
38
53
|
dark: {
|
|
39
|
-
|
|
40
|
-
|
|
54
|
+
fatal?: string | undefined;
|
|
55
|
+
success?: string | undefined;
|
|
56
|
+
info?: string | undefined;
|
|
41
57
|
brand?: string | undefined;
|
|
42
58
|
alternate?: string | undefined;
|
|
43
59
|
accent?: string | undefined;
|
|
44
60
|
link?: string | undefined;
|
|
45
61
|
help?: string | undefined;
|
|
46
|
-
success?: string | undefined;
|
|
47
|
-
info?: string | undefined;
|
|
48
62
|
warning?: string | undefined;
|
|
49
63
|
danger?: string | undefined;
|
|
50
|
-
fatal?: string | undefined;
|
|
51
64
|
positive?: string | undefined;
|
|
52
65
|
negative?: string | undefined;
|
|
53
|
-
};
|
|
54
|
-
light: {
|
|
55
66
|
foreground?: string | undefined;
|
|
56
67
|
background?: string | undefined;
|
|
68
|
+
};
|
|
69
|
+
light: {
|
|
70
|
+
fatal?: string | undefined;
|
|
71
|
+
success?: string | undefined;
|
|
72
|
+
info?: string | undefined;
|
|
57
73
|
brand?: string | undefined;
|
|
58
74
|
alternate?: string | undefined;
|
|
59
75
|
accent?: string | undefined;
|
|
60
76
|
link?: string | undefined;
|
|
61
77
|
help?: string | undefined;
|
|
62
|
-
success?: string | undefined;
|
|
63
|
-
info?: string | undefined;
|
|
64
78
|
warning?: string | undefined;
|
|
65
79
|
danger?: string | undefined;
|
|
66
|
-
fatal?: string | undefined;
|
|
67
80
|
positive?: string | undefined;
|
|
68
81
|
negative?: string | undefined;
|
|
82
|
+
foreground?: string | undefined;
|
|
83
|
+
background?: string | undefined;
|
|
69
84
|
};
|
|
70
|
-
} | {
|
|
71
|
-
brand?: string | undefined;
|
|
72
|
-
alternate?: string | undefined;
|
|
73
|
-
accent?: string | undefined;
|
|
74
|
-
link?: string | undefined;
|
|
75
|
-
help?: string | undefined;
|
|
76
|
-
success?: string | undefined;
|
|
77
|
-
info?: string | undefined;
|
|
78
|
-
warning?: string | undefined;
|
|
79
|
-
danger?: string | undefined;
|
|
80
|
-
fatal?: string | undefined;
|
|
81
|
-
positive?: string | undefined;
|
|
82
|
-
negative?: string | undefined;
|
|
83
|
-
dark?: string | undefined;
|
|
84
|
-
light?: string | undefined;
|
|
85
85
|
} | {
|
|
86
86
|
base: {
|
|
87
|
+
fatal?: string | undefined;
|
|
88
|
+
success?: string | undefined;
|
|
89
|
+
info?: string | undefined;
|
|
90
|
+
dark?: string | undefined;
|
|
91
|
+
light?: string | undefined;
|
|
92
|
+
brand?: string | undefined;
|
|
93
|
+
alternate?: string | undefined;
|
|
94
|
+
accent?: string | undefined;
|
|
95
|
+
link?: string | undefined;
|
|
96
|
+
help?: string | undefined;
|
|
97
|
+
warning?: string | undefined;
|
|
98
|
+
danger?: string | undefined;
|
|
99
|
+
positive?: string | undefined;
|
|
100
|
+
negative?: string | undefined;
|
|
101
|
+
} | {
|
|
87
102
|
dark: {
|
|
88
|
-
|
|
89
|
-
|
|
103
|
+
fatal?: string | undefined;
|
|
104
|
+
success?: string | undefined;
|
|
105
|
+
info?: string | undefined;
|
|
90
106
|
brand?: string | undefined;
|
|
91
107
|
alternate?: string | undefined;
|
|
92
108
|
accent?: string | undefined;
|
|
93
109
|
link?: string | undefined;
|
|
94
110
|
help?: string | undefined;
|
|
95
|
-
success?: string | undefined;
|
|
96
|
-
info?: string | undefined;
|
|
97
111
|
warning?: string | undefined;
|
|
98
112
|
danger?: string | undefined;
|
|
99
|
-
fatal?: string | undefined;
|
|
100
113
|
positive?: string | undefined;
|
|
101
114
|
negative?: string | undefined;
|
|
102
|
-
};
|
|
103
|
-
light: {
|
|
104
115
|
foreground?: string | undefined;
|
|
105
116
|
background?: string | undefined;
|
|
117
|
+
};
|
|
118
|
+
light: {
|
|
119
|
+
fatal?: string | undefined;
|
|
120
|
+
success?: string | undefined;
|
|
121
|
+
info?: string | undefined;
|
|
106
122
|
brand?: string | undefined;
|
|
107
123
|
alternate?: string | undefined;
|
|
108
124
|
accent?: string | undefined;
|
|
109
125
|
link?: string | undefined;
|
|
110
126
|
help?: string | undefined;
|
|
111
|
-
success?: string | undefined;
|
|
112
|
-
info?: string | undefined;
|
|
113
127
|
warning?: string | undefined;
|
|
114
128
|
danger?: string | undefined;
|
|
115
|
-
fatal?: string | undefined;
|
|
116
129
|
positive?: string | undefined;
|
|
117
130
|
negative?: string | undefined;
|
|
131
|
+
foreground?: string | undefined;
|
|
132
|
+
background?: string | undefined;
|
|
118
133
|
};
|
|
119
|
-
} | {
|
|
120
|
-
brand?: string | undefined;
|
|
121
|
-
alternate?: string | undefined;
|
|
122
|
-
accent?: string | undefined;
|
|
123
|
-
link?: string | undefined;
|
|
124
|
-
help?: string | undefined;
|
|
125
|
-
success?: string | undefined;
|
|
126
|
-
info?: string | undefined;
|
|
127
|
-
warning?: string | undefined;
|
|
128
|
-
danger?: string | undefined;
|
|
129
|
-
fatal?: string | undefined;
|
|
130
|
-
positive?: string | undefined;
|
|
131
|
-
negative?: string | undefined;
|
|
132
|
-
dark?: string | undefined;
|
|
133
|
-
light?: string | undefined;
|
|
134
134
|
};
|
|
135
135
|
} | Record<string, {
|
|
136
|
+
fatal?: string | undefined;
|
|
137
|
+
success?: string | undefined;
|
|
138
|
+
info?: string | undefined;
|
|
139
|
+
dark?: string | undefined;
|
|
140
|
+
light?: string | undefined;
|
|
141
|
+
brand?: string | undefined;
|
|
142
|
+
alternate?: string | undefined;
|
|
143
|
+
accent?: string | undefined;
|
|
144
|
+
link?: string | undefined;
|
|
145
|
+
help?: string | undefined;
|
|
146
|
+
warning?: string | undefined;
|
|
147
|
+
danger?: string | undefined;
|
|
148
|
+
positive?: string | undefined;
|
|
149
|
+
negative?: string | undefined;
|
|
150
|
+
} | {
|
|
136
151
|
dark: {
|
|
137
|
-
|
|
138
|
-
|
|
152
|
+
fatal?: string | undefined;
|
|
153
|
+
success?: string | undefined;
|
|
154
|
+
info?: string | undefined;
|
|
139
155
|
brand?: string | undefined;
|
|
140
156
|
alternate?: string | undefined;
|
|
141
157
|
accent?: string | undefined;
|
|
142
158
|
link?: string | undefined;
|
|
143
159
|
help?: string | undefined;
|
|
144
|
-
success?: string | undefined;
|
|
145
|
-
info?: string | undefined;
|
|
146
160
|
warning?: string | undefined;
|
|
147
161
|
danger?: string | undefined;
|
|
148
|
-
fatal?: string | undefined;
|
|
149
162
|
positive?: string | undefined;
|
|
150
163
|
negative?: string | undefined;
|
|
151
|
-
};
|
|
152
|
-
light: {
|
|
153
164
|
foreground?: string | undefined;
|
|
154
165
|
background?: string | undefined;
|
|
166
|
+
};
|
|
167
|
+
light: {
|
|
168
|
+
fatal?: string | undefined;
|
|
169
|
+
success?: string | undefined;
|
|
170
|
+
info?: string | undefined;
|
|
155
171
|
brand?: string | undefined;
|
|
156
172
|
alternate?: string | undefined;
|
|
157
173
|
accent?: string | undefined;
|
|
158
174
|
link?: string | undefined;
|
|
159
175
|
help?: string | undefined;
|
|
160
|
-
success?: string | undefined;
|
|
161
|
-
info?: string | undefined;
|
|
162
176
|
warning?: string | undefined;
|
|
163
177
|
danger?: string | undefined;
|
|
164
|
-
fatal?: string | undefined;
|
|
165
178
|
positive?: string | undefined;
|
|
166
179
|
negative?: string | undefined;
|
|
180
|
+
foreground?: string | undefined;
|
|
181
|
+
background?: string | undefined;
|
|
167
182
|
};
|
|
168
|
-
} | {
|
|
169
|
-
brand?: string | undefined;
|
|
170
|
-
alternate?: string | undefined;
|
|
171
|
-
accent?: string | undefined;
|
|
172
|
-
link?: string | undefined;
|
|
173
|
-
help?: string | undefined;
|
|
174
|
-
success?: string | undefined;
|
|
175
|
-
info?: string | undefined;
|
|
176
|
-
warning?: string | undefined;
|
|
177
|
-
danger?: string | undefined;
|
|
178
|
-
fatal?: string | undefined;
|
|
179
|
-
positive?: string | undefined;
|
|
180
|
-
negative?: string | undefined;
|
|
181
|
-
dark?: string | undefined;
|
|
182
|
-
light?: string | undefined;
|
|
183
183
|
}>;
|
|
184
|
-
name?: string | undefined;
|
|
185
184
|
$schema?: string | null | undefined;
|
|
186
185
|
extends?: string | string[] | undefined;
|
|
186
|
+
name?: string | undefined;
|
|
187
187
|
namespace?: string | undefined;
|
|
188
188
|
organization?: string | undefined;
|
|
189
189
|
repository?: string | undefined;
|
|
@@ -202,7 +202,7 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
202
202
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
203
203
|
timezone?: string | undefined;
|
|
204
204
|
locale?: string | undefined;
|
|
205
|
-
logLevel?: "
|
|
205
|
+
logLevel?: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
|
|
206
206
|
skipConfigLogging?: boolean | undefined;
|
|
207
207
|
registry?: {
|
|
208
208
|
github?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
19
19
|
footer?: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
account: {
|
|
22
|
-
github?: string | undefined;
|
|
23
22
|
twitter?: string | undefined;
|
|
24
23
|
discord?: string | undefined;
|
|
25
24
|
telegram?: string | undefined;
|
|
26
25
|
slack?: string | undefined;
|
|
27
26
|
medium?: string | undefined;
|
|
27
|
+
github?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
directories: {
|
|
30
30
|
cache?: string | undefined;
|
|
@@ -35,155 +35,155 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
35
35
|
build?: string | undefined;
|
|
36
36
|
};
|
|
37
37
|
colors: {
|
|
38
|
+
fatal?: string | undefined;
|
|
39
|
+
success?: string | undefined;
|
|
40
|
+
info?: string | undefined;
|
|
41
|
+
dark?: string | undefined;
|
|
42
|
+
light?: string | undefined;
|
|
43
|
+
brand?: string | undefined;
|
|
44
|
+
alternate?: string | undefined;
|
|
45
|
+
accent?: string | undefined;
|
|
46
|
+
link?: string | undefined;
|
|
47
|
+
help?: string | undefined;
|
|
48
|
+
warning?: string | undefined;
|
|
49
|
+
danger?: string | undefined;
|
|
50
|
+
positive?: string | undefined;
|
|
51
|
+
negative?: string | undefined;
|
|
52
|
+
} | {
|
|
38
53
|
dark: {
|
|
39
|
-
|
|
40
|
-
|
|
54
|
+
fatal?: string | undefined;
|
|
55
|
+
success?: string | undefined;
|
|
56
|
+
info?: string | undefined;
|
|
41
57
|
brand?: string | undefined;
|
|
42
58
|
alternate?: string | undefined;
|
|
43
59
|
accent?: string | undefined;
|
|
44
60
|
link?: string | undefined;
|
|
45
61
|
help?: string | undefined;
|
|
46
|
-
success?: string | undefined;
|
|
47
|
-
info?: string | undefined;
|
|
48
62
|
warning?: string | undefined;
|
|
49
63
|
danger?: string | undefined;
|
|
50
|
-
fatal?: string | undefined;
|
|
51
64
|
positive?: string | undefined;
|
|
52
65
|
negative?: string | undefined;
|
|
53
|
-
};
|
|
54
|
-
light: {
|
|
55
66
|
foreground?: string | undefined;
|
|
56
67
|
background?: string | undefined;
|
|
68
|
+
};
|
|
69
|
+
light: {
|
|
70
|
+
fatal?: string | undefined;
|
|
71
|
+
success?: string | undefined;
|
|
72
|
+
info?: string | undefined;
|
|
57
73
|
brand?: string | undefined;
|
|
58
74
|
alternate?: string | undefined;
|
|
59
75
|
accent?: string | undefined;
|
|
60
76
|
link?: string | undefined;
|
|
61
77
|
help?: string | undefined;
|
|
62
|
-
success?: string | undefined;
|
|
63
|
-
info?: string | undefined;
|
|
64
78
|
warning?: string | undefined;
|
|
65
79
|
danger?: string | undefined;
|
|
66
|
-
fatal?: string | undefined;
|
|
67
80
|
positive?: string | undefined;
|
|
68
81
|
negative?: string | undefined;
|
|
82
|
+
foreground?: string | undefined;
|
|
83
|
+
background?: string | undefined;
|
|
69
84
|
};
|
|
70
|
-
} | {
|
|
71
|
-
brand?: string | undefined;
|
|
72
|
-
alternate?: string | undefined;
|
|
73
|
-
accent?: string | undefined;
|
|
74
|
-
link?: string | undefined;
|
|
75
|
-
help?: string | undefined;
|
|
76
|
-
success?: string | undefined;
|
|
77
|
-
info?: string | undefined;
|
|
78
|
-
warning?: string | undefined;
|
|
79
|
-
danger?: string | undefined;
|
|
80
|
-
fatal?: string | undefined;
|
|
81
|
-
positive?: string | undefined;
|
|
82
|
-
negative?: string | undefined;
|
|
83
|
-
dark?: string | undefined;
|
|
84
|
-
light?: string | undefined;
|
|
85
85
|
} | {
|
|
86
86
|
base: {
|
|
87
|
+
fatal?: string | undefined;
|
|
88
|
+
success?: string | undefined;
|
|
89
|
+
info?: string | undefined;
|
|
90
|
+
dark?: string | undefined;
|
|
91
|
+
light?: string | undefined;
|
|
92
|
+
brand?: string | undefined;
|
|
93
|
+
alternate?: string | undefined;
|
|
94
|
+
accent?: string | undefined;
|
|
95
|
+
link?: string | undefined;
|
|
96
|
+
help?: string | undefined;
|
|
97
|
+
warning?: string | undefined;
|
|
98
|
+
danger?: string | undefined;
|
|
99
|
+
positive?: string | undefined;
|
|
100
|
+
negative?: string | undefined;
|
|
101
|
+
} | {
|
|
87
102
|
dark: {
|
|
88
|
-
|
|
89
|
-
|
|
103
|
+
fatal?: string | undefined;
|
|
104
|
+
success?: string | undefined;
|
|
105
|
+
info?: string | undefined;
|
|
90
106
|
brand?: string | undefined;
|
|
91
107
|
alternate?: string | undefined;
|
|
92
108
|
accent?: string | undefined;
|
|
93
109
|
link?: string | undefined;
|
|
94
110
|
help?: string | undefined;
|
|
95
|
-
success?: string | undefined;
|
|
96
|
-
info?: string | undefined;
|
|
97
111
|
warning?: string | undefined;
|
|
98
112
|
danger?: string | undefined;
|
|
99
|
-
fatal?: string | undefined;
|
|
100
113
|
positive?: string | undefined;
|
|
101
114
|
negative?: string | undefined;
|
|
102
|
-
};
|
|
103
|
-
light: {
|
|
104
115
|
foreground?: string | undefined;
|
|
105
116
|
background?: string | undefined;
|
|
117
|
+
};
|
|
118
|
+
light: {
|
|
119
|
+
fatal?: string | undefined;
|
|
120
|
+
success?: string | undefined;
|
|
121
|
+
info?: string | undefined;
|
|
106
122
|
brand?: string | undefined;
|
|
107
123
|
alternate?: string | undefined;
|
|
108
124
|
accent?: string | undefined;
|
|
109
125
|
link?: string | undefined;
|
|
110
126
|
help?: string | undefined;
|
|
111
|
-
success?: string | undefined;
|
|
112
|
-
info?: string | undefined;
|
|
113
127
|
warning?: string | undefined;
|
|
114
128
|
danger?: string | undefined;
|
|
115
|
-
fatal?: string | undefined;
|
|
116
129
|
positive?: string | undefined;
|
|
117
130
|
negative?: string | undefined;
|
|
131
|
+
foreground?: string | undefined;
|
|
132
|
+
background?: string | undefined;
|
|
118
133
|
};
|
|
119
|
-
} | {
|
|
120
|
-
brand?: string | undefined;
|
|
121
|
-
alternate?: string | undefined;
|
|
122
|
-
accent?: string | undefined;
|
|
123
|
-
link?: string | undefined;
|
|
124
|
-
help?: string | undefined;
|
|
125
|
-
success?: string | undefined;
|
|
126
|
-
info?: string | undefined;
|
|
127
|
-
warning?: string | undefined;
|
|
128
|
-
danger?: string | undefined;
|
|
129
|
-
fatal?: string | undefined;
|
|
130
|
-
positive?: string | undefined;
|
|
131
|
-
negative?: string | undefined;
|
|
132
|
-
dark?: string | undefined;
|
|
133
|
-
light?: string | undefined;
|
|
134
134
|
};
|
|
135
135
|
} | Record<string, {
|
|
136
|
+
fatal?: string | undefined;
|
|
137
|
+
success?: string | undefined;
|
|
138
|
+
info?: string | undefined;
|
|
139
|
+
dark?: string | undefined;
|
|
140
|
+
light?: string | undefined;
|
|
141
|
+
brand?: string | undefined;
|
|
142
|
+
alternate?: string | undefined;
|
|
143
|
+
accent?: string | undefined;
|
|
144
|
+
link?: string | undefined;
|
|
145
|
+
help?: string | undefined;
|
|
146
|
+
warning?: string | undefined;
|
|
147
|
+
danger?: string | undefined;
|
|
148
|
+
positive?: string | undefined;
|
|
149
|
+
negative?: string | undefined;
|
|
150
|
+
} | {
|
|
136
151
|
dark: {
|
|
137
|
-
|
|
138
|
-
|
|
152
|
+
fatal?: string | undefined;
|
|
153
|
+
success?: string | undefined;
|
|
154
|
+
info?: string | undefined;
|
|
139
155
|
brand?: string | undefined;
|
|
140
156
|
alternate?: string | undefined;
|
|
141
157
|
accent?: string | undefined;
|
|
142
158
|
link?: string | undefined;
|
|
143
159
|
help?: string | undefined;
|
|
144
|
-
success?: string | undefined;
|
|
145
|
-
info?: string | undefined;
|
|
146
160
|
warning?: string | undefined;
|
|
147
161
|
danger?: string | undefined;
|
|
148
|
-
fatal?: string | undefined;
|
|
149
162
|
positive?: string | undefined;
|
|
150
163
|
negative?: string | undefined;
|
|
151
|
-
};
|
|
152
|
-
light: {
|
|
153
164
|
foreground?: string | undefined;
|
|
154
165
|
background?: string | undefined;
|
|
166
|
+
};
|
|
167
|
+
light: {
|
|
168
|
+
fatal?: string | undefined;
|
|
169
|
+
success?: string | undefined;
|
|
170
|
+
info?: string | undefined;
|
|
155
171
|
brand?: string | undefined;
|
|
156
172
|
alternate?: string | undefined;
|
|
157
173
|
accent?: string | undefined;
|
|
158
174
|
link?: string | undefined;
|
|
159
175
|
help?: string | undefined;
|
|
160
|
-
success?: string | undefined;
|
|
161
|
-
info?: string | undefined;
|
|
162
176
|
warning?: string | undefined;
|
|
163
177
|
danger?: string | undefined;
|
|
164
|
-
fatal?: string | undefined;
|
|
165
178
|
positive?: string | undefined;
|
|
166
179
|
negative?: string | undefined;
|
|
180
|
+
foreground?: string | undefined;
|
|
181
|
+
background?: string | undefined;
|
|
167
182
|
};
|
|
168
|
-
} | {
|
|
169
|
-
brand?: string | undefined;
|
|
170
|
-
alternate?: string | undefined;
|
|
171
|
-
accent?: string | undefined;
|
|
172
|
-
link?: string | undefined;
|
|
173
|
-
help?: string | undefined;
|
|
174
|
-
success?: string | undefined;
|
|
175
|
-
info?: string | undefined;
|
|
176
|
-
warning?: string | undefined;
|
|
177
|
-
danger?: string | undefined;
|
|
178
|
-
fatal?: string | undefined;
|
|
179
|
-
positive?: string | undefined;
|
|
180
|
-
negative?: string | undefined;
|
|
181
|
-
dark?: string | undefined;
|
|
182
|
-
light?: string | undefined;
|
|
183
183
|
}>;
|
|
184
|
-
name?: string | undefined;
|
|
185
184
|
$schema?: string | null | undefined;
|
|
186
185
|
extends?: string | string[] | undefined;
|
|
186
|
+
name?: string | undefined;
|
|
187
187
|
namespace?: string | undefined;
|
|
188
188
|
organization?: string | undefined;
|
|
189
189
|
repository?: string | undefined;
|
|
@@ -202,7 +202,7 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
202
202
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
203
203
|
timezone?: string | undefined;
|
|
204
204
|
locale?: string | undefined;
|
|
205
|
-
logLevel?: "
|
|
205
|
+
logLevel?: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
|
|
206
206
|
skipConfigLogging?: boolean | undefined;
|
|
207
207
|
registry?: {
|
|
208
208
|
github?: string | undefined;
|