@storm-software/projen 0.20.10 → 0.20.12

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,25 @@
2
2
 
3
3
  # Changelog for Storm Ops - Projen
4
4
 
5
+ ## [0.20.11](https://github.com/storm-software/storm-ops/releases/tag/projen%400.20.11) (2025-10-05)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update workspace package links
10
+ ([125d73a6a](https://github.com/storm-software/storm-ops/commit/125d73a6a))
11
+
12
+ ## [0.20.10](https://github.com/storm-software/storm-ops/releases/tag/projen%400.20.10) (2025-10-05)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **config:** Ensure correct `zod` version is used in dependencies
17
+ ([965458ca9](https://github.com/storm-software/storm-ops/commit/965458ca9))
18
+
19
+ ### Miscellaneous
20
+
21
+ - **monorepo:** Update workspace package links
22
+ ([7ca39098e](https://github.com/storm-software/storm-ops/commit/7ca39098e))
23
+
5
24
  ## [0.20.9](https://github.com/storm-software/storm-ops/releases/tag/projen%400.20.9) (2025-10-03)
6
25
 
7
26
  ### 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.20.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)
24
+ [![Version](https://img.shields.io/badge/version-0.20.10-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 -->
@@ -40,7 +40,6 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
40
40
 
41
41
  <!-- START doctoc -->
42
42
  <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
43
-
44
43
  ## Table of Contents
45
44
 
46
45
  - [Storm Projen Tools](#storm-projen-tools)
@@ -995,7 +995,7 @@ schemaRegistry.add(ownerSchema, {
995
995
  description: "The owner of the package"
996
996
  });
997
997
  var modeSchema = z._default(
998
- z.enum(["development", "staging", "production"]).check(z.trim(), z.toLowerCase()),
998
+ z.enum(["development", "test", "production"]).check(z.trim(), z.toLowerCase()),
999
999
  "production"
1000
1000
  );
1001
1001
  schemaRegistry.add(modeSchema, {
@@ -1967,16 +1967,16 @@ ${formatLogMessage(config5)}`,
1967
1967
 
1968
1968
  // ../config-tools/src/get-config.ts
1969
1969
  init_esm_shims();
1970
- var getConfig = (workspaceRoot3, skipLogs = false) => {
1970
+ function getConfig(workspaceRoot3, skipLogs = false) {
1971
1971
  return loadStormWorkspaceConfig(workspaceRoot3, skipLogs);
1972
- };
1973
- var getWorkspaceConfig = (skipLogs = true, options = {}) => {
1972
+ }
1973
+ function getWorkspaceConfig(skipLogs = true, options = {}) {
1974
1974
  let workspaceRoot3 = options.workspaceRoot;
1975
1975
  if (!workspaceRoot3) {
1976
1976
  workspaceRoot3 = findWorkspaceRoot(options.cwd);
1977
1977
  }
1978
1978
  return getConfig(workspaceRoot3, skipLogs);
1979
- };
1979
+ }
1980
1980
 
1981
1981
  // ../workspace-tools/src/base/base-executor.ts
1982
1982
  import { defu as defu3 } from "defu";
@@ -994,7 +994,7 @@ schemaRegistry.add(ownerSchema, {
994
994
  description: "The owner of the package"
995
995
  });
996
996
  var modeSchema = z._default(
997
- z.enum(["development", "staging", "production"]).check(z.trim(), z.toLowerCase()),
997
+ z.enum(["development", "test", "production"]).check(z.trim(), z.toLowerCase()),
998
998
  "production"
999
999
  );
1000
1000
  schemaRegistry.add(modeSchema, {
@@ -1966,16 +1966,16 @@ ${formatLogMessage(config5)}`,
1966
1966
 
1967
1967
  // ../config-tools/src/get-config.ts
1968
1968
  _chunk5W2STSVOjs.init_cjs_shims.call(void 0, );
1969
- var getConfig = (workspaceRoot3, skipLogs = false) => {
1969
+ function getConfig(workspaceRoot3, skipLogs = false) {
1970
1970
  return loadStormWorkspaceConfig(workspaceRoot3, skipLogs);
1971
- };
1972
- var getWorkspaceConfig = (skipLogs = true, options = {}) => {
1971
+ }
1972
+ function getWorkspaceConfig(skipLogs = true, options = {}) {
1973
1973
  let workspaceRoot3 = options.workspaceRoot;
1974
1974
  if (!workspaceRoot3) {
1975
1975
  workspaceRoot3 = findWorkspaceRoot(options.cwd);
1976
1976
  }
1977
1977
  return getConfig(workspaceRoot3, skipLogs);
1978
- };
1978
+ }
1979
1979
 
1980
1980
  // ../workspace-tools/src/base/base-executor.ts
1981
1981
 
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-7IXF56VE.js');
2
2
 
3
3
 
4
- var _chunk7QUQD6DUjs = require('./chunk-7QUQD6DU.js');
4
+ var _chunkUNNE4KW4js = require('./chunk-UNNE4KW4.js');
5
5
  require('./chunk-ARQAZUI7.js');
6
6
  require('./chunk-5W2STSVO.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunk7QUQD6DUjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkUNNE4KW4js.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-ATD6I4O5.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-BUGJJCS5.mjs";
4
+ } from "./chunk-FHELPZ7U.mjs";
5
5
  import "./chunk-UYKARK2K.mjs";
6
6
  import "./chunk-LPZRVIAG.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkKIRRDW67js = require('./chunk-KIRRDW67.js');
5
5
 
6
6
 
7
- var _chunk7QUQD6DUjs = require('./chunk-7QUQD6DU.js');
7
+ var _chunkUNNE4KW4js = require('./chunk-UNNE4KW4.js');
8
8
  require('./chunk-ARQAZUI7.js');
9
9
 
10
10
 
@@ -16,10 +16,10 @@ var _chunk5W2STSVOjs = require('./chunk-5W2STSVO.js');
16
16
  // index.ts
17
17
  var index_exports = {};
18
18
  _chunk5W2STSVOjs.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunk7QUQD6DUjs.initGeneratorFn
19
+ initGeneratorFn: () => _chunkUNNE4KW4js.initGeneratorFn
20
20
  });
21
21
  _chunk5W2STSVOjs.init_cjs_shims.call(void 0, );
22
22
  _chunk5W2STSVOjs.__reExport.call(void 0, index_exports, _chunk5W2STSVOjs.__toESM.call(void 0, _chunkKIRRDW67js.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunk7QUQD6DUjs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkUNNE4KW4js.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-VJSAEZKT.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-BUGJJCS5.mjs";
7
+ } from "./chunk-FHELPZ7U.mjs";
8
8
  import "./chunk-UYKARK2K.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 _chunk7QUQD6DUjs = require('../../../chunk-7QUQD6DU.js');
4
+ var _chunkUNNE4KW4js = require('../../../chunk-UNNE4KW4.js');
5
5
  require('../../../chunk-ARQAZUI7.js');
6
6
  require('../../../chunk-5W2STSVO.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunk7QUQD6DUjs.generator_default; exports.initGeneratorFn = _chunk7QUQD6DUjs.initGeneratorFn;
10
+ exports.default = _chunkUNNE4KW4js.generator_default; exports.initGeneratorFn = _chunkUNNE4KW4js.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-BUGJJCS5.mjs";
4
+ } from "../../../chunk-FHELPZ7U.mjs";
5
5
  import "../../../chunk-UYKARK2K.mjs";
6
6
  import "../../../chunk-LPZRVIAG.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.20.10",
3
+ "version": "0.20.12",
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": "b5501e3dcc4eda6c260f69df5eb55dc3d58ae540"
145
+ "gitHead": "58633be531c801032daa1cb3ed2bbace2fb30dd9"
146
146
  }