@storm-software/projen 0.21.77 → 0.21.78
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 +13 -0
- package/dist/{chunk-RU44DKFW.mjs → chunk-5HNOBREC.mjs} +19 -2
- package/dist/{chunk-Y5DDAN4Y.js → chunk-TNMDS22A.js} +19 -2
- 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,19 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.21.77](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.77) (12/30/2025)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update `README.md` markdown files
|
|
10
|
+
([eea67b18e](https://github.com/storm-software/storm-ops/commit/eea67b18e))
|
|
11
|
+
|
|
12
|
+
### Updated Dependencies
|
|
13
|
+
|
|
14
|
+
- Updated **workspace-tools** to **v1.294.21**
|
|
15
|
+
- Updated **config-tools** to **v1.188.75**
|
|
16
|
+
- Updated **config** to **v1.134.75**
|
|
17
|
+
|
|
5
18
|
## [0.21.76](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.76) (12/23/2025)
|
|
6
19
|
|
|
7
20
|
### Updated Dependencies
|
|
@@ -75,6 +75,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
75
75
|
help: "#5C4EE5",
|
|
76
76
|
success: "#087f5b",
|
|
77
77
|
info: "#0550ae",
|
|
78
|
+
debug: "#8afafc",
|
|
78
79
|
warning: "#e3b341",
|
|
79
80
|
danger: "#D8314A",
|
|
80
81
|
fatal: "#51070f",
|
|
@@ -91,6 +92,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
91
92
|
help: "#818cf8",
|
|
92
93
|
success: "#10b981",
|
|
93
94
|
info: "#58a6ff",
|
|
95
|
+
debug: "#8afafc",
|
|
94
96
|
warning: "#f3d371",
|
|
95
97
|
danger: "#D8314A",
|
|
96
98
|
fatal: "#a40e26",
|
|
@@ -278,7 +280,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
278
280
|
return (message) => {
|
|
279
281
|
console.debug(
|
|
280
282
|
`
|
|
281
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.
|
|
283
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
282
284
|
`
|
|
283
285
|
);
|
|
284
286
|
};
|
|
@@ -287,7 +289,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
287
289
|
return (message) => {
|
|
288
290
|
console.debug(
|
|
289
291
|
`
|
|
290
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.
|
|
292
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
291
293
|
`
|
|
292
294
|
);
|
|
293
295
|
};
|
|
@@ -593,6 +595,10 @@ var infoColorSchema = z._default(colorSchema, "#38bdf8");
|
|
|
593
595
|
schemaRegistry.add(infoColorSchema, {
|
|
594
596
|
description: "The informational color of the workspace"
|
|
595
597
|
});
|
|
598
|
+
var debugColorSchema = z._default(colorSchema, "#8afafc");
|
|
599
|
+
schemaRegistry.add(debugColorSchema, {
|
|
600
|
+
description: "The debug color of the workspace"
|
|
601
|
+
});
|
|
596
602
|
var warningColorSchema = z._default(colorSchema, "#f3d371");
|
|
597
603
|
schemaRegistry.add(warningColorSchema, {
|
|
598
604
|
description: "The warning color of the workspace"
|
|
@@ -627,6 +633,7 @@ var darkColorsSchema = z.object({
|
|
|
627
633
|
help: helpColorSchema,
|
|
628
634
|
success: successColorSchema,
|
|
629
635
|
info: infoColorSchema,
|
|
636
|
+
debug: debugColorSchema,
|
|
630
637
|
warning: warningColorSchema,
|
|
631
638
|
danger: dangerColorSchema,
|
|
632
639
|
fatal: fatalColorSchema,
|
|
@@ -644,6 +651,7 @@ var lightColorsSchema = z.object({
|
|
|
644
651
|
help: helpColorSchema,
|
|
645
652
|
success: successColorSchema,
|
|
646
653
|
info: infoColorSchema,
|
|
654
|
+
debug: debugColorSchema,
|
|
647
655
|
warning: warningColorSchema,
|
|
648
656
|
danger: dangerColorSchema,
|
|
649
657
|
fatal: fatalColorSchema,
|
|
@@ -665,6 +673,7 @@ var singleColorsSchema = z.object({
|
|
|
665
673
|
help: helpColorSchema,
|
|
666
674
|
success: successColorSchema,
|
|
667
675
|
info: infoColorSchema,
|
|
676
|
+
debug: debugColorSchema,
|
|
668
677
|
warning: warningColorSchema,
|
|
669
678
|
danger: dangerColorSchema,
|
|
670
679
|
fatal: fatalColorSchema,
|
|
@@ -1453,6 +1462,7 @@ var getSingleThemeColorsEnv = (prefix) => {
|
|
|
1453
1462
|
help: process.env[`${prefix}HELP`],
|
|
1454
1463
|
success: process.env[`${prefix}SUCCESS`],
|
|
1455
1464
|
info: process.env[`${prefix}INFO`],
|
|
1465
|
+
debug: process.env[`${prefix}DEBUG`],
|
|
1456
1466
|
warning: process.env[`${prefix}WARNING`],
|
|
1457
1467
|
danger: process.env[`${prefix}DANGER`],
|
|
1458
1468
|
fatal: process.env[`${prefix}FATAL`],
|
|
@@ -1491,6 +1501,7 @@ var getBaseThemeColorsEnv = (prefix) => {
|
|
|
1491
1501
|
help: process.env[`${prefix}HELP`],
|
|
1492
1502
|
success: process.env[`${prefix}SUCCESS`],
|
|
1493
1503
|
info: process.env[`${prefix}INFO`],
|
|
1504
|
+
debug: process.env[`${prefix}DEBUG`],
|
|
1494
1505
|
warning: process.env[`${prefix}WARNING`],
|
|
1495
1506
|
danger: process.env[`${prefix}DANGER`],
|
|
1496
1507
|
fatal: process.env[`${prefix}FATAL`],
|
|
@@ -1793,6 +1804,9 @@ var setSingleThemeColorsEnv = (prefix, config) => {
|
|
|
1793
1804
|
if (config.info) {
|
|
1794
1805
|
process.env[`${prefix}INFO`] = config.info;
|
|
1795
1806
|
}
|
|
1807
|
+
if (config.debug) {
|
|
1808
|
+
process.env[`${prefix}DEBUG`] = config.debug;
|
|
1809
|
+
}
|
|
1796
1810
|
if (config.warning) {
|
|
1797
1811
|
process.env[`${prefix}WARNING`] = config.warning;
|
|
1798
1812
|
}
|
|
@@ -1848,6 +1862,9 @@ var setBaseThemeColorsEnv = (prefix, config) => {
|
|
|
1848
1862
|
if (config.info) {
|
|
1849
1863
|
process.env[`${prefix}INFO`] = config.info;
|
|
1850
1864
|
}
|
|
1865
|
+
if (config.debug) {
|
|
1866
|
+
process.env[`${prefix}DEBUG`] = config.debug;
|
|
1867
|
+
}
|
|
1851
1868
|
if (config.warning) {
|
|
1852
1869
|
process.env[`${prefix}WARNING`] = config.warning;
|
|
1853
1870
|
}
|
|
@@ -74,6 +74,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
74
74
|
help: "#5C4EE5",
|
|
75
75
|
success: "#087f5b",
|
|
76
76
|
info: "#0550ae",
|
|
77
|
+
debug: "#8afafc",
|
|
77
78
|
warning: "#e3b341",
|
|
78
79
|
danger: "#D8314A",
|
|
79
80
|
fatal: "#51070f",
|
|
@@ -90,6 +91,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
90
91
|
help: "#818cf8",
|
|
91
92
|
success: "#10b981",
|
|
92
93
|
info: "#58a6ff",
|
|
94
|
+
debug: "#8afafc",
|
|
93
95
|
warning: "#f3d371",
|
|
94
96
|
danger: "#D8314A",
|
|
95
97
|
fatal: "#a40e26",
|
|
@@ -277,7 +279,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
|
|
|
277
279
|
return (message) => {
|
|
278
280
|
console.debug(
|
|
279
281
|
`
|
|
280
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.
|
|
282
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.info)))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
281
283
|
`
|
|
282
284
|
);
|
|
283
285
|
};
|
|
@@ -286,7 +288,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
|
|
|
286
288
|
return (message) => {
|
|
287
289
|
console.debug(
|
|
288
290
|
`
|
|
289
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.
|
|
291
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug)))(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
290
292
|
`
|
|
291
293
|
);
|
|
292
294
|
};
|
|
@@ -592,6 +594,10 @@ var infoColorSchema = z._default(colorSchema, "#38bdf8");
|
|
|
592
594
|
schemaRegistry.add(infoColorSchema, {
|
|
593
595
|
description: "The informational color of the workspace"
|
|
594
596
|
});
|
|
597
|
+
var debugColorSchema = z._default(colorSchema, "#8afafc");
|
|
598
|
+
schemaRegistry.add(debugColorSchema, {
|
|
599
|
+
description: "The debug color of the workspace"
|
|
600
|
+
});
|
|
595
601
|
var warningColorSchema = z._default(colorSchema, "#f3d371");
|
|
596
602
|
schemaRegistry.add(warningColorSchema, {
|
|
597
603
|
description: "The warning color of the workspace"
|
|
@@ -626,6 +632,7 @@ var darkColorsSchema = z.object({
|
|
|
626
632
|
help: helpColorSchema,
|
|
627
633
|
success: successColorSchema,
|
|
628
634
|
info: infoColorSchema,
|
|
635
|
+
debug: debugColorSchema,
|
|
629
636
|
warning: warningColorSchema,
|
|
630
637
|
danger: dangerColorSchema,
|
|
631
638
|
fatal: fatalColorSchema,
|
|
@@ -643,6 +650,7 @@ var lightColorsSchema = z.object({
|
|
|
643
650
|
help: helpColorSchema,
|
|
644
651
|
success: successColorSchema,
|
|
645
652
|
info: infoColorSchema,
|
|
653
|
+
debug: debugColorSchema,
|
|
646
654
|
warning: warningColorSchema,
|
|
647
655
|
danger: dangerColorSchema,
|
|
648
656
|
fatal: fatalColorSchema,
|
|
@@ -664,6 +672,7 @@ var singleColorsSchema = z.object({
|
|
|
664
672
|
help: helpColorSchema,
|
|
665
673
|
success: successColorSchema,
|
|
666
674
|
info: infoColorSchema,
|
|
675
|
+
debug: debugColorSchema,
|
|
667
676
|
warning: warningColorSchema,
|
|
668
677
|
danger: dangerColorSchema,
|
|
669
678
|
fatal: fatalColorSchema,
|
|
@@ -1452,6 +1461,7 @@ var getSingleThemeColorsEnv = (prefix) => {
|
|
|
1452
1461
|
help: process.env[`${prefix}HELP`],
|
|
1453
1462
|
success: process.env[`${prefix}SUCCESS`],
|
|
1454
1463
|
info: process.env[`${prefix}INFO`],
|
|
1464
|
+
debug: process.env[`${prefix}DEBUG`],
|
|
1455
1465
|
warning: process.env[`${prefix}WARNING`],
|
|
1456
1466
|
danger: process.env[`${prefix}DANGER`],
|
|
1457
1467
|
fatal: process.env[`${prefix}FATAL`],
|
|
@@ -1490,6 +1500,7 @@ var getBaseThemeColorsEnv = (prefix) => {
|
|
|
1490
1500
|
help: process.env[`${prefix}HELP`],
|
|
1491
1501
|
success: process.env[`${prefix}SUCCESS`],
|
|
1492
1502
|
info: process.env[`${prefix}INFO`],
|
|
1503
|
+
debug: process.env[`${prefix}DEBUG`],
|
|
1493
1504
|
warning: process.env[`${prefix}WARNING`],
|
|
1494
1505
|
danger: process.env[`${prefix}DANGER`],
|
|
1495
1506
|
fatal: process.env[`${prefix}FATAL`],
|
|
@@ -1792,6 +1803,9 @@ var setSingleThemeColorsEnv = (prefix, config) => {
|
|
|
1792
1803
|
if (config.info) {
|
|
1793
1804
|
process.env[`${prefix}INFO`] = config.info;
|
|
1794
1805
|
}
|
|
1806
|
+
if (config.debug) {
|
|
1807
|
+
process.env[`${prefix}DEBUG`] = config.debug;
|
|
1808
|
+
}
|
|
1795
1809
|
if (config.warning) {
|
|
1796
1810
|
process.env[`${prefix}WARNING`] = config.warning;
|
|
1797
1811
|
}
|
|
@@ -1847,6 +1861,9 @@ var setBaseThemeColorsEnv = (prefix, config) => {
|
|
|
1847
1861
|
if (config.info) {
|
|
1848
1862
|
process.env[`${prefix}INFO`] = config.info;
|
|
1849
1863
|
}
|
|
1864
|
+
if (config.debug) {
|
|
1865
|
+
process.env[`${prefix}DEBUG`] = config.debug;
|
|
1866
|
+
}
|
|
1850
1867
|
if (config.warning) {
|
|
1851
1868
|
process.env[`${prefix}WARNING`] = config.warning;
|
|
1852
1869
|
}
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-KJ37M6QV.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkTNMDS22Ajs = require('./chunk-TNMDS22A.js');
|
|
5
5
|
require('./chunk-LMAXMHBU.js');
|
|
6
6
|
require('./chunk-OMQGQKIF.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkTNMDS22Ajs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
var _chunkDJZBKK2Xjs = require('./chunk-DJZBKK2X.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkTNMDS22Ajs = require('./chunk-TNMDS22A.js');
|
|
8
8
|
require('./chunk-LMAXMHBU.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -16,10 +16,10 @@ var _chunkOMQGQKIFjs = require('./chunk-OMQGQKIF.js');
|
|
|
16
16
|
// index.ts
|
|
17
17
|
var index_exports = {};
|
|
18
18
|
_chunkOMQGQKIFjs.__export.call(void 0, index_exports, {
|
|
19
|
-
initGeneratorFn: () =>
|
|
19
|
+
initGeneratorFn: () => _chunkTNMDS22Ajs.initGeneratorFn
|
|
20
20
|
});
|
|
21
21
|
_chunkOMQGQKIFjs.init_cjs_shims.call(void 0, );
|
|
22
22
|
_chunkOMQGQKIFjs.__reExport.call(void 0, index_exports, _chunkOMQGQKIFjs.__toESM.call(void 0, _chunkDJZBKK2Xjs.require_components.call(void 0, )));
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
exports.initGeneratorFn =
|
|
25
|
+
exports.initGeneratorFn = _chunkTNMDS22Ajs.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 _chunkTNMDS22Ajs = require('../../../chunk-TNMDS22A.js');
|
|
5
5
|
require('../../../chunk-LMAXMHBU.js');
|
|
6
6
|
require('../../../chunk-OMQGQKIF.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkTNMDS22Ajs.generator_default; exports.initGeneratorFn = _chunkTNMDS22Ajs.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.78",
|
|
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.3.3",
|
|
118
|
-
"@storm-software/config": "1.134.
|
|
119
|
-
"@storm-software/config-tools": "1.188.
|
|
120
|
-
"@storm-software/workspace-tools": "1.294.
|
|
118
|
+
"@storm-software/config": "1.134.75",
|
|
119
|
+
"@storm-software/config-tools": "1.188.75",
|
|
120
|
+
"@storm-software/workspace-tools": "1.294.21",
|
|
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": "e19d4a36814afd4e68d56d8c7e620ec273b71a03"
|
|
146
146
|
}
|