@storm-software/projen 0.21.208 → 0.21.210
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 +16 -0
- package/dist/{chunk-MBPHALQ3.js → chunk-AHYSHK4J.js} +2 -2
- package/dist/{chunk-OTMRNOJF.mjs → chunk-MHZSO6JW.mjs} +2 -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 +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Projen
|
|
4
4
|
|
|
5
|
+
## [0.21.209](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.209) (05/22/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **config** to **v1.137.61**
|
|
10
|
+
- Updated **config-tools** to **v1.190.29**
|
|
11
|
+
- Updated **workspace-tools** to **v1.296.6**
|
|
12
|
+
|
|
13
|
+
## [0.21.208](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.208) (05/22/2026)
|
|
14
|
+
|
|
15
|
+
### Updated Dependencies
|
|
16
|
+
|
|
17
|
+
- Updated **config** to **v1.137.60**
|
|
18
|
+
- Updated **config-tools** to **v1.190.28**
|
|
19
|
+
- Updated **workspace-tools** to **v1.296.5**
|
|
20
|
+
|
|
5
21
|
## [0.21.207](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.207) (05/22/2026)
|
|
6
22
|
|
|
7
23
|
### Updated Dependencies
|
|
@@ -407,13 +407,13 @@ ${message.sort(
|
|
|
407
407
|
{ prefix: `${prefix}--`, skip, sort },
|
|
408
408
|
depth2 + 1
|
|
409
409
|
)}`
|
|
410
|
-
).join("\n")}` : typeof message === "object" ? `
|
|
410
|
+
).join("\n")}` : typeof message === "object" && message ? `
|
|
411
411
|
${Object.keys(message).filter(
|
|
412
412
|
(key) => typeof key !== "string" || !skip.map((k) => k.toLowerCase().trim()).includes(key.toLowerCase().trim())
|
|
413
413
|
).sort(
|
|
414
414
|
sort ? (a, b) => !a && !b ? 0 : !a ? 1 : !b ? -1 : String(a).localeCompare(String(b)) : void 0
|
|
415
415
|
).map(
|
|
416
|
-
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
|
|
416
|
+
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" && message[key] ? Object.keys(message[key]).filter(
|
|
417
417
|
(key2) => typeof key2 !== "string" || !skip.map((k) => k.toLowerCase().trim()).includes(key2.toLowerCase().trim())
|
|
418
418
|
).length === 0 ? "{}" : formatLogMessage(
|
|
419
419
|
message[key],
|
|
@@ -408,13 +408,13 @@ ${message.sort(
|
|
|
408
408
|
{ prefix: `${prefix}--`, skip, sort },
|
|
409
409
|
depth2 + 1
|
|
410
410
|
)}`
|
|
411
|
-
).join("\n")}` : typeof message === "object" ? `
|
|
411
|
+
).join("\n")}` : typeof message === "object" && message ? `
|
|
412
412
|
${Object.keys(message).filter(
|
|
413
413
|
(key) => typeof key !== "string" || !skip.map((k) => k.toLowerCase().trim()).includes(key.toLowerCase().trim())
|
|
414
414
|
).sort(
|
|
415
415
|
sort ? (a, b) => !a && !b ? 0 : !a ? 1 : !b ? -1 : String(a).localeCompare(String(b)) : void 0
|
|
416
416
|
).map(
|
|
417
|
-
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
|
|
417
|
+
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" && message[key] ? Object.keys(message[key]).filter(
|
|
418
418
|
(key2) => typeof key2 !== "string" || !skip.map((k) => k.toLowerCase().trim()).includes(key2.toLowerCase().trim())
|
|
419
419
|
).length === 0 ? "{}" : formatLogMessage(
|
|
420
420
|
message[key],
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-Z5R3O2A7.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkAHYSHK4Jjs = require('./chunk-AHYSHK4J.js');
|
|
5
5
|
require('./chunk-B34OR6QL.js');
|
|
6
6
|
require('./chunk-5T4Z2WIC.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkAHYSHK4Jjs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
var _chunk7PKFWMLLjs = require('./chunk-7PKFWMLL.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkAHYSHK4Jjs = require('./chunk-AHYSHK4J.js');
|
|
8
8
|
require('./chunk-B34OR6QL.js');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -16,10 +16,10 @@ var _chunk5T4Z2WICjs = require('./chunk-5T4Z2WIC.js');
|
|
|
16
16
|
// index.ts
|
|
17
17
|
var index_exports = {};
|
|
18
18
|
_chunk5T4Z2WICjs.__export.call(void 0, index_exports, {
|
|
19
|
-
initGeneratorFn: () =>
|
|
19
|
+
initGeneratorFn: () => _chunkAHYSHK4Jjs.initGeneratorFn
|
|
20
20
|
});
|
|
21
21
|
_chunk5T4Z2WICjs.init_cjs_shims.call(void 0, );
|
|
22
22
|
_chunk5T4Z2WICjs.__reExport.call(void 0, index_exports, _chunk5T4Z2WICjs.__toESM.call(void 0, _chunk7PKFWMLLjs.require_components.call(void 0, )));
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
exports.initGeneratorFn =
|
|
25
|
+
exports.initGeneratorFn = _chunkAHYSHK4Jjs.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 _chunkAHYSHK4Jjs = require('../../../chunk-AHYSHK4J.js');
|
|
5
5
|
require('../../../chunk-B34OR6QL.js');
|
|
6
6
|
require('../../../chunk-5T4Z2WIC.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkAHYSHK4Jjs.generator_default; exports.initGeneratorFn = _chunkAHYSHK4Jjs.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.210",
|
|
4
4
|
"description": "Tools for managing Projen configuration automation within a Nx workspace.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"iac",
|
|
@@ -114,10 +114,10 @@
|
|
|
114
114
|
"typings": "dist/index.d.ts",
|
|
115
115
|
"dependencies": {
|
|
116
116
|
"@aws/pdk": "^0.25.17",
|
|
117
|
-
"@nx/devkit": "^22.7.
|
|
118
|
-
"@storm-software/config": "1.137.
|
|
119
|
-
"@storm-software/config-tools": "1.190.
|
|
120
|
-
"@storm-software/workspace-tools": "1.296.
|
|
117
|
+
"@nx/devkit": "^22.7.3",
|
|
118
|
+
"@storm-software/config": "1.137.62",
|
|
119
|
+
"@storm-software/config-tools": "1.190.30",
|
|
120
|
+
"@storm-software/workspace-tools": "1.296.7"
|
|
121
121
|
},
|
|
122
122
|
"devDependencies": {
|
|
123
123
|
"@types/node": "^25.9.1",
|
|
@@ -134,5 +134,5 @@
|
|
|
134
134
|
"publishConfig": { "access": "public" },
|
|
135
135
|
"executors": "./executors.json",
|
|
136
136
|
"generators": "./generators.json",
|
|
137
|
-
"gitHead": "
|
|
137
|
+
"gitHead": "9e0891595dca1742a6d48e6833c648e8ad79327c"
|
|
138
138
|
}
|