@storm-software/projen 0.21.38 → 0.21.40

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,27 @@
2
2
 
3
3
  # Changelog for Storm Ops - Projen
4
4
 
5
+ ## [0.21.39](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.39) (11/16/2025)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update README markdown files
10
+ ([067cc99ce](https://github.com/storm-software/storm-ops/commit/067cc99ce))
11
+
12
+ ### Updated Dependencies
13
+
14
+ - Updated **workspace-tools** to **v1.293.9**
15
+ - Updated **config-tools** to **v1.188.39**
16
+ - Updated **config** to **v1.134.39**
17
+
18
+ ## [0.21.38](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.38) (11/14/2025)
19
+
20
+ ### Updated Dependencies
21
+
22
+ - Updated **workspace-tools** to **v1.293.8**
23
+ - Updated **config-tools** to **v1.188.38**
24
+ - Updated **config** to **v1.134.38**
25
+
5
26
  ## [0.21.37](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.37) (11/14/2025)
6
27
 
7
28
  ### Miscellaneous
package/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-0.21.36-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.21.39-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -37,6 +37,7 @@ import defu from "defu";
37
37
 
38
38
  // ../config-tools/src/logger/console.ts
39
39
  init_esm_shims();
40
+ import { formatDistanceToNow } from "date-fns/formatDistanceToNow";
40
41
 
41
42
  // ../config-tools/src/types.ts
42
43
  init_esm_shims();
@@ -307,14 +308,13 @@ var writeSuccess = (message, config) => getLogFn(LogLevel.SUCCESS, config)(messa
307
308
  var writeDebug = (message, config) => getLogFn(LogLevel.DEBUG, config)(message);
308
309
  var writeTrace = (message, config) => getLogFn(LogLevel.TRACE, config)(message);
309
310
  var getStopwatch = (name) => {
310
- const start = process.hrtime();
311
+ const start = /* @__PURE__ */ new Date();
311
312
  return () => {
312
- const end = process.hrtime(start);
313
313
  console.info(
314
314
  `
315
- > \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(
316
- end[0] * 1e3 + end[1] / 1e6
317
- )}ms to complete
315
+ > \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${formatDistanceToNow(start, {
316
+ includeSeconds: true
317
+ })} to complete
318
318
  `
319
319
  );
320
320
  };
@@ -36,6 +36,7 @@ var _defu = require('defu'); var _defu2 = _interopRequireDefault(_defu);
36
36
 
37
37
  // ../config-tools/src/logger/console.ts
38
38
  _chunkANVGCRXXjs.init_cjs_shims.call(void 0, );
39
+ var _formatDistanceToNow = require('date-fns/formatDistanceToNow');
39
40
 
40
41
  // ../config-tools/src/types.ts
41
42
  _chunkANVGCRXXjs.init_cjs_shims.call(void 0, );
@@ -306,14 +307,13 @@ var writeSuccess = (message, config) => getLogFn(LogLevel.SUCCESS, config)(messa
306
307
  var writeDebug = (message, config) => getLogFn(LogLevel.DEBUG, config)(message);
307
308
  var writeTrace = (message, config) => getLogFn(LogLevel.TRACE, config)(message);
308
309
  var getStopwatch = (name) => {
309
- const start = process.hrtime();
310
+ const start = /* @__PURE__ */ new Date();
310
311
  return () => {
311
- const end = process.hrtime(start);
312
312
  console.info(
313
313
  `
314
- > \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(
315
- end[0] * 1e3 + end[1] / 1e6
316
- )}ms to complete
314
+ > \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${_formatDistanceToNow.formatDistanceToNow.call(void 0, start, {
315
+ includeSeconds: true
316
+ })} to complete
317
317
  `
318
318
  );
319
319
  };
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-2J4V6NGV.js');
2
2
 
3
3
 
4
- var _chunkOPP7F5A7js = require('./chunk-OPP7F5A7.js');
4
+ var _chunkXXV4GF5Ijs = require('./chunk-XXV4GF5I.js');
5
5
  require('./chunk-ICQM664N.js');
6
6
  require('./chunk-ANVGCRXX.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkOPP7F5A7js.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkXXV4GF5Ijs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-KY3TNWTP.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-X4UU7INO.mjs";
4
+ } from "./chunk-ALHVDI45.mjs";
5
5
  import "./chunk-KZ5V74F3.mjs";
6
6
  import "./chunk-ETGYWVYC.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkTLCUVFDEjs = require('./chunk-TLCUVFDE.js');
5
5
 
6
6
 
7
- var _chunkOPP7F5A7js = require('./chunk-OPP7F5A7.js');
7
+ var _chunkXXV4GF5Ijs = require('./chunk-XXV4GF5I.js');
8
8
  require('./chunk-ICQM664N.js');
9
9
 
10
10
 
@@ -16,10 +16,10 @@ var _chunkANVGCRXXjs = require('./chunk-ANVGCRXX.js');
16
16
  // index.ts
17
17
  var index_exports = {};
18
18
  _chunkANVGCRXXjs.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunkOPP7F5A7js.initGeneratorFn
19
+ initGeneratorFn: () => _chunkXXV4GF5Ijs.initGeneratorFn
20
20
  });
21
21
  _chunkANVGCRXXjs.init_cjs_shims.call(void 0, );
22
22
  _chunkANVGCRXXjs.__reExport.call(void 0, index_exports, _chunkANVGCRXXjs.__toESM.call(void 0, _chunkTLCUVFDEjs.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunkOPP7F5A7js.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkXXV4GF5Ijs.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-EZ2VCTAW.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-X4UU7INO.mjs";
7
+ } from "./chunk-ALHVDI45.mjs";
8
8
  import "./chunk-KZ5V74F3.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 _chunkOPP7F5A7js = require('../../../chunk-OPP7F5A7.js');
4
+ var _chunkXXV4GF5Ijs = require('../../../chunk-XXV4GF5I.js');
5
5
  require('../../../chunk-ICQM664N.js');
6
6
  require('../../../chunk-ANVGCRXX.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkOPP7F5A7js.generator_default; exports.initGeneratorFn = _chunkOPP7F5A7js.initGeneratorFn;
10
+ exports.default = _chunkXXV4GF5Ijs.generator_default; exports.initGeneratorFn = _chunkXXV4GF5Ijs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-X4UU7INO.mjs";
4
+ } from "../../../chunk-ALHVDI45.mjs";
5
5
  import "../../../chunk-KZ5V74F3.mjs";
6
6
  import "../../../chunk-ETGYWVYC.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.21.38",
3
+ "version": "0.21.40",
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.0.3",
118
- "@storm-software/config": "1.134.37",
119
- "@storm-software/config-tools": "1.188.37",
120
- "@storm-software/workspace-tools": "1.293.7",
118
+ "@storm-software/config": "1.134.39",
119
+ "@storm-software/config-tools": "1.188.39",
120
+ "@storm-software/workspace-tools": "1.293.9",
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": "7ede58a2f9131e532b8cad8c37815ad21bec19f8"
145
+ "gitHead": "9fb6aab8303c116047d19f12823505c5bd071a55"
146
146
  }