@storm-software/projen 0.21.131 → 0.21.133
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 +24 -0
- package/README.md +1 -1
- package/dist/{chunk-QJPNBZGM.mjs → chunk-ILS5O2LT.mjs} +46 -8
- package/dist/{chunk-FNUSG5BI.js → chunk-V45PWHBM.js} +46 -8
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +1 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +1 -1
- package/dist/src/generators/init/generator.js +2 -2
- package/dist/src/generators/init/generator.mjs +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.21.132](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.132) (03/18/2026)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **config:** Added the `performance` color configuration and logLevel ([02e67c64e](https://github.com/storm-software/storm-ops/commit/02e67c64e))
|
|
10
|
+
|
|
11
|
+
### Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated **workspace-tools** to **v1.295.17**
|
|
14
|
+
- Updated **config-tools** to **v1.189.41**
|
|
15
|
+
- Updated **config** to **v1.136.0**
|
|
16
|
+
|
|
17
|
+
## [0.21.131](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.131) (03/18/2026)
|
|
18
|
+
|
|
19
|
+
### Miscellaneous
|
|
20
|
+
|
|
21
|
+
- **devenv-modules:** Update tasks for devenv modules ([7e9677f2e](https://github.com/storm-software/storm-ops/commit/7e9677f2e))
|
|
22
|
+
|
|
23
|
+
### Updated Dependencies
|
|
24
|
+
|
|
25
|
+
- Updated **workspace-tools** to **v1.295.16**
|
|
26
|
+
- Updated **config-tools** to **v1.189.40**
|
|
27
|
+
- Updated **config** to **v1.135.41**
|
|
28
|
+
|
|
5
29
|
## [0.21.130](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.130) (03/16/2026)
|
|
6
30
|
|
|
7
31
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
|
@@ -48,6 +48,7 @@ var LogLevel = {
|
|
|
48
48
|
WARN: 30,
|
|
49
49
|
SUCCESS: 35,
|
|
50
50
|
INFO: 40,
|
|
51
|
+
PERFORMANCE: 50,
|
|
51
52
|
DEBUG: 60,
|
|
52
53
|
TRACE: 70,
|
|
53
54
|
ALL: 100
|
|
@@ -59,6 +60,7 @@ var LogLevelLabel = {
|
|
|
59
60
|
WARN: "warn",
|
|
60
61
|
SUCCESS: "success",
|
|
61
62
|
INFO: "info",
|
|
63
|
+
PERFORMANCE: "performance",
|
|
62
64
|
DEBUG: "debug",
|
|
63
65
|
TRACE: "trace",
|
|
64
66
|
ALL: "all"
|
|
@@ -79,6 +81,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
79
81
|
warning: "#e3b341",
|
|
80
82
|
danger: "#D8314A",
|
|
81
83
|
fatal: "#51070f",
|
|
84
|
+
performance: "#83ff83",
|
|
82
85
|
link: "#3fa6ff",
|
|
83
86
|
positive: "#22c55e",
|
|
84
87
|
negative: "#dc2626",
|
|
@@ -96,6 +99,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
96
99
|
warning: "#f3d371",
|
|
97
100
|
danger: "#D8314A",
|
|
98
101
|
fatal: "#a40e26",
|
|
102
|
+
performance: "#00ff00",
|
|
99
103
|
link: "#3fa6ff",
|
|
100
104
|
positive: "#22c55e",
|
|
101
105
|
negative: "#dc2626",
|
|
@@ -188,6 +192,7 @@ var CONSOLE_ICONS = {
|
|
|
188
192
|
[LogLevelLabel.FATAL]: useIcon("\u{1F571}", "\xD7"),
|
|
189
193
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
190
194
|
[LogLevelLabel.INFO]: useIcon("\u2139", "i"),
|
|
195
|
+
[LogLevelLabel.PERFORMANCE]: useIcon("\u23F1", "\u23F1"),
|
|
191
196
|
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
192
197
|
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
193
198
|
[LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
|
|
@@ -210,6 +215,8 @@ var getLogLevel = (label) => {
|
|
|
210
215
|
return LogLevel.TRACE;
|
|
211
216
|
case "debug":
|
|
212
217
|
return LogLevel.DEBUG;
|
|
218
|
+
case "performance":
|
|
219
|
+
return LogLevel.PERFORMANCE;
|
|
213
220
|
case "info":
|
|
214
221
|
return LogLevel.INFO;
|
|
215
222
|
case "warn":
|
|
@@ -234,6 +241,9 @@ var getLogLevelLabel = (logLevel = LogLevel.INFO) => {
|
|
|
234
241
|
if (logLevel >= LogLevel.DEBUG) {
|
|
235
242
|
return LogLevelLabel.DEBUG;
|
|
236
243
|
}
|
|
244
|
+
if (logLevel >= LogLevel.PERFORMANCE) {
|
|
245
|
+
return LogLevelLabel.PERFORMANCE;
|
|
246
|
+
}
|
|
237
247
|
if (logLevel >= LogLevel.INFO) {
|
|
238
248
|
return LogLevelLabel.INFO;
|
|
239
249
|
}
|
|
@@ -321,6 +331,19 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
|
321
331
|
)(
|
|
322
332
|
`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `
|
|
323
333
|
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
334
|
+
`
|
|
335
|
+
);
|
|
336
|
+
};
|
|
337
|
+
}
|
|
338
|
+
if (typeof logLevel === "number" && LogLevel.PERFORMANCE >= logLevel) {
|
|
339
|
+
return (message) => {
|
|
340
|
+
console.debug(
|
|
341
|
+
`
|
|
342
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
343
|
+
colors.performance ?? DEFAULT_COLOR_CONFIG.dark.performance
|
|
344
|
+
)(
|
|
345
|
+
`[${CONSOLE_ICONS[LogLevelLabel.PERFORMANCE]} Performance] `
|
|
346
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
324
347
|
`
|
|
325
348
|
);
|
|
326
349
|
};
|
|
@@ -366,18 +389,16 @@ var writeError = (message, config) => getLogFn(LogLevel.ERROR, config)(message);
|
|
|
366
389
|
var writeWarning = (message, config) => getLogFn(LogLevel.WARN, config)(message);
|
|
367
390
|
var writeInfo = (message, config) => getLogFn(LogLevel.INFO, config)(message);
|
|
368
391
|
var writeSuccess = (message, config) => getLogFn(LogLevel.SUCCESS, config)(message);
|
|
392
|
+
var writePerformance = (message, config) => getLogFn(LogLevel.PERFORMANCE, config)(message);
|
|
369
393
|
var writeDebug = (message, config) => getLogFn(LogLevel.DEBUG, config)(message);
|
|
370
394
|
var writeTrace = (message, config) => getLogFn(LogLevel.TRACE, config)(message);
|
|
371
395
|
var getStopwatch = (name) => {
|
|
372
396
|
const start = /* @__PURE__ */ new Date();
|
|
373
397
|
return () => {
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
includeSeconds: true
|
|
379
|
-
}
|
|
380
|
-
)} to complete`
|
|
398
|
+
writePerformance(
|
|
399
|
+
`The${name ? ` ${name}` : ""} process took ${formatDistanceToNow(start, {
|
|
400
|
+
includeSeconds: true
|
|
401
|
+
})} to complete`
|
|
381
402
|
);
|
|
382
403
|
};
|
|
383
404
|
};
|
|
@@ -672,6 +693,10 @@ var fatalColorSchema = z.optional(colorSchema);
|
|
|
672
693
|
schemaRegistry.add(fatalColorSchema, {
|
|
673
694
|
description: "The fatal color of the workspace"
|
|
674
695
|
});
|
|
696
|
+
var performanceColorSchema = z._default(colorSchema, "#00ff00");
|
|
697
|
+
schemaRegistry.add(performanceColorSchema, {
|
|
698
|
+
description: "The performance color of the workspace"
|
|
699
|
+
});
|
|
675
700
|
var positiveColorSchema = z._default(colorSchema, "#4ade80");
|
|
676
701
|
schemaRegistry.add(positiveColorSchema, {
|
|
677
702
|
description: "The positive number color of the workspace"
|
|
@@ -698,6 +723,7 @@ var darkColorsSchema = z.object({
|
|
|
698
723
|
warning: warningColorSchema,
|
|
699
724
|
danger: dangerColorSchema,
|
|
700
725
|
fatal: fatalColorSchema,
|
|
726
|
+
performance: performanceColorSchema,
|
|
701
727
|
positive: positiveColorSchema,
|
|
702
728
|
negative: negativeColorSchema,
|
|
703
729
|
gradient: gradientStopsSchema
|
|
@@ -716,6 +742,7 @@ var lightColorsSchema = z.object({
|
|
|
716
742
|
warning: warningColorSchema,
|
|
717
743
|
danger: dangerColorSchema,
|
|
718
744
|
fatal: fatalColorSchema,
|
|
745
|
+
performance: performanceColorSchema,
|
|
719
746
|
positive: positiveColorSchema,
|
|
720
747
|
negative: negativeColorSchema,
|
|
721
748
|
gradient: gradientStopsSchema
|
|
@@ -738,6 +765,7 @@ var singleColorsSchema = z.object({
|
|
|
738
765
|
warning: warningColorSchema,
|
|
739
766
|
danger: dangerColorSchema,
|
|
740
767
|
fatal: fatalColorSchema,
|
|
768
|
+
performance: performanceColorSchema,
|
|
741
769
|
positive: positiveColorSchema,
|
|
742
770
|
negative: negativeColorSchema,
|
|
743
771
|
gradient: gradientStopsSchema
|
|
@@ -1105,6 +1133,7 @@ var logLevelSchema = z._default(
|
|
|
1105
1133
|
"warn",
|
|
1106
1134
|
"success",
|
|
1107
1135
|
"info",
|
|
1136
|
+
"performance",
|
|
1108
1137
|
"debug",
|
|
1109
1138
|
"trace",
|
|
1110
1139
|
"all"
|
|
@@ -1185,6 +1214,7 @@ var COLOR_KEYS = [
|
|
|
1185
1214
|
"warning",
|
|
1186
1215
|
"danger",
|
|
1187
1216
|
"fatal",
|
|
1217
|
+
"performance",
|
|
1188
1218
|
"positive",
|
|
1189
1219
|
"negative"
|
|
1190
1220
|
];
|
|
@@ -1527,6 +1557,7 @@ var getSingleThemeColorsEnv = (prefix) => {
|
|
|
1527
1557
|
warning: process.env[`${prefix}WARNING`],
|
|
1528
1558
|
danger: process.env[`${prefix}DANGER`],
|
|
1529
1559
|
fatal: process.env[`${prefix}FATAL`],
|
|
1560
|
+
performance: process.env[`${prefix}PERFORMANCE`],
|
|
1530
1561
|
positive: process.env[`${prefix}POSITIVE`],
|
|
1531
1562
|
negative: process.env[`${prefix}NEGATIVE`],
|
|
1532
1563
|
gradient
|
|
@@ -1566,6 +1597,7 @@ var getBaseThemeColorsEnv = (prefix) => {
|
|
|
1566
1597
|
warning: process.env[`${prefix}WARNING`],
|
|
1567
1598
|
danger: process.env[`${prefix}DANGER`],
|
|
1568
1599
|
fatal: process.env[`${prefix}FATAL`],
|
|
1600
|
+
performance: process.env[`${prefix}PERFORMANCE`],
|
|
1569
1601
|
positive: process.env[`${prefix}POSITIVE`],
|
|
1570
1602
|
negative: process.env[`${prefix}NEGATIVE`],
|
|
1571
1603
|
gradient
|
|
@@ -1877,6 +1909,9 @@ var setSingleThemeColorsEnv = (prefix, config) => {
|
|
|
1877
1909
|
if (config.fatal) {
|
|
1878
1910
|
process.env[`${prefix}FATAL`] = config.fatal;
|
|
1879
1911
|
}
|
|
1912
|
+
if (config.performance) {
|
|
1913
|
+
process.env[`${prefix}PERFORMANCE`] = config.performance;
|
|
1914
|
+
}
|
|
1880
1915
|
if (config.positive) {
|
|
1881
1916
|
process.env[`${prefix}POSITIVE`] = config.positive;
|
|
1882
1917
|
}
|
|
@@ -1935,6 +1970,9 @@ var setBaseThemeColorsEnv = (prefix, config) => {
|
|
|
1935
1970
|
if (config.fatal) {
|
|
1936
1971
|
process.env[`${prefix}FATAL`] = config.fatal;
|
|
1937
1972
|
}
|
|
1973
|
+
if (config.performance) {
|
|
1974
|
+
process.env[`${prefix}PERFORMANCE`] = config.performance;
|
|
1975
|
+
}
|
|
1938
1976
|
if (config.positive) {
|
|
1939
1977
|
process.env[`${prefix}POSITIVE`] = config.positive;
|
|
1940
1978
|
}
|
|
@@ -3581,7 +3619,7 @@ var resolveOptions = async (userOptions) => {
|
|
|
3581
3619
|
dts: true,
|
|
3582
3620
|
shims: true,
|
|
3583
3621
|
silent: !debug,
|
|
3584
|
-
logLevel: workspaceConfig.logLevel === "success" || workspaceConfig.logLevel === "debug" || workspaceConfig.logLevel === "trace" || workspaceConfig.logLevel === "all" ? "info" : workspaceConfig.logLevel === "fatal" ? "error" : workspaceConfig.logLevel,
|
|
3622
|
+
logLevel: workspaceConfig.logLevel === "success" || workspaceConfig.logLevel === "performance" || workspaceConfig.logLevel === "debug" || workspaceConfig.logLevel === "trace" || workspaceConfig.logLevel === "all" ? "info" : workspaceConfig.logLevel === "fatal" ? "error" : workspaceConfig.logLevel,
|
|
3585
3623
|
sourcemap: debug ? "inline" : false,
|
|
3586
3624
|
clean: false,
|
|
3587
3625
|
fixedExtension: true,
|
|
@@ -47,6 +47,7 @@ var LogLevel = {
|
|
|
47
47
|
WARN: 30,
|
|
48
48
|
SUCCESS: 35,
|
|
49
49
|
INFO: 40,
|
|
50
|
+
PERFORMANCE: 50,
|
|
50
51
|
DEBUG: 60,
|
|
51
52
|
TRACE: 70,
|
|
52
53
|
ALL: 100
|
|
@@ -58,6 +59,7 @@ var LogLevelLabel = {
|
|
|
58
59
|
WARN: "warn",
|
|
59
60
|
SUCCESS: "success",
|
|
60
61
|
INFO: "info",
|
|
62
|
+
PERFORMANCE: "performance",
|
|
61
63
|
DEBUG: "debug",
|
|
62
64
|
TRACE: "trace",
|
|
63
65
|
ALL: "all"
|
|
@@ -78,6 +80,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
78
80
|
warning: "#e3b341",
|
|
79
81
|
danger: "#D8314A",
|
|
80
82
|
fatal: "#51070f",
|
|
83
|
+
performance: "#83ff83",
|
|
81
84
|
link: "#3fa6ff",
|
|
82
85
|
positive: "#22c55e",
|
|
83
86
|
negative: "#dc2626",
|
|
@@ -95,6 +98,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
95
98
|
warning: "#f3d371",
|
|
96
99
|
danger: "#D8314A",
|
|
97
100
|
fatal: "#a40e26",
|
|
101
|
+
performance: "#00ff00",
|
|
98
102
|
link: "#3fa6ff",
|
|
99
103
|
positive: "#22c55e",
|
|
100
104
|
negative: "#dc2626",
|
|
@@ -187,6 +191,7 @@ var CONSOLE_ICONS = {
|
|
|
187
191
|
[LogLevelLabel.FATAL]: useIcon("\u{1F571}", "\xD7"),
|
|
188
192
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
189
193
|
[LogLevelLabel.INFO]: useIcon("\u2139", "i"),
|
|
194
|
+
[LogLevelLabel.PERFORMANCE]: useIcon("\u23F1", "\u23F1"),
|
|
190
195
|
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
191
196
|
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
192
197
|
[LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
|
|
@@ -209,6 +214,8 @@ var getLogLevel = (label) => {
|
|
|
209
214
|
return LogLevel.TRACE;
|
|
210
215
|
case "debug":
|
|
211
216
|
return LogLevel.DEBUG;
|
|
217
|
+
case "performance":
|
|
218
|
+
return LogLevel.PERFORMANCE;
|
|
212
219
|
case "info":
|
|
213
220
|
return LogLevel.INFO;
|
|
214
221
|
case "warn":
|
|
@@ -233,6 +240,9 @@ var getLogLevelLabel = (logLevel = LogLevel.INFO) => {
|
|
|
233
240
|
if (logLevel >= LogLevel.DEBUG) {
|
|
234
241
|
return LogLevelLabel.DEBUG;
|
|
235
242
|
}
|
|
243
|
+
if (logLevel >= LogLevel.PERFORMANCE) {
|
|
244
|
+
return LogLevelLabel.PERFORMANCE;
|
|
245
|
+
}
|
|
236
246
|
if (logLevel >= LogLevel.INFO) {
|
|
237
247
|
return LogLevelLabel.INFO;
|
|
238
248
|
}
|
|
@@ -320,6 +330,19 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
|
320
330
|
)(
|
|
321
331
|
`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `
|
|
322
332
|
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
333
|
+
`
|
|
334
|
+
);
|
|
335
|
+
};
|
|
336
|
+
}
|
|
337
|
+
if (typeof logLevel === "number" && LogLevel.PERFORMANCE >= logLevel) {
|
|
338
|
+
return (message) => {
|
|
339
|
+
console.debug(
|
|
340
|
+
`
|
|
341
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
342
|
+
_nullishCoalesce(colors.performance, () => ( DEFAULT_COLOR_CONFIG.dark.performance))
|
|
343
|
+
)(
|
|
344
|
+
`[${CONSOLE_ICONS[LogLevelLabel.PERFORMANCE]} Performance] `
|
|
345
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
323
346
|
`
|
|
324
347
|
);
|
|
325
348
|
};
|
|
@@ -365,18 +388,16 @@ var writeError = (message, config) => getLogFn(LogLevel.ERROR, config)(message);
|
|
|
365
388
|
var writeWarning = (message, config) => getLogFn(LogLevel.WARN, config)(message);
|
|
366
389
|
var writeInfo = (message, config) => getLogFn(LogLevel.INFO, config)(message);
|
|
367
390
|
var writeSuccess = (message, config) => getLogFn(LogLevel.SUCCESS, config)(message);
|
|
391
|
+
var writePerformance = (message, config) => getLogFn(LogLevel.PERFORMANCE, config)(message);
|
|
368
392
|
var writeDebug = (message, config) => getLogFn(LogLevel.DEBUG, config)(message);
|
|
369
393
|
var writeTrace = (message, config) => getLogFn(LogLevel.TRACE, config)(message);
|
|
370
394
|
var getStopwatch = (name) => {
|
|
371
395
|
const start = /* @__PURE__ */ new Date();
|
|
372
396
|
return () => {
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
includeSeconds: true
|
|
378
|
-
}
|
|
379
|
-
)} to complete`
|
|
397
|
+
writePerformance(
|
|
398
|
+
`The${name ? ` ${name}` : ""} process took ${_formatDistanceToNow.formatDistanceToNow.call(void 0, start, {
|
|
399
|
+
includeSeconds: true
|
|
400
|
+
})} to complete`
|
|
380
401
|
);
|
|
381
402
|
};
|
|
382
403
|
};
|
|
@@ -671,6 +692,10 @@ var fatalColorSchema = z.optional(colorSchema);
|
|
|
671
692
|
schemaRegistry.add(fatalColorSchema, {
|
|
672
693
|
description: "The fatal color of the workspace"
|
|
673
694
|
});
|
|
695
|
+
var performanceColorSchema = z._default(colorSchema, "#00ff00");
|
|
696
|
+
schemaRegistry.add(performanceColorSchema, {
|
|
697
|
+
description: "The performance color of the workspace"
|
|
698
|
+
});
|
|
674
699
|
var positiveColorSchema = z._default(colorSchema, "#4ade80");
|
|
675
700
|
schemaRegistry.add(positiveColorSchema, {
|
|
676
701
|
description: "The positive number color of the workspace"
|
|
@@ -697,6 +722,7 @@ var darkColorsSchema = z.object({
|
|
|
697
722
|
warning: warningColorSchema,
|
|
698
723
|
danger: dangerColorSchema,
|
|
699
724
|
fatal: fatalColorSchema,
|
|
725
|
+
performance: performanceColorSchema,
|
|
700
726
|
positive: positiveColorSchema,
|
|
701
727
|
negative: negativeColorSchema,
|
|
702
728
|
gradient: gradientStopsSchema
|
|
@@ -715,6 +741,7 @@ var lightColorsSchema = z.object({
|
|
|
715
741
|
warning: warningColorSchema,
|
|
716
742
|
danger: dangerColorSchema,
|
|
717
743
|
fatal: fatalColorSchema,
|
|
744
|
+
performance: performanceColorSchema,
|
|
718
745
|
positive: positiveColorSchema,
|
|
719
746
|
negative: negativeColorSchema,
|
|
720
747
|
gradient: gradientStopsSchema
|
|
@@ -737,6 +764,7 @@ var singleColorsSchema = z.object({
|
|
|
737
764
|
warning: warningColorSchema,
|
|
738
765
|
danger: dangerColorSchema,
|
|
739
766
|
fatal: fatalColorSchema,
|
|
767
|
+
performance: performanceColorSchema,
|
|
740
768
|
positive: positiveColorSchema,
|
|
741
769
|
negative: negativeColorSchema,
|
|
742
770
|
gradient: gradientStopsSchema
|
|
@@ -1104,6 +1132,7 @@ var logLevelSchema = z._default(
|
|
|
1104
1132
|
"warn",
|
|
1105
1133
|
"success",
|
|
1106
1134
|
"info",
|
|
1135
|
+
"performance",
|
|
1107
1136
|
"debug",
|
|
1108
1137
|
"trace",
|
|
1109
1138
|
"all"
|
|
@@ -1184,6 +1213,7 @@ var COLOR_KEYS = [
|
|
|
1184
1213
|
"warning",
|
|
1185
1214
|
"danger",
|
|
1186
1215
|
"fatal",
|
|
1216
|
+
"performance",
|
|
1187
1217
|
"positive",
|
|
1188
1218
|
"negative"
|
|
1189
1219
|
];
|
|
@@ -1526,6 +1556,7 @@ var getSingleThemeColorsEnv = (prefix) => {
|
|
|
1526
1556
|
warning: process.env[`${prefix}WARNING`],
|
|
1527
1557
|
danger: process.env[`${prefix}DANGER`],
|
|
1528
1558
|
fatal: process.env[`${prefix}FATAL`],
|
|
1559
|
+
performance: process.env[`${prefix}PERFORMANCE`],
|
|
1529
1560
|
positive: process.env[`${prefix}POSITIVE`],
|
|
1530
1561
|
negative: process.env[`${prefix}NEGATIVE`],
|
|
1531
1562
|
gradient
|
|
@@ -1565,6 +1596,7 @@ var getBaseThemeColorsEnv = (prefix) => {
|
|
|
1565
1596
|
warning: process.env[`${prefix}WARNING`],
|
|
1566
1597
|
danger: process.env[`${prefix}DANGER`],
|
|
1567
1598
|
fatal: process.env[`${prefix}FATAL`],
|
|
1599
|
+
performance: process.env[`${prefix}PERFORMANCE`],
|
|
1568
1600
|
positive: process.env[`${prefix}POSITIVE`],
|
|
1569
1601
|
negative: process.env[`${prefix}NEGATIVE`],
|
|
1570
1602
|
gradient
|
|
@@ -1876,6 +1908,9 @@ var setSingleThemeColorsEnv = (prefix, config) => {
|
|
|
1876
1908
|
if (config.fatal) {
|
|
1877
1909
|
process.env[`${prefix}FATAL`] = config.fatal;
|
|
1878
1910
|
}
|
|
1911
|
+
if (config.performance) {
|
|
1912
|
+
process.env[`${prefix}PERFORMANCE`] = config.performance;
|
|
1913
|
+
}
|
|
1879
1914
|
if (config.positive) {
|
|
1880
1915
|
process.env[`${prefix}POSITIVE`] = config.positive;
|
|
1881
1916
|
}
|
|
@@ -1934,6 +1969,9 @@ var setBaseThemeColorsEnv = (prefix, config) => {
|
|
|
1934
1969
|
if (config.fatal) {
|
|
1935
1970
|
process.env[`${prefix}FATAL`] = config.fatal;
|
|
1936
1971
|
}
|
|
1972
|
+
if (config.performance) {
|
|
1973
|
+
process.env[`${prefix}PERFORMANCE`] = config.performance;
|
|
1974
|
+
}
|
|
1937
1975
|
if (config.positive) {
|
|
1938
1976
|
process.env[`${prefix}POSITIVE`] = config.positive;
|
|
1939
1977
|
}
|
|
@@ -3580,7 +3618,7 @@ var resolveOptions = async (userOptions) => {
|
|
|
3580
3618
|
dts: true,
|
|
3581
3619
|
shims: true,
|
|
3582
3620
|
silent: !debug,
|
|
3583
|
-
logLevel: workspaceConfig.logLevel === "success" || workspaceConfig.logLevel === "debug" || workspaceConfig.logLevel === "trace" || workspaceConfig.logLevel === "all" ? "info" : workspaceConfig.logLevel === "fatal" ? "error" : workspaceConfig.logLevel,
|
|
3621
|
+
logLevel: workspaceConfig.logLevel === "success" || workspaceConfig.logLevel === "performance" || workspaceConfig.logLevel === "debug" || workspaceConfig.logLevel === "trace" || workspaceConfig.logLevel === "all" ? "info" : workspaceConfig.logLevel === "fatal" ? "error" : workspaceConfig.logLevel,
|
|
3584
3622
|
sourcemap: debug ? "inline" : false,
|
|
3585
3623
|
clean: false,
|
|
3586
3624
|
fixedExtension: true,
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-3DUQDMAA.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkV45PWHBMjs = require('./chunk-V45PWHBM.js');
|
|
5
5
|
require('./chunk-UMMZUUGT.js');
|
|
6
6
|
require('./chunk-VPU4Q2F4.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkV45PWHBMjs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
var _chunkXFASZH2Ijs = require('./chunk-XFASZH2I.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkV45PWHBMjs = require('./chunk-V45PWHBM.js');
|
|
8
8
|
require('./chunk-UMMZUUGT.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -16,10 +16,10 @@ var _chunkVPU4Q2F4js = require('./chunk-VPU4Q2F4.js');
|
|
|
16
16
|
// index.ts
|
|
17
17
|
var index_exports = {};
|
|
18
18
|
_chunkVPU4Q2F4js.__export.call(void 0, index_exports, {
|
|
19
|
-
initGeneratorFn: () =>
|
|
19
|
+
initGeneratorFn: () => _chunkV45PWHBMjs.initGeneratorFn
|
|
20
20
|
});
|
|
21
21
|
_chunkVPU4Q2F4js.init_cjs_shims.call(void 0, );
|
|
22
22
|
_chunkVPU4Q2F4js.__reExport.call(void 0, index_exports, _chunkVPU4Q2F4js.__toESM.call(void 0, _chunkXFASZH2Ijs.require_components.call(void 0, )));
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
exports.initGeneratorFn =
|
|
25
|
+
exports.initGeneratorFn = _chunkV45PWHBMjs.initGeneratorFn;
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkV45PWHBMjs = require('../../../chunk-V45PWHBM.js');
|
|
5
5
|
require('../../../chunk-UMMZUUGT.js');
|
|
6
6
|
require('../../../chunk-VPU4Q2F4.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkV45PWHBMjs.generator_default; exports.initGeneratorFn = _chunkV45PWHBMjs.initGeneratorFn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/projen",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.133",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Tools for managing Projen configuration automation within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -115,9 +115,9 @@
|
|
|
115
115
|
],
|
|
116
116
|
"peerDependencies": {
|
|
117
117
|
"@nx/devkit": "^22.6.0",
|
|
118
|
-
"@storm-software/config": "1.
|
|
119
|
-
"@storm-software/config-tools": "1.189.
|
|
120
|
-
"@storm-software/workspace-tools": "1.295.
|
|
118
|
+
"@storm-software/config": "1.136.0",
|
|
119
|
+
"@storm-software/config-tools": "1.189.41",
|
|
120
|
+
"@storm-software/workspace-tools": "1.295.17",
|
|
121
121
|
"projen": "^0.91.6",
|
|
122
122
|
"tsup": "8.4.0",
|
|
123
123
|
"untyped": "1.5.2"
|
|
@@ -142,5 +142,5 @@
|
|
|
142
142
|
"publishConfig": { "access": "public" },
|
|
143
143
|
"executors": "./executors.json",
|
|
144
144
|
"generators": "./generators.json",
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "44dac4c2a9df20ceaf583923530d42d05cfc020c"
|
|
146
146
|
}
|