@storm-software/projen 0.21.80 → 0.21.82
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 +14 -0
- package/dist/{chunk-VA7ATDAR.mjs → chunk-44HCCL6Z.mjs} +41 -11
- package/dist/{chunk-NSCLHDJS.js → chunk-U6H53A3R.js} +41 -11
- 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 +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.21.81](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.81) (01/14/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **workspace-tools** to **v1.294.25**
|
|
10
|
+
- Updated **config-tools** to **v1.188.79**
|
|
11
|
+
|
|
12
|
+
## [0.21.80](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.80) (01/14/2026)
|
|
13
|
+
|
|
14
|
+
### Updated Dependencies
|
|
15
|
+
|
|
16
|
+
- Updated **workspace-tools** to **v1.294.24**
|
|
17
|
+
- Updated **config-tools** to **v1.188.78**
|
|
18
|
+
|
|
5
19
|
## [0.21.79](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.79) (01/14/2026)
|
|
6
20
|
|
|
7
21
|
### Updated Dependencies
|
|
@@ -156,9 +156,9 @@ function isUnicodeSupported() {
|
|
|
156
156
|
var useIcon = (c, fallback) => isUnicodeSupported() ? c : fallback;
|
|
157
157
|
var CONSOLE_ICONS = {
|
|
158
158
|
[LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
|
|
159
|
-
[LogLevelLabel.FATAL]: useIcon("\
|
|
159
|
+
[LogLevelLabel.FATAL]: useIcon("\u{1F571}", "\xD7"),
|
|
160
160
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
161
|
-
[LogLevelLabel.INFO]: useIcon("\
|
|
161
|
+
[LogLevelLabel.INFO]: useIcon("\u2139", "i"),
|
|
162
162
|
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
163
163
|
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
164
164
|
[LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
|
|
@@ -235,7 +235,11 @@ var getLogFn = (logLevel = LogLevel.INFO, config = {}, _chalk = getChalk()) => {
|
|
|
235
235
|
return (message) => {
|
|
236
236
|
console.error(
|
|
237
237
|
`
|
|
238
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
238
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
239
|
+
colors.fatal ?? DEFAULT_COLOR_CONFIG.dark.fatal
|
|
240
|
+
)(
|
|
241
|
+
`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `
|
|
242
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
239
243
|
`
|
|
240
244
|
);
|
|
241
245
|
};
|
|
@@ -244,7 +248,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? DEFAULT_COLOR_CON
|
|
|
244
248
|
return (message) => {
|
|
245
249
|
console.error(
|
|
246
250
|
`
|
|
247
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
251
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
252
|
+
colors.danger ?? DEFAULT_COLOR_CONFIG.dark.danger
|
|
253
|
+
)(
|
|
254
|
+
`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `
|
|
255
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
248
256
|
`
|
|
249
257
|
);
|
|
250
258
|
};
|
|
@@ -253,7 +261,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? DEFAULT_COLOR_CO
|
|
|
253
261
|
return (message) => {
|
|
254
262
|
console.warn(
|
|
255
263
|
`
|
|
256
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
264
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
265
|
+
colors.warning ?? DEFAULT_COLOR_CONFIG.dark.warning
|
|
266
|
+
)(
|
|
267
|
+
`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `
|
|
268
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
257
269
|
`
|
|
258
270
|
);
|
|
259
271
|
};
|
|
@@ -262,7 +274,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? DEFAULT_COLOR_C
|
|
|
262
274
|
return (message) => {
|
|
263
275
|
console.info(
|
|
264
276
|
`
|
|
265
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
277
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
278
|
+
colors.success ?? DEFAULT_COLOR_CONFIG.dark.success
|
|
279
|
+
)(
|
|
280
|
+
`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `
|
|
281
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
266
282
|
`
|
|
267
283
|
);
|
|
268
284
|
};
|
|
@@ -271,7 +287,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? DEFAULT_COLOR_C
|
|
|
271
287
|
return (message) => {
|
|
272
288
|
console.info(
|
|
273
289
|
`
|
|
274
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
290
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
291
|
+
colors.info ?? DEFAULT_COLOR_CONFIG.dark.info
|
|
292
|
+
)(
|
|
293
|
+
`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `
|
|
294
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
275
295
|
`
|
|
276
296
|
);
|
|
277
297
|
};
|
|
@@ -280,7 +300,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
280
300
|
return (message) => {
|
|
281
301
|
console.debug(
|
|
282
302
|
`
|
|
283
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
303
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
304
|
+
colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug
|
|
305
|
+
)(
|
|
306
|
+
`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `
|
|
307
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
284
308
|
`
|
|
285
309
|
);
|
|
286
310
|
};
|
|
@@ -289,7 +313,9 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CON
|
|
|
289
313
|
return (message) => {
|
|
290
314
|
console.debug(
|
|
291
315
|
`
|
|
292
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(
|
|
316
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(
|
|
317
|
+
`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `
|
|
318
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
293
319
|
`
|
|
294
320
|
);
|
|
295
321
|
};
|
|
@@ -297,7 +323,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogL
|
|
|
297
323
|
return (message) => {
|
|
298
324
|
console.log(
|
|
299
325
|
`
|
|
300
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
326
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
327
|
+
colors.brand ?? DEFAULT_COLOR_CONFIG.dark.brand
|
|
328
|
+
)(
|
|
329
|
+
`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `
|
|
330
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
301
331
|
`
|
|
302
332
|
);
|
|
303
333
|
};
|
|
@@ -321,7 +351,7 @@ var getStopwatch = (name) => {
|
|
|
321
351
|
);
|
|
322
352
|
};
|
|
323
353
|
};
|
|
324
|
-
var MAX_DEPTH =
|
|
354
|
+
var MAX_DEPTH = 6;
|
|
325
355
|
var formatLogMessage = (message, options = {}, depth2 = 0) => {
|
|
326
356
|
if (depth2 > MAX_DEPTH) {
|
|
327
357
|
return "<max depth>";
|
|
@@ -155,9 +155,9 @@ function isUnicodeSupported() {
|
|
|
155
155
|
var useIcon = (c, fallback) => isUnicodeSupported() ? c : fallback;
|
|
156
156
|
var CONSOLE_ICONS = {
|
|
157
157
|
[LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
|
|
158
|
-
[LogLevelLabel.FATAL]: useIcon("\
|
|
158
|
+
[LogLevelLabel.FATAL]: useIcon("\u{1F571}", "\xD7"),
|
|
159
159
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
160
|
-
[LogLevelLabel.INFO]: useIcon("\
|
|
160
|
+
[LogLevelLabel.INFO]: useIcon("\u2139", "i"),
|
|
161
161
|
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
162
162
|
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
163
163
|
[LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
|
|
@@ -234,7 +234,11 @@ var getLogFn = (logLevel = LogLevel.INFO, config = {}, _chalk = getChalk()) => {
|
|
|
234
234
|
return (message) => {
|
|
235
235
|
console.error(
|
|
236
236
|
`
|
|
237
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
237
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
238
|
+
_nullishCoalesce(colors.fatal, () => ( DEFAULT_COLOR_CONFIG.dark.fatal))
|
|
239
|
+
)(
|
|
240
|
+
`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `
|
|
241
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
238
242
|
`
|
|
239
243
|
);
|
|
240
244
|
};
|
|
@@ -243,7 +247,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.fatal, ()
|
|
|
243
247
|
return (message) => {
|
|
244
248
|
console.error(
|
|
245
249
|
`
|
|
246
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
250
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
251
|
+
_nullishCoalesce(colors.danger, () => ( DEFAULT_COLOR_CONFIG.dark.danger))
|
|
252
|
+
)(
|
|
253
|
+
`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `
|
|
254
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
247
255
|
`
|
|
248
256
|
);
|
|
249
257
|
};
|
|
@@ -252,7 +260,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.danger, (
|
|
|
252
260
|
return (message) => {
|
|
253
261
|
console.warn(
|
|
254
262
|
`
|
|
255
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
263
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
264
|
+
_nullishCoalesce(colors.warning, () => ( DEFAULT_COLOR_CONFIG.dark.warning))
|
|
265
|
+
)(
|
|
266
|
+
`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `
|
|
267
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
256
268
|
`
|
|
257
269
|
);
|
|
258
270
|
};
|
|
@@ -261,7 +273,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.warning,
|
|
|
261
273
|
return (message) => {
|
|
262
274
|
console.info(
|
|
263
275
|
`
|
|
264
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
276
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
277
|
+
_nullishCoalesce(colors.success, () => ( DEFAULT_COLOR_CONFIG.dark.success))
|
|
278
|
+
)(
|
|
279
|
+
`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `
|
|
280
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
265
281
|
`
|
|
266
282
|
);
|
|
267
283
|
};
|
|
@@ -270,7 +286,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.success,
|
|
|
270
286
|
return (message) => {
|
|
271
287
|
console.info(
|
|
272
288
|
`
|
|
273
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
289
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
290
|
+
_nullishCoalesce(colors.info, () => ( DEFAULT_COLOR_CONFIG.dark.info))
|
|
291
|
+
)(
|
|
292
|
+
`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `
|
|
293
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
274
294
|
`
|
|
275
295
|
);
|
|
276
296
|
};
|
|
@@ -279,7 +299,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
|
|
|
279
299
|
return (message) => {
|
|
280
300
|
console.debug(
|
|
281
301
|
`
|
|
282
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
302
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
303
|
+
_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug))
|
|
304
|
+
)(
|
|
305
|
+
`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `
|
|
306
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
283
307
|
`
|
|
284
308
|
);
|
|
285
309
|
};
|
|
@@ -288,7 +312,9 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, ()
|
|
|
288
312
|
return (message) => {
|
|
289
313
|
console.debug(
|
|
290
314
|
`
|
|
291
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(
|
|
315
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(
|
|
316
|
+
`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `
|
|
317
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
292
318
|
`
|
|
293
319
|
);
|
|
294
320
|
};
|
|
@@ -296,7 +322,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogL
|
|
|
296
322
|
return (message) => {
|
|
297
323
|
console.log(
|
|
298
324
|
`
|
|
299
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
325
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
326
|
+
_nullishCoalesce(colors.brand, () => ( DEFAULT_COLOR_CONFIG.dark.brand))
|
|
327
|
+
)(
|
|
328
|
+
`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `
|
|
329
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
300
330
|
`
|
|
301
331
|
);
|
|
302
332
|
};
|
|
@@ -320,7 +350,7 @@ var getStopwatch = (name) => {
|
|
|
320
350
|
);
|
|
321
351
|
};
|
|
322
352
|
};
|
|
323
|
-
var MAX_DEPTH =
|
|
353
|
+
var MAX_DEPTH = 6;
|
|
324
354
|
var formatLogMessage = (message, options = {}, depth2 = 0) => {
|
|
325
355
|
if (depth2 > MAX_DEPTH) {
|
|
326
356
|
return "<max depth>";
|
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 _chunkU6H53A3Rjs = require('./chunk-U6H53A3R.js');
|
|
5
5
|
require('./chunk-LMAXMHBU.js');
|
|
6
6
|
require('./chunk-OMQGQKIF.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkU6H53A3Rjs.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 _chunkU6H53A3Rjs = require('./chunk-U6H53A3R.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: () => _chunkU6H53A3Rjs.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 = _chunkU6H53A3Rjs.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 _chunkU6H53A3Rjs = require('../../../chunk-U6H53A3R.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 = _chunkU6H53A3Rjs.generator_default; exports.initGeneratorFn = _chunkU6H53A3Rjs.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.82",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Tools for managing Projen configuration automation within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -116,8 +116,8 @@
|
|
|
116
116
|
"peerDependencies": {
|
|
117
117
|
"@nx/devkit": "^22.3.3",
|
|
118
118
|
"@storm-software/config": "1.135.0",
|
|
119
|
-
"@storm-software/config-tools": "1.188.
|
|
120
|
-
"@storm-software/workspace-tools": "1.294.
|
|
119
|
+
"@storm-software/config-tools": "1.188.79",
|
|
120
|
+
"@storm-software/workspace-tools": "1.294.25",
|
|
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": "f0da2445e3b4764750c75fdcd1d0ec13a10c6602"
|
|
146
146
|
}
|