@storm-software/projen 0.21.78 → 0.21.80

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 CHANGED
@@ -2,6 +2,21 @@
2
2
 
3
3
  # Changelog for Storm Ops - Projen
4
4
 
5
+ ## [0.21.79](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.79) (01/14/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **workspace-tools** to **v1.294.23**
10
+ - Updated **config-tools** to **v1.188.77**
11
+
12
+ ## [0.21.78](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.78) (01/14/2026)
13
+
14
+ ### Updated Dependencies
15
+
16
+ - Updated **workspace-tools** to **v1.294.22**
17
+ - Updated **config-tools** to **v1.188.76**
18
+ - Updated **config** to **v1.135.0**
19
+
5
20
  ## [0.21.77](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.77) (12/30/2025)
6
21
 
7
22
  ### Miscellaneous
@@ -155,12 +155,12 @@ 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("\u{1F480}", "\xD7"),
158
+ [LogLevelLabel.FATAL]: useIcon("\u2620", "\xD7"),
159
159
  [LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
160
- [LogLevelLabel.INFO]: useIcon("\u2139", "i"),
160
+ [LogLevelLabel.INFO]: useIcon("\u{1F6C8}", "i"),
161
161
  [LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
162
162
  [LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
163
- [LogLevelLabel.TRACE]: useIcon("\u{1F6E0}", "T"),
163
+ [LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
164
164
  [LogLevelLabel.ALL]: useIcon("\u2709", "\u2192")
165
165
  };
166
166
 
@@ -279,7 +279,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
279
279
  return (message) => {
280
280
  console.debug(
281
281
  `
282
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.info)))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
282
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug)))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
283
283
  `
284
284
  );
285
285
  };
@@ -288,7 +288,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, ()
288
288
  return (message) => {
289
289
  console.debug(
290
290
  `
291
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug)))(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
291
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
292
292
  `
293
293
  );
294
294
  };
@@ -156,12 +156,12 @@ 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("\u{1F480}", "\xD7"),
159
+ [LogLevelLabel.FATAL]: useIcon("\u2620", "\xD7"),
160
160
  [LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
161
- [LogLevelLabel.INFO]: useIcon("\u2139", "i"),
161
+ [LogLevelLabel.INFO]: useIcon("\u{1F6C8}", "i"),
162
162
  [LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
163
163
  [LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
164
- [LogLevelLabel.TRACE]: useIcon("\u{1F6E0}", "T"),
164
+ [LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
165
165
  [LogLevelLabel.ALL]: useIcon("\u2709", "\u2192")
166
166
  };
167
167
 
@@ -280,7 +280,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
280
280
  return (message) => {
281
281
  console.debug(
282
282
  `
283
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
283
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
284
284
  `
285
285
  );
286
286
  };
@@ -289,7 +289,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CON
289
289
  return (message) => {
290
290
  console.debug(
291
291
  `
292
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
292
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
293
293
  `
294
294
  );
295
295
  };
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-KJ37M6QV.js');
2
2
 
3
3
 
4
- var _chunkTNMDS22Ajs = require('./chunk-TNMDS22A.js');
4
+ var _chunkNSCLHDJSjs = require('./chunk-NSCLHDJS.js');
5
5
  require('./chunk-LMAXMHBU.js');
6
6
  require('./chunk-OMQGQKIF.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkTNMDS22Ajs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkNSCLHDJSjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-F3HSPG2H.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-5HNOBREC.mjs";
4
+ } from "./chunk-VA7ATDAR.mjs";
5
5
  import "./chunk-2EQMICE3.mjs";
6
6
  import "./chunk-B4DWEYDF.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkDJZBKK2Xjs = require('./chunk-DJZBKK2X.js');
5
5
 
6
6
 
7
- var _chunkTNMDS22Ajs = require('./chunk-TNMDS22A.js');
7
+ var _chunkNSCLHDJSjs = require('./chunk-NSCLHDJS.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: () => _chunkTNMDS22Ajs.initGeneratorFn
19
+ initGeneratorFn: () => _chunkNSCLHDJSjs.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 = _chunkTNMDS22Ajs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkNSCLHDJSjs.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-I6K44E7U.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-5HNOBREC.mjs";
7
+ } from "./chunk-VA7ATDAR.mjs";
8
8
  import "./chunk-2EQMICE3.mjs";
9
9
  import {
10
10
  __export,
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkTNMDS22Ajs = require('../../../chunk-TNMDS22A.js');
4
+ var _chunkNSCLHDJSjs = require('../../../chunk-NSCLHDJS.js');
5
5
  require('../../../chunk-LMAXMHBU.js');
6
6
  require('../../../chunk-OMQGQKIF.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkTNMDS22Ajs.generator_default; exports.initGeneratorFn = _chunkTNMDS22Ajs.initGeneratorFn;
10
+ exports.default = _chunkNSCLHDJSjs.generator_default; exports.initGeneratorFn = _chunkNSCLHDJSjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-5HNOBREC.mjs";
4
+ } from "../../../chunk-VA7ATDAR.mjs";
5
5
  import "../../../chunk-2EQMICE3.mjs";
6
6
  import "../../../chunk-B4DWEYDF.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.21.78",
3
+ "version": "0.21.80",
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.75",
119
- "@storm-software/config-tools": "1.188.75",
120
- "@storm-software/workspace-tools": "1.294.21",
118
+ "@storm-software/config": "1.135.0",
119
+ "@storm-software/config-tools": "1.188.77",
120
+ "@storm-software/workspace-tools": "1.294.23",
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": "e19d4a36814afd4e68d56d8c7e620ec273b71a03"
145
+ "gitHead": "3053ec1a8f1bd29d0303c98c1fad84c2613b7b97"
146
146
  }