@storm-software/projen 0.9.4 → 0.9.5

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
@@ -1,3 +1,9 @@
1
+ ## 0.9.5 (2025-02-02)
2
+
3
+ ### Miscellaneous
4
+
5
+ - **monorepo:** Regenerate README markdown files ([b578d626a](https://github.com/storm-software/storm-ops/commit/b578d626a))
6
+
1
7
  ## 0.9.4 (2025-02-02)
2
8
 
3
9
  ### 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.9.3-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.9.4-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 -->
@@ -541,55 +541,55 @@ var getLogFn = /* @__PURE__ */ __name((logLevel = LogLevel.INFO, config = {}, _c
541
541
  if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
542
542
  return (message) => {
543
543
  console.error(`
544
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
544
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
545
545
  `);
546
546
  };
547
547
  }
548
548
  if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
549
549
  return (message) => {
550
550
  console.error(`
551
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
551
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
552
552
  `);
553
553
  };
554
554
  }
555
555
  if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
556
556
  return (message) => {
557
557
  console.warn(`
558
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
558
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
559
559
  `);
560
560
  };
561
561
  }
562
562
  if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
563
563
  return (message) => {
564
564
  console.info(`
565
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
565
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
566
566
  `);
567
567
  };
568
568
  }
569
569
  if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
570
570
  return (message) => {
571
571
  console.info(`
572
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
572
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
573
573
  `);
574
574
  };
575
575
  }
576
576
  if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
577
577
  return (message) => {
578
578
  console.debug(`
579
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
579
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
580
580
  `);
581
581
  };
582
582
  }
583
583
  if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
584
584
  return (message) => {
585
585
  console.debug(`
586
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
586
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
587
587
  `);
588
588
  };
589
589
  }
590
590
  return (message) => {
591
591
  console.log(`
592
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
592
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
593
593
  `);
594
594
  };
595
595
  }, "getLogFn");
@@ -606,7 +606,6 @@ var getStopwatch = /* @__PURE__ */ __name((name) => {
606
606
  const end = process.hrtime(start);
607
607
  console.info(`
608
608
  > \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(end[0] * 1e3 + end[1] / 1e6)}ms to complete
609
-
610
609
  `);
611
610
  };
612
611
  }, "getStopwatch");
@@ -540,55 +540,55 @@ var getLogFn = /* @__PURE__ */ _chunkZH7QZ5EFjs.__name.call(void 0, (logLevel =
540
540
  if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
541
541
  return (message) => {
542
542
  console.error(`
543
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.fatal, () => ( "#7d1a1a")))(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
543
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.fatal, () => ( "#7d1a1a")))(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
544
544
  `);
545
545
  };
546
546
  }
547
547
  if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
548
548
  return (message) => {
549
549
  console.error(`
550
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.danger, () => ( "#f85149")))(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
550
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.danger, () => ( "#f85149")))(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
551
551
  `);
552
552
  };
553
553
  }
554
554
  if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
555
555
  return (message) => {
556
556
  console.warn(`
557
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.warning, () => ( "#e3b341")))(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
557
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.warning, () => ( "#e3b341")))(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
558
558
  `);
559
559
  };
560
560
  }
561
561
  if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
562
562
  return (message) => {
563
563
  console.info(`
564
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.success, () => ( "#56d364")))(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
564
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.success, () => ( "#56d364")))(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
565
565
  `);
566
566
  };
567
567
  }
568
568
  if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
569
569
  return (message) => {
570
570
  console.info(`
571
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( "#58a6ff")))(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
571
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( "#58a6ff")))(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
572
572
  `);
573
573
  };
574
574
  }
575
575
  if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
576
576
  return (message) => {
577
577
  console.debug(`
578
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
578
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
579
579
  `);
580
580
  };
581
581
  }
582
582
  if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
583
583
  return (message) => {
584
584
  console.debug(`
585
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
585
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
586
586
  `);
587
587
  };
588
588
  }
589
589
  return (message) => {
590
590
  console.log(`
591
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
591
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
592
592
  `);
593
593
  };
594
594
  }, "getLogFn");
@@ -605,7 +605,6 @@ var getStopwatch = /* @__PURE__ */ _chunkZH7QZ5EFjs.__name.call(void 0, (name) =
605
605
  const end = process.hrtime(start);
606
606
  console.info(`
607
607
  > \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(end[0] * 1e3 + end[1] / 1e6)}ms to complete
608
-
609
608
  `);
610
609
  };
611
610
  }, "getStopwatch");
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-RDD7JUBK.js');
2
2
 
3
3
 
4
- var _chunkDQU76V3Djs = require('./chunk-DQU76V3D.js');
4
+ var _chunkK34NGF5Tjs = require('./chunk-K34NGF5T.js');
5
5
  require('./chunk-3HI6WK3M.js');
6
6
  require('./chunk-ZH7QZ5EF.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkDQU76V3Djs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkK34NGF5Tjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-EEZAWKQ5.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-UFYNNMRC.mjs";
4
+ } from "./chunk-CFLWQRZK.mjs";
5
5
  import "./chunk-VPWBNTCH.mjs";
6
6
  import "./chunk-VHOQB7WG.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkFVKYD24Tjs = require('./chunk-FVKYD24T.js');
5
5
 
6
6
 
7
- var _chunkDQU76V3Djs = require('./chunk-DQU76V3D.js');
7
+ var _chunkK34NGF5Tjs = require('./chunk-K34NGF5T.js');
8
8
  require('./chunk-3HI6WK3M.js');
9
9
 
10
10
 
@@ -16,10 +16,10 @@ var _chunkZH7QZ5EFjs = require('./chunk-ZH7QZ5EF.js');
16
16
  // index.ts
17
17
  var index_exports = {};
18
18
  _chunkZH7QZ5EFjs.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunkDQU76V3Djs.initGeneratorFn
19
+ initGeneratorFn: () => _chunkK34NGF5Tjs.initGeneratorFn
20
20
  });
21
21
  _chunkZH7QZ5EFjs.init_cjs_shims.call(void 0, );
22
22
  _chunkZH7QZ5EFjs.__reExport.call(void 0, index_exports, _chunkZH7QZ5EFjs.__toESM.call(void 0, _chunkFVKYD24Tjs.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunkDQU76V3Djs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkK34NGF5Tjs.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-LYHBU3HI.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-UFYNNMRC.mjs";
7
+ } from "./chunk-CFLWQRZK.mjs";
8
8
  import "./chunk-VPWBNTCH.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 _chunkDQU76V3Djs = require('../../../chunk-DQU76V3D.js');
4
+ var _chunkK34NGF5Tjs = require('../../../chunk-K34NGF5T.js');
5
5
  require('../../../chunk-3HI6WK3M.js');
6
6
  require('../../../chunk-ZH7QZ5EF.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkDQU76V3Djs.generator_default; exports.initGeneratorFn = _chunkDQU76V3Djs.initGeneratorFn;
10
+ exports.default = _chunkK34NGF5Tjs.generator_default; exports.initGeneratorFn = _chunkK34NGF5Tjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-UFYNNMRC.mjs";
4
+ } from "../../../chunk-CFLWQRZK.mjs";
5
5
  import "../../../chunk-VPWBNTCH.mjs";
6
6
  import "../../../chunk-VHOQB7WG.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "type": "commonjs",
5
5
  "description": "Tools for managing Projen configuration automation within a Nx workspace.",
6
6
  "repository": {