@storm-software/projen 0.21.5 → 0.21.6

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,13 @@
2
2
 
3
3
  # Changelog for Storm Ops - Projen
4
4
 
5
+ ## [0.21.5](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.5) (2025-10-17)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update workspace package links
10
+ ([3ec988077](https://github.com/storm-software/storm-ops/commit/3ec988077))
11
+
5
12
  ## [0.21.4](https://github.com/storm-software/storm-ops/releases/tag/projen%400.21.4) (2025-10-17)
6
13
 
7
14
  ### 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.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.21.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 -->
@@ -2987,13 +2987,17 @@ _chunkHIYOMEE3js.init_cjs_shims.call(void 0, );
2987
2987
  _chunkHIYOMEE3js.init_cjs_shims.call(void 0, );
2988
2988
  var _tsup = require('tsup');
2989
2989
  async function build(options) {
2990
- writeDebug(
2991
- ` \u{1F680} Running ${options.name || "tsup"} build`,
2992
- options.workspaceConfig
2993
- );
2990
+ if (!options.silent) {
2991
+ writeDebug(
2992
+ ` \u{1F680} Running ${options.name || "tsup"} build`,
2993
+ options.workspaceConfig
2994
+ );
2995
+ }
2994
2996
  const stopwatch = getStopwatch(`${options.name || "tsup"} build`);
2995
2997
  await _tsup.build.call(void 0, options);
2996
- stopwatch();
2998
+ if (!options.silent) {
2999
+ stopwatch();
3000
+ }
2997
3001
  }
2998
3002
 
2999
3003
  // ../esbuild/src/tsup.ts
@@ -2988,13 +2988,17 @@ init_esm_shims();
2988
2988
  init_esm_shims();
2989
2989
  import { build as tsup } from "tsup";
2990
2990
  async function build(options) {
2991
- writeDebug(
2992
- ` \u{1F680} Running ${options.name || "tsup"} build`,
2993
- options.workspaceConfig
2994
- );
2991
+ if (!options.silent) {
2992
+ writeDebug(
2993
+ ` \u{1F680} Running ${options.name || "tsup"} build`,
2994
+ options.workspaceConfig
2995
+ );
2996
+ }
2995
2997
  const stopwatch = getStopwatch(`${options.name || "tsup"} build`);
2996
2998
  await tsup(options);
2997
- stopwatch();
2999
+ if (!options.silent) {
3000
+ stopwatch();
3001
+ }
2998
3002
  }
2999
3003
 
3000
3004
  // ../esbuild/src/tsup.ts
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-RQQJKGYS.js');
2
2
 
3
3
 
4
- var _chunkOIQM2V5Fjs = require('./chunk-OIQM2V5F.js');
4
+ var _chunk2GR2A7KUjs = require('./chunk-2GR2A7KU.js');
5
5
  require('./chunk-HZ7RJVKL.js');
6
6
  require('./chunk-HIYOMEE3.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkOIQM2V5Fjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunk2GR2A7KUjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-AFWAD22Q.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-ZPDGJD4A.mjs";
4
+ } from "./chunk-3HLEOPJ5.mjs";
5
5
  import "./chunk-RNZLXULX.mjs";
6
6
  import "./chunk-LGYVWZIM.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkB7W5YQBNjs = require('./chunk-B7W5YQBN.js');
5
5
 
6
6
 
7
- var _chunkOIQM2V5Fjs = require('./chunk-OIQM2V5F.js');
7
+ var _chunk2GR2A7KUjs = require('./chunk-2GR2A7KU.js');
8
8
  require('./chunk-HZ7RJVKL.js');
9
9
 
10
10
 
@@ -16,10 +16,10 @@ var _chunkHIYOMEE3js = require('./chunk-HIYOMEE3.js');
16
16
  // index.ts
17
17
  var index_exports = {};
18
18
  _chunkHIYOMEE3js.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunkOIQM2V5Fjs.initGeneratorFn
19
+ initGeneratorFn: () => _chunk2GR2A7KUjs.initGeneratorFn
20
20
  });
21
21
  _chunkHIYOMEE3js.init_cjs_shims.call(void 0, );
22
22
  _chunkHIYOMEE3js.__reExport.call(void 0, index_exports, _chunkHIYOMEE3js.__toESM.call(void 0, _chunkB7W5YQBNjs.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunkOIQM2V5Fjs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunk2GR2A7KUjs.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-YJ22A5AT.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-ZPDGJD4A.mjs";
7
+ } from "./chunk-3HLEOPJ5.mjs";
8
8
  import "./chunk-RNZLXULX.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 _chunkOIQM2V5Fjs = require('../../../chunk-OIQM2V5F.js');
4
+ var _chunk2GR2A7KUjs = require('../../../chunk-2GR2A7KU.js');
5
5
  require('../../../chunk-HZ7RJVKL.js');
6
6
  require('../../../chunk-HIYOMEE3.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkOIQM2V5Fjs.generator_default; exports.initGeneratorFn = _chunkOIQM2V5Fjs.initGeneratorFn;
10
+ exports.default = _chunk2GR2A7KUjs.generator_default; exports.initGeneratorFn = _chunk2GR2A7KUjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-ZPDGJD4A.mjs";
4
+ } from "../../../chunk-3HLEOPJ5.mjs";
5
5
  import "../../../chunk-RNZLXULX.mjs";
6
6
  import "../../../chunk-LGYVWZIM.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.21.5",
3
+ "version": "0.21.6",
4
4
  "type": "commonjs",
5
5
  "description": "Tools for managing Projen configuration automation within a Nx workspace.",
6
6
  "repository": {
@@ -142,5 +142,5 @@
142
142
  "publishConfig": { "access": "public" },
143
143
  "executors": "./executors.json",
144
144
  "generators": "./generators.json",
145
- "gitHead": "963648c59da71e988de4bf5006126466f89195ed"
145
+ "gitHead": "feabcb14d4383826b5e1761f8593966eaad96d1c"
146
146
  }