@storm-software/projen 0.15.19 → 0.15.20

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,12 @@
2
2
 
3
3
  # Changelog for Storm Ops - Projen
4
4
 
5
+ ## [0.15.19](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.19) (2025-06-06)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate README markdown files
10
+
5
11
  ## [0.15.18](https://github.com/storm-software/storm-ops/releases/tag/projen%400.15.18) (2025-06-06)
6
12
 
7
13
  ### 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.18-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.19-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 -->
@@ -252,6 +252,7 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
252
252
  license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
253
253
  homepage: _zod2.default.string().trim().url().optional().describe("The homepage of the workspace"),
254
254
  docs: _zod2.default.string().trim().url().optional().describe("The documentation site for the workspace"),
255
+ portal: _zod2.default.string().trim().url().optional().describe("The development portal site for the workspace"),
255
256
  licensing: _zod2.default.string().trim().url().optional().describe("The licensing site for the workspace"),
256
257
  contact: _zod2.default.string().trim().url().optional().describe("The contact site for the workspace"),
257
258
  support: _zod2.default.string().trim().url().optional().describe(
@@ -980,6 +981,7 @@ var getConfigEnv = () => {
980
981
  license: process.env[`${prefix}LICENSE`] || void 0,
981
982
  homepage: process.env[`${prefix}HOMEPAGE`] || void 0,
982
983
  docs: process.env[`${prefix}DOCS`] || void 0,
984
+ portal: process.env[`${prefix}PORTAL`] || void 0,
983
985
  licensing: process.env[`${prefix}LICENSING`] || void 0,
984
986
  contact: process.env[`${prefix}CONTACT`] || void 0,
985
987
  support: process.env[`${prefix}SUPPORT`] || void 0,
@@ -1196,6 +1198,9 @@ var setConfigEnv = (config) => {
1196
1198
  if (config.docs) {
1197
1199
  process.env[`${prefix}DOCS`] = config.docs;
1198
1200
  }
1201
+ if (config.portal) {
1202
+ process.env[`${prefix}PORTAL`] = config.portal;
1203
+ }
1199
1204
  if (config.licensing) {
1200
1205
  process.env[`${prefix}LICENSING`] = config.licensing;
1201
1206
  }
@@ -1512,7 +1517,7 @@ _chunk3XVCD6PXjs.init_cjs_shims.call(void 0, );
1512
1517
  var getConfig = (workspaceRoot3, skipLogs = false) => {
1513
1518
  return loadStormWorkspaceConfig(workspaceRoot3, skipLogs);
1514
1519
  };
1515
- var getWorkspaceConfig = (skipLogs = false, options = {}) => {
1520
+ var getWorkspaceConfig = (skipLogs = true, options = {}) => {
1516
1521
  let workspaceRoot3 = options.workspaceRoot;
1517
1522
  if (!workspaceRoot3) {
1518
1523
  workspaceRoot3 = findWorkspaceRoot(options.cwd);
@@ -253,6 +253,7 @@ var stormWorkspaceConfigSchema = z.object({
253
253
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
254
254
  homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
255
255
  docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
256
+ portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
256
257
  licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
257
258
  contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
258
259
  support: z.string().trim().url().optional().describe(
@@ -981,6 +982,7 @@ var getConfigEnv = () => {
981
982
  license: process.env[`${prefix}LICENSE`] || void 0,
982
983
  homepage: process.env[`${prefix}HOMEPAGE`] || void 0,
983
984
  docs: process.env[`${prefix}DOCS`] || void 0,
985
+ portal: process.env[`${prefix}PORTAL`] || void 0,
984
986
  licensing: process.env[`${prefix}LICENSING`] || void 0,
985
987
  contact: process.env[`${prefix}CONTACT`] || void 0,
986
988
  support: process.env[`${prefix}SUPPORT`] || void 0,
@@ -1197,6 +1199,9 @@ var setConfigEnv = (config) => {
1197
1199
  if (config.docs) {
1198
1200
  process.env[`${prefix}DOCS`] = config.docs;
1199
1201
  }
1202
+ if (config.portal) {
1203
+ process.env[`${prefix}PORTAL`] = config.portal;
1204
+ }
1200
1205
  if (config.licensing) {
1201
1206
  process.env[`${prefix}LICENSING`] = config.licensing;
1202
1207
  }
@@ -1513,7 +1518,7 @@ init_esm_shims();
1513
1518
  var getConfig = (workspaceRoot3, skipLogs = false) => {
1514
1519
  return loadStormWorkspaceConfig(workspaceRoot3, skipLogs);
1515
1520
  };
1516
- var getWorkspaceConfig = (skipLogs = false, options = {}) => {
1521
+ var getWorkspaceConfig = (skipLogs = true, options = {}) => {
1517
1522
  let workspaceRoot3 = options.workspaceRoot;
1518
1523
  if (!workspaceRoot3) {
1519
1524
  workspaceRoot3 = findWorkspaceRoot(options.cwd);
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-HEQFBRVE.js');
2
2
 
3
3
 
4
- var _chunkF5KUPJRSjs = require('./chunk-F5KUPJRS.js');
4
+ var _chunk52AUCGU2js = require('./chunk-52AUCGU2.js');
5
5
  require('./chunk-EW6SOR65.js');
6
6
  require('./chunk-3XVCD6PX.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkF5KUPJRSjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunk52AUCGU2js.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-XM6I2VBY.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-FICTO7PC.mjs";
4
+ } from "./chunk-R54WIS6W.mjs";
5
5
  import "./chunk-3JMLZKJ6.mjs";
6
6
  import "./chunk-SAK3VUBP.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkMUTVIHVDjs = require('./chunk-MUTVIHVD.js');
5
5
 
6
6
 
7
- var _chunkF5KUPJRSjs = require('./chunk-F5KUPJRS.js');
7
+ var _chunk52AUCGU2js = require('./chunk-52AUCGU2.js');
8
8
  require('./chunk-EW6SOR65.js');
9
9
 
10
10
 
@@ -16,10 +16,10 @@ var _chunk3XVCD6PXjs = require('./chunk-3XVCD6PX.js');
16
16
  // index.ts
17
17
  var index_exports = {};
18
18
  _chunk3XVCD6PXjs.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunkF5KUPJRSjs.initGeneratorFn
19
+ initGeneratorFn: () => _chunk52AUCGU2js.initGeneratorFn
20
20
  });
21
21
  _chunk3XVCD6PXjs.init_cjs_shims.call(void 0, );
22
22
  _chunk3XVCD6PXjs.__reExport.call(void 0, index_exports, _chunk3XVCD6PXjs.__toESM.call(void 0, _chunkMUTVIHVDjs.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunkF5KUPJRSjs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunk52AUCGU2js.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-7VU4HV6B.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-FICTO7PC.mjs";
7
+ } from "./chunk-R54WIS6W.mjs";
8
8
  import "./chunk-3JMLZKJ6.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 _chunkF5KUPJRSjs = require('../../../chunk-F5KUPJRS.js');
4
+ var _chunk52AUCGU2js = require('../../../chunk-52AUCGU2.js');
5
5
  require('../../../chunk-EW6SOR65.js');
6
6
  require('../../../chunk-3XVCD6PX.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkF5KUPJRSjs.generator_default; exports.initGeneratorFn = _chunkF5KUPJRSjs.initGeneratorFn;
10
+ exports.default = _chunk52AUCGU2js.generator_default; exports.initGeneratorFn = _chunk52AUCGU2js.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-FICTO7PC.mjs";
4
+ } from "../../../chunk-R54WIS6W.mjs";
5
5
  import "../../../chunk-3JMLZKJ6.mjs";
6
6
  import "../../../chunk-SAK3VUBP.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.15.19",
3
+ "version": "0.15.20",
4
4
  "type": "commonjs",
5
5
  "description": "Tools for managing Projen configuration automation within a Nx workspace.",
6
6
  "repository": {