@storm-software/projen 0.21.188 → 0.21.190

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.189](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.189) (05/15/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **workspace-tools** to **v1.295.74**
10
+ - Updated **config-tools** to **v1.190.14**
11
+
12
+ ## [0.21.188](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.188) (05/15/2026)
13
+
14
+ ### Updated Dependencies
15
+
16
+ - Updated **workspace-tools** to **v1.295.73**
17
+ - Updated **config-tools** to **v1.190.13**
18
+ - Updated **config** to **v1.137.46**
19
+
5
20
  ## [0.21.187](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.187) (05/15/2026)
6
21
 
7
22
  ### Updated Dependencies
@@ -391,22 +391,31 @@ var getStopwatch = (name) => {
391
391
  );
392
392
  };
393
393
  };
394
- var MAX_DEPTH = 6;
394
+ var MAX_DEPTH = 10;
395
395
  var formatLogMessage = (message, options = {}, depth2 = 0) => {
396
396
  if (depth2 > MAX_DEPTH) {
397
397
  return "<max depth>";
398
398
  }
399
- const prefix = options.prefix ?? "-";
399
+ const prefix = options.prefix ?? "";
400
400
  const skip = options.skip ?? [];
401
- return typeof message === "undefined" || message === null || !message && typeof message !== "boolean" ? "<none>" : typeof message === "string" ? message : Array.isArray(message) ? `
402
- ${message.map((item, index) => ` ${prefix}> #${index} = ${formatLogMessage(item, { prefix: `${prefix}-`, skip }, depth2 + 1)}`).join("\n")}` : typeof message === "object" ? `
403
- ${Object.keys(message).filter((key) => !skip.includes(key)).map(
404
- (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? formatLogMessage(
401
+ const sort = options.sort ?? true;
402
+ return typeof message === "undefined" || message === null ? "<empty>" : typeof message === "string" ? !message ? "<empty string>" : message : Array.isArray(message) ? `
403
+ ${message.map(
404
+ (item, index) => ` ${prefix}> #${index} = ${formatLogMessage(
405
+ item,
406
+ { prefix: `${prefix}--`, skip, sort },
407
+ depth2 + 1
408
+ )}`
409
+ ).join("\n")}` : typeof message === "object" ? `
410
+ ${Object.keys(message).filter((key) => !skip.includes(key)).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
411
+ (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
412
+ (key2) => !skip.includes(key2)
413
+ ).length === 0 ? "{}" : formatLogMessage(
405
414
  message[key],
406
- { prefix: `${prefix}-`, skip },
415
+ { prefix: `${prefix}--`, skip, sort },
407
416
  depth2 + 1
408
417
  ) : message[key]}`
409
- ).join("\n")}` : message;
418
+ ).join("\n")}` : String(message);
410
419
  };
411
420
  var _isFunction = (value) => {
412
421
  try {
@@ -390,22 +390,31 @@ var getStopwatch = (name) => {
390
390
  );
391
391
  };
392
392
  };
393
- var MAX_DEPTH = 6;
393
+ var MAX_DEPTH = 10;
394
394
  var formatLogMessage = (message, options = {}, depth2 = 0) => {
395
395
  if (depth2 > MAX_DEPTH) {
396
396
  return "<max depth>";
397
397
  }
398
- const prefix = _nullishCoalesce(options.prefix, () => ( "-"));
398
+ const prefix = _nullishCoalesce(options.prefix, () => ( ""));
399
399
  const skip = _nullishCoalesce(options.skip, () => ( []));
400
- return typeof message === "undefined" || message === null || !message && typeof message !== "boolean" ? "<none>" : typeof message === "string" ? message : Array.isArray(message) ? `
401
- ${message.map((item, index) => ` ${prefix}> #${index} = ${formatLogMessage(item, { prefix: `${prefix}-`, skip }, depth2 + 1)}`).join("\n")}` : typeof message === "object" ? `
402
- ${Object.keys(message).filter((key) => !skip.includes(key)).map(
403
- (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? formatLogMessage(
400
+ const sort = _nullishCoalesce(options.sort, () => ( true));
401
+ return typeof message === "undefined" || message === null ? "<empty>" : typeof message === "string" ? !message ? "<empty string>" : message : Array.isArray(message) ? `
402
+ ${message.map(
403
+ (item, index) => ` ${prefix}> #${index} = ${formatLogMessage(
404
+ item,
405
+ { prefix: `${prefix}--`, skip, sort },
406
+ depth2 + 1
407
+ )}`
408
+ ).join("\n")}` : typeof message === "object" ? `
409
+ ${Object.keys(message).filter((key) => !skip.includes(key)).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
410
+ (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
411
+ (key2) => !skip.includes(key2)
412
+ ).length === 0 ? "{}" : formatLogMessage(
404
413
  message[key],
405
- { prefix: `${prefix}-`, skip },
414
+ { prefix: `${prefix}--`, skip, sort },
406
415
  depth2 + 1
407
416
  ) : message[key]}`
408
- ).join("\n")}` : message;
417
+ ).join("\n")}` : String(message);
409
418
  };
410
419
  var _isFunction = (value) => {
411
420
  try {
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-AGB2JZV2.js');
2
2
 
3
3
 
4
- var _chunkRK4VNJPBjs = require('./chunk-RK4VNJPB.js');
4
+ var _chunkXLM33KP2js = require('./chunk-XLM33KP2.js');
5
5
  require('./chunk-QSWRWRXK.js');
6
6
  require('./chunk-PYSTHXQM.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkRK4VNJPBjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkXLM33KP2js.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-7NMZRIA6.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-YHXKHLT4.mjs";
4
+ } from "./chunk-RWL5CGRJ.mjs";
5
5
  import "./chunk-U3I7JKJY.mjs";
6
6
  import "./chunk-3YDQ52OF.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-AGB2JZV2.js');
2
2
 
3
3
 
4
- var _chunkRK4VNJPBjs = require('./chunk-RK4VNJPB.js');
4
+ var _chunkCQEP5YOCjs = require('./chunk-CQEP5YOC.js');
5
5
 
6
6
 
7
- var _chunkCQEP5YOCjs = require('./chunk-CQEP5YOC.js');
7
+ var _chunkXLM33KP2js = require('./chunk-XLM33KP2.js');
8
8
  require('./chunk-QSWRWRXK.js');
9
9
 
10
10
 
@@ -16,10 +16,10 @@ var _chunkPYSTHXQMjs = require('./chunk-PYSTHXQM.js');
16
16
  // index.ts
17
17
  var index_exports = {};
18
18
  _chunkPYSTHXQMjs.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunkRK4VNJPBjs.initGeneratorFn
19
+ initGeneratorFn: () => _chunkXLM33KP2js.initGeneratorFn
20
20
  });
21
21
  _chunkPYSTHXQMjs.init_cjs_shims.call(void 0, );
22
22
  _chunkPYSTHXQMjs.__reExport.call(void 0, index_exports, _chunkPYSTHXQMjs.__toESM.call(void 0, _chunkCQEP5YOCjs.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunkRK4VNJPBjs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkXLM33KP2js.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -1,10 +1,10 @@
1
1
  import "./chunk-7NMZRIA6.mjs";
2
- import {
3
- initGeneratorFn
4
- } from "./chunk-YHXKHLT4.mjs";
5
2
  import {
6
3
  require_components
7
4
  } from "./chunk-4HTOLVTB.mjs";
5
+ import {
6
+ initGeneratorFn
7
+ } from "./chunk-RWL5CGRJ.mjs";
8
8
  import "./chunk-U3I7JKJY.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 _chunkRK4VNJPBjs = require('../../../chunk-RK4VNJPB.js');
4
+ var _chunkXLM33KP2js = require('../../../chunk-XLM33KP2.js');
5
5
  require('../../../chunk-QSWRWRXK.js');
6
6
  require('../../../chunk-PYSTHXQM.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkRK4VNJPBjs.generator_default; exports.initGeneratorFn = _chunkRK4VNJPBjs.initGeneratorFn;
10
+ exports.default = _chunkXLM33KP2js.generator_default; exports.initGeneratorFn = _chunkXLM33KP2js.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-YHXKHLT4.mjs";
4
+ } from "../../../chunk-RWL5CGRJ.mjs";
5
5
  import "../../../chunk-U3I7JKJY.mjs";
6
6
  import "../../../chunk-3YDQ52OF.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.21.188",
3
+ "version": "0.21.190",
4
4
  "description": "Tools for managing Projen configuration automation within a Nx workspace.",
5
5
  "keywords": [
6
6
  "iac",
@@ -115,12 +115,11 @@
115
115
  "dependencies": {
116
116
  "@aws/pdk": "^0.25.17",
117
117
  "@nx/devkit": "22.7.1",
118
- "@storm-software/config": "^1.137.46",
119
- "@storm-software/config-tools": "^1.190.13",
120
- "@storm-software/workspace-tools": "^1.295.73"
118
+ "@storm-software/config": "^1.137.47",
119
+ "@storm-software/config-tools": "^1.190.15",
120
+ "@storm-software/workspace-tools": "^1.295.75"
121
121
  },
122
122
  "devDependencies": {
123
- "@nx/devkit": "22.7.1",
124
123
  "@types/node": "^25.8.0",
125
124
  "nx": "22.7.1",
126
125
  "projen": "^0.91.31",
@@ -135,5 +134,5 @@
135
134
  "publishConfig": { "access": "public" },
136
135
  "executors": "./executors.json",
137
136
  "generators": "./generators.json",
138
- "gitHead": "28ba0e3264c160d982d27b4cb8d1f386d0b833c4"
137
+ "gitHead": "756f2efc9602033fcc0355d7943682581488379b"
139
138
  }