@storm-software/projen 0.21.188 → 0.21.189
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 +8 -0
- package/dist/{chunk-YHXKHLT4.mjs → chunk-RWL5CGRJ.mjs} +17 -8
- package/dist/{chunk-RK4VNJPB.js → chunk-XLM33KP2.js} +17 -8
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +1 -1
- package/dist/index.js +4 -4
- package/dist/index.mjs +3 -3
- 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,14 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.21.188](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.188) (05/15/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **workspace-tools** to **v1.295.73**
|
|
10
|
+
- Updated **config-tools** to **v1.190.13**
|
|
11
|
+
- Updated **config** to **v1.137.46**
|
|
12
|
+
|
|
5
13
|
## [0.21.187](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.187) (05/15/2026)
|
|
6
14
|
|
|
7
15
|
### Updated Dependencies
|
|
@@ -391,22 +391,31 @@ var getStopwatch = (name) => {
|
|
|
391
391
|
);
|
|
392
392
|
};
|
|
393
393
|
};
|
|
394
|
-
var MAX_DEPTH =
|
|
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
|
-
|
|
402
|
-
|
|
403
|
-
${
|
|
404
|
-
(
|
|
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}
|
|
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 =
|
|
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
|
-
|
|
401
|
-
|
|
402
|
-
${
|
|
403
|
-
(
|
|
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}
|
|
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 {
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-AGB2JZV2.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
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 =
|
|
9
|
+
exports.initGeneratorFn = _chunkXLM33KP2js.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
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
|
|
4
|
+
var _chunkCQEP5YOCjs = require('./chunk-CQEP5YOC.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
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: () =>
|
|
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 =
|
|
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
|
|
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 =
|
|
10
|
+
exports.default = _chunkXLM33KP2js.generator_default; exports.initGeneratorFn = _chunkXLM33KP2js.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.189",
|
|
4
4
|
"description": "Tools for managing Projen configuration automation within a Nx workspace.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"iac",
|
|
@@ -116,8 +116,8 @@
|
|
|
116
116
|
"@aws/pdk": "^0.25.17",
|
|
117
117
|
"@nx/devkit": "22.7.1",
|
|
118
118
|
"@storm-software/config": "^1.137.46",
|
|
119
|
-
"@storm-software/config-tools": "^1.190.
|
|
120
|
-
"@storm-software/workspace-tools": "^1.295.
|
|
119
|
+
"@storm-software/config-tools": "^1.190.14",
|
|
120
|
+
"@storm-software/workspace-tools": "^1.295.74"
|
|
121
121
|
},
|
|
122
122
|
"devDependencies": {
|
|
123
123
|
"@nx/devkit": "22.7.1",
|
|
@@ -135,5 +135,5 @@
|
|
|
135
135
|
"publishConfig": { "access": "public" },
|
|
136
136
|
"executors": "./executors.json",
|
|
137
137
|
"generators": "./generators.json",
|
|
138
|
-
"gitHead": "
|
|
138
|
+
"gitHead": "0c334cad4cd3237b830127698face8e1f4f508fb"
|
|
139
139
|
}
|