@storm-software/projen 0.15.8 → 0.15.10

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,18 @@
2
2
 
3
3
  # Changelog for Storm Ops - Projen
4
4
 
5
+ ## [0.15.9](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.9) (2025-05-25)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate README markdown files
10
+
11
+ ## [0.15.8](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.8) (2025-05-18)
12
+
13
+ ### Miscellaneous
14
+
15
+ - **monorepo:** Regenerate README markdown files
16
+
5
17
  ## [0.15.7](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.7) (2025-05-13)
6
18
 
7
19
  ### 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.15.7-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.15.9-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 -->
@@ -2364,6 +2364,14 @@ async function resolveContext(userOptions) {
2364
2364
  minify: resolvedOptions.minify || resolvedOptions.mode === "production"
2365
2365
  };
2366
2366
  context.options.esbuildPlugins = [...context.options.esbuildPlugins ?? []];
2367
+ if (context.options.verbose) {
2368
+ writeDebug(
2369
+ ` \u2699\uFE0F Build options resolved:
2370
+
2371
+ ${formatLogMessage(context.options)}`,
2372
+ workspaceConfig
2373
+ );
2374
+ }
2367
2375
  return context;
2368
2376
  }
2369
2377
 
@@ -4360,7 +4368,7 @@ var typescript_build_executor_untyped_default = defineUntypedSchema4({
4360
4368
  ]
4361
4369
  },
4362
4370
  $default: "esnext",
4363
- $resolve: (val = "esnext") => val.toLowerCase()
4371
+ $resolve: (val = "esnext") => typeof val === "string" ? val.toLowerCase() : val
4364
4372
  },
4365
4373
  format: {
4366
4374
  $schema: {
@@ -2363,6 +2363,14 @@ async function resolveContext(userOptions) {
2363
2363
  minify: resolvedOptions.minify || resolvedOptions.mode === "production"
2364
2364
  };
2365
2365
  context.options.esbuildPlugins = [..._nullishCoalesce(context.options.esbuildPlugins, () => ( []))];
2366
+ if (context.options.verbose) {
2367
+ writeDebug(
2368
+ ` \u2699\uFE0F Build options resolved:
2369
+
2370
+ ${formatLogMessage(context.options)}`,
2371
+ workspaceConfig
2372
+ );
2373
+ }
2366
2374
  return context;
2367
2375
  }
2368
2376
 
@@ -4359,7 +4367,7 @@ var typescript_build_executor_untyped_default = _untyped.defineUntypedSchema.cal
4359
4367
  ]
4360
4368
  },
4361
4369
  $default: "esnext",
4362
- $resolve: (val = "esnext") => val.toLowerCase()
4370
+ $resolve: (val = "esnext") => typeof val === "string" ? val.toLowerCase() : val
4363
4371
  },
4364
4372
  format: {
4365
4373
  $schema: {
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-LZV7UWZY.js');
2
2
 
3
3
 
4
- var _chunkO7JGIP7Wjs = require('./chunk-O7JGIP7W.js');
4
+ var _chunkDXCHFSHPjs = require('./chunk-DXCHFSHP.js');
5
5
  require('./chunk-VBX7XODB.js');
6
6
  require('./chunk-RZYNLMJ5.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkO7JGIP7Wjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkDXCHFSHPjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-VAMYC2GR.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-ESJAMBPS.mjs";
4
+ } from "./chunk-54OIA56I.mjs";
5
5
  import "./chunk-6YIKZSMZ.mjs";
6
6
  import "./chunk-UQC7DEDF.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkOFRLB5Y5js = require('./chunk-OFRLB5Y5.js');
5
5
 
6
6
 
7
- var _chunkO7JGIP7Wjs = require('./chunk-O7JGIP7W.js');
7
+ var _chunkDXCHFSHPjs = require('./chunk-DXCHFSHP.js');
8
8
  require('./chunk-VBX7XODB.js');
9
9
 
10
10
 
@@ -16,10 +16,10 @@ var _chunkRZYNLMJ5js = require('./chunk-RZYNLMJ5.js');
16
16
  // index.ts
17
17
  var index_exports = {};
18
18
  _chunkRZYNLMJ5js.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunkO7JGIP7Wjs.initGeneratorFn
19
+ initGeneratorFn: () => _chunkDXCHFSHPjs.initGeneratorFn
20
20
  });
21
21
  _chunkRZYNLMJ5js.init_cjs_shims.call(void 0, );
22
22
  _chunkRZYNLMJ5js.__reExport.call(void 0, index_exports, _chunkRZYNLMJ5js.__toESM.call(void 0, _chunkOFRLB5Y5js.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunkO7JGIP7Wjs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkDXCHFSHPjs.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-3Y4CAAKD.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-ESJAMBPS.mjs";
7
+ } from "./chunk-54OIA56I.mjs";
8
8
  import "./chunk-6YIKZSMZ.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 _chunkO7JGIP7Wjs = require('../../../chunk-O7JGIP7W.js');
4
+ var _chunkDXCHFSHPjs = require('../../../chunk-DXCHFSHP.js');
5
5
  require('../../../chunk-VBX7XODB.js');
6
6
  require('../../../chunk-RZYNLMJ5.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkO7JGIP7Wjs.generator_default; exports.initGeneratorFn = _chunkO7JGIP7Wjs.initGeneratorFn;
10
+ exports.default = _chunkDXCHFSHPjs.generator_default; exports.initGeneratorFn = _chunkDXCHFSHPjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-ESJAMBPS.mjs";
4
+ } from "../../../chunk-54OIA56I.mjs";
5
5
  import "../../../chunk-6YIKZSMZ.mjs";
6
6
  import "../../../chunk-UQC7DEDF.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.15.8",
3
+ "version": "0.15.10",
4
4
  "type": "commonjs",
5
5
  "description": "Tools for managing Projen configuration automation within a Nx workspace.",
6
6
  "repository": {