@storm-software/projen 0.9.36 → 0.9.37

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.9.37](https://github.com/storm-software/storm-ops/releases/tag/projen%400.9.37) (2025-04-04)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate README markdown files
10
+ ([30c679ec1](https://github.com/storm-software/storm-ops/commit/30c679ec1))
11
+
5
12
  ## [0.9.36](https://github.com/storm-software/storm-ops/releases/tag/projen%400.9.36) (2025-04-02)
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.9.34-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.36-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 -->
@@ -200,6 +200,10 @@ var WorkspaceDirectoryConfigSchema = z.object({
200
200
  log: z.string().trim().optional().describe("The directory used to store the environment's temp files"),
201
201
  build: z.string().trim().default("dist").describe("The directory used to store the workspace's distributable files after a build (relative to the workspace root)")
202
202
  }).describe("Various directories used by the workspace to store data, cache, and configuration files");
203
+ var errorConfigSchema = z.object({
204
+ codesFile: z.string().trim().default(STORM_DEFAULT_RELEASE_BANNER).describe("The path to the workspace's error codes JSON file"),
205
+ url: z.string().trim().url().optional().describe("A URL to a page that looks up the workspace's error messages given a specific error code")
206
+ }).describe("The workspace's error config used during the error process");
203
207
  var stormWorkspaceConfigSchema = z.object({
204
208
  $schema: z.string().trim().default("https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json").optional().nullish().describe("The URL to the JSON schema file that describes the Storm configuration file"),
205
209
  extends: ExtendsSchema.optional(),
@@ -218,6 +222,7 @@ var stormWorkspaceConfigSchema = z.object({
218
222
  bot: WorkspaceBotConfigSchema,
219
223
  release: WorkspaceReleaseConfigSchema,
220
224
  account: WorkspaceAccountConfigSchema,
225
+ error: errorConfigSchema,
221
226
  mode: z.enum([
222
227
  "development",
223
228
  "staging",
@@ -433,7 +438,10 @@ var getDefaultConfig = /* @__PURE__ */ __name(async (root) => {
433
438
  license,
434
439
  homepage,
435
440
  docs: `${homepage || STORM_DEFAULT_HOMEPAGE}/docs`,
436
- licensing: `${homepage || STORM_DEFAULT_HOMEPAGE}/license`
441
+ licensing: `${homepage || STORM_DEFAULT_HOMEPAGE}/license`,
442
+ error: {
443
+ url: `${homepage || STORM_DEFAULT_HOMEPAGE}/errors`
444
+ }
437
445
  };
438
446
  }, "getDefaultConfig");
439
447
 
@@ -828,6 +836,10 @@ var getConfigEnv = /* @__PURE__ */ __name(() => {
828
836
  header: process.env[`${prefix}RELEASE_HEADER`] || void 0,
829
837
  footer: process.env[`${prefix}RELEASE_FOOTER`] || void 0
830
838
  },
839
+ error: {
840
+ codesFile: process.env[`${prefix}ERROR_CODES_FILE`] || void 0,
841
+ url: process.env[`${prefix}ERROR_URL`] || void 0
842
+ },
831
843
  account: {
832
844
  twitter: process.env[`${prefix}ACCOUNT_TWITTER`] || void 0,
833
845
  discord: process.env[`${prefix}ACCOUNT_DISCORD`] || void 0,
@@ -1002,6 +1014,10 @@ var setConfigEnv = /* @__PURE__ */ __name((config) => {
1002
1014
  process.env[`${prefix}BOT_NAME`] = config.bot.name;
1003
1015
  process.env[`${prefix}BOT_EMAIL`] = config.bot.email;
1004
1016
  }
1017
+ if (config.error) {
1018
+ process.env[`${prefix}ERROR_CODES_FILE`] = config.error.codesFile;
1019
+ process.env[`${prefix}ERROR_URL`] = config.error.url;
1020
+ }
1005
1021
  if (config.release) {
1006
1022
  process.env[`${prefix}RELEASE_BANNER`] = config.release.banner;
1007
1023
  process.env[`${prefix}RELEASE_HEADER`] = config.release.header;
@@ -1132,7 +1148,7 @@ var setConfigEnv = /* @__PURE__ */ __name((config) => {
1132
1148
  process.env[`${prefix}REGISTRY_CYCLONE`] = String(config.registry.cyclone);
1133
1149
  }
1134
1150
  if (config.registry.container) {
1135
- process.env[`${prefix}REGISTRY_CONTAINER`] = String(config.registry.cyclone);
1151
+ process.env[`${prefix}REGISTRY_CONTAINER`] = String(config.registry.container);
1136
1152
  }
1137
1153
  }
1138
1154
  if (config.logLevel) {
@@ -1901,10 +1917,9 @@ var getEntryPoints = /* @__PURE__ */ __name(async (config, projectRoot, sourceRo
1901
1917
  return ret;
1902
1918
  }, []));
1903
1919
  } else {
1904
- const result = correctPaths(entryPoint.replaceAll(correctPaths(workspaceRoot3), "").replaceAll(correctPaths(projectRoot), ""));
1905
- writeDebug(`Trying to add entry point ${result}"`, config);
1906
- if (!paths.includes(result)) {
1907
- paths.push(result);
1920
+ writeDebug(`Trying to add entry point ${entryPoint}"`, config);
1921
+ if (!paths.includes(entryPoint)) {
1922
+ paths.push(entryPoint);
1908
1923
  }
1909
1924
  }
1910
1925
  return paths;
@@ -2676,7 +2691,7 @@ var resolveOptions = /* @__PURE__ */ __name(async (userOptions) => {
2676
2691
  ...userOptions,
2677
2692
  tsconfig: joinPaths(projectRoot, userOptions.tsconfig ? userOptions.tsconfig.replace(projectRoot, "") : "tsconfig.json"),
2678
2693
  format: options.format || "cjs",
2679
- entryPoints: await getEntryPoints(config, projectRoot, projectJson.sourceRoot, userOptions.entry ?? "./src/index.ts", userOptions.emitOnAll === true),
2694
+ entryPoints: await getEntryPoints(config, projectRoot, projectJson.sourceRoot, userOptions.entry ?? "./src/index.ts", false),
2680
2695
  outdir: userOptions.outputPath || joinPaths("dist", projectRoot),
2681
2696
  distDir: userOptions.distDir || "dist",
2682
2697
  plugins: [],
@@ -2691,7 +2706,6 @@ var resolveOptions = /* @__PURE__ */ __name(async (userOptions) => {
2691
2706
  metafile: userOptions.metafile !== false,
2692
2707
  generatePackageJson: userOptions.generatePackageJson !== false,
2693
2708
  clean: userOptions.clean !== false,
2694
- emitOnAll: userOptions.emitOnAll === true,
2695
2709
  assets: userOptions.assets ?? [],
2696
2710
  injectShims: userOptions.injectShims !== true,
2697
2711
  bundle: userOptions.bundle !== false,
@@ -2768,7 +2782,7 @@ async function generatePackageJson(context2) {
2768
2782
  if (Array.isArray(context2.options.entryPoints)) {
2769
2783
  entryPoints = context2.options.entryPoints.map((entryPoint) => typeof entryPoint === "string" ? {
2770
2784
  in: entryPoint,
2771
- out: entryPoint
2785
+ out: correctPaths(entryPoint.replaceAll(correctPaths(context2.options.config.workspaceRoot), "").replaceAll(correctPaths(context2.options.projectRoot), ""))
2772
2786
  } : entryPoint);
2773
2787
  }
2774
2788
  for (const entryPoint of entryPoints) {
@@ -2839,7 +2853,6 @@ async function executeEsBuild(context2) {
2839
2853
  delete options.clean;
2840
2854
  delete options.debug;
2841
2855
  delete options.generatePackageJson;
2842
- delete options.emitOnAll;
2843
2856
  delete options.distDir;
2844
2857
  delete options.includeSrc;
2845
2858
  delete options.verbose;
@@ -2852,7 +2865,10 @@ async function executeEsBuild(context2) {
2852
2865
  delete options.injectShims;
2853
2866
  delete options.external;
2854
2867
  writeTrace(`Run esbuild (${context2.options.name}) with the following options:
2855
- ${formatLogMessage(options)}`, context2.options.config);
2868
+ ${formatLogMessage({
2869
+ ...options,
2870
+ define: "<Hidden>"
2871
+ })}`, context2.options.config);
2856
2872
  const result = await esbuild2.build(options);
2857
2873
  await esbuild2.stop();
2858
2874
  if (result.metafile) {
@@ -199,6 +199,10 @@ var WorkspaceDirectoryConfigSchema = _zod2.default.object({
199
199
  log: _zod2.default.string().trim().optional().describe("The directory used to store the environment's temp files"),
200
200
  build: _zod2.default.string().trim().default("dist").describe("The directory used to store the workspace's distributable files after a build (relative to the workspace root)")
201
201
  }).describe("Various directories used by the workspace to store data, cache, and configuration files");
202
+ var errorConfigSchema = _zod2.default.object({
203
+ codesFile: _zod2.default.string().trim().default(STORM_DEFAULT_RELEASE_BANNER).describe("The path to the workspace's error codes JSON file"),
204
+ url: _zod2.default.string().trim().url().optional().describe("A URL to a page that looks up the workspace's error messages given a specific error code")
205
+ }).describe("The workspace's error config used during the error process");
202
206
  var stormWorkspaceConfigSchema = _zod2.default.object({
203
207
  $schema: _zod2.default.string().trim().default("https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json").optional().nullish().describe("The URL to the JSON schema file that describes the Storm configuration file"),
204
208
  extends: ExtendsSchema.optional(),
@@ -217,6 +221,7 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
217
221
  bot: WorkspaceBotConfigSchema,
218
222
  release: WorkspaceReleaseConfigSchema,
219
223
  account: WorkspaceAccountConfigSchema,
224
+ error: errorConfigSchema,
220
225
  mode: _zod2.default.enum([
221
226
  "development",
222
227
  "staging",
@@ -432,7 +437,10 @@ var getDefaultConfig = /* @__PURE__ */ _chunkWTMG7MTKjs.__name.call(void 0, asyn
432
437
  license,
433
438
  homepage,
434
439
  docs: `${homepage || STORM_DEFAULT_HOMEPAGE}/docs`,
435
- licensing: `${homepage || STORM_DEFAULT_HOMEPAGE}/license`
440
+ licensing: `${homepage || STORM_DEFAULT_HOMEPAGE}/license`,
441
+ error: {
442
+ url: `${homepage || STORM_DEFAULT_HOMEPAGE}/errors`
443
+ }
436
444
  };
437
445
  }, "getDefaultConfig");
438
446
 
@@ -827,6 +835,10 @@ var getConfigEnv = /* @__PURE__ */ _chunkWTMG7MTKjs.__name.call(void 0, () => {
827
835
  header: process.env[`${prefix}RELEASE_HEADER`] || void 0,
828
836
  footer: process.env[`${prefix}RELEASE_FOOTER`] || void 0
829
837
  },
838
+ error: {
839
+ codesFile: process.env[`${prefix}ERROR_CODES_FILE`] || void 0,
840
+ url: process.env[`${prefix}ERROR_URL`] || void 0
841
+ },
830
842
  account: {
831
843
  twitter: process.env[`${prefix}ACCOUNT_TWITTER`] || void 0,
832
844
  discord: process.env[`${prefix}ACCOUNT_DISCORD`] || void 0,
@@ -1001,6 +1013,10 @@ var setConfigEnv = /* @__PURE__ */ _chunkWTMG7MTKjs.__name.call(void 0, (config)
1001
1013
  process.env[`${prefix}BOT_NAME`] = config.bot.name;
1002
1014
  process.env[`${prefix}BOT_EMAIL`] = config.bot.email;
1003
1015
  }
1016
+ if (config.error) {
1017
+ process.env[`${prefix}ERROR_CODES_FILE`] = config.error.codesFile;
1018
+ process.env[`${prefix}ERROR_URL`] = config.error.url;
1019
+ }
1004
1020
  if (config.release) {
1005
1021
  process.env[`${prefix}RELEASE_BANNER`] = config.release.banner;
1006
1022
  process.env[`${prefix}RELEASE_HEADER`] = config.release.header;
@@ -1131,7 +1147,7 @@ var setConfigEnv = /* @__PURE__ */ _chunkWTMG7MTKjs.__name.call(void 0, (config)
1131
1147
  process.env[`${prefix}REGISTRY_CYCLONE`] = String(config.registry.cyclone);
1132
1148
  }
1133
1149
  if (config.registry.container) {
1134
- process.env[`${prefix}REGISTRY_CONTAINER`] = String(config.registry.cyclone);
1150
+ process.env[`${prefix}REGISTRY_CONTAINER`] = String(config.registry.container);
1135
1151
  }
1136
1152
  }
1137
1153
  if (config.logLevel) {
@@ -1900,10 +1916,9 @@ var getEntryPoints = /* @__PURE__ */ _chunkWTMG7MTKjs.__name.call(void 0, async
1900
1916
  return ret;
1901
1917
  }, []));
1902
1918
  } else {
1903
- const result = _chunk3DQG66DJjs.correctPaths.call(void 0, entryPoint.replaceAll(_chunk3DQG66DJjs.correctPaths.call(void 0, workspaceRoot3), "").replaceAll(_chunk3DQG66DJjs.correctPaths.call(void 0, projectRoot), ""));
1904
- writeDebug(`Trying to add entry point ${result}"`, config);
1905
- if (!paths.includes(result)) {
1906
- paths.push(result);
1919
+ writeDebug(`Trying to add entry point ${entryPoint}"`, config);
1920
+ if (!paths.includes(entryPoint)) {
1921
+ paths.push(entryPoint);
1907
1922
  }
1908
1923
  }
1909
1924
  return paths;
@@ -2675,7 +2690,7 @@ var resolveOptions = /* @__PURE__ */ _chunkWTMG7MTKjs.__name.call(void 0, async
2675
2690
  ...userOptions,
2676
2691
  tsconfig: _chunk3DQG66DJjs.joinPaths.call(void 0, projectRoot, userOptions.tsconfig ? userOptions.tsconfig.replace(projectRoot, "") : "tsconfig.json"),
2677
2692
  format: options.format || "cjs",
2678
- entryPoints: await getEntryPoints(config, projectRoot, projectJson.sourceRoot, _nullishCoalesce(userOptions.entry, () => ( "./src/index.ts")), userOptions.emitOnAll === true),
2693
+ entryPoints: await getEntryPoints(config, projectRoot, projectJson.sourceRoot, _nullishCoalesce(userOptions.entry, () => ( "./src/index.ts")), false),
2679
2694
  outdir: userOptions.outputPath || _chunk3DQG66DJjs.joinPaths.call(void 0, "dist", projectRoot),
2680
2695
  distDir: userOptions.distDir || "dist",
2681
2696
  plugins: [],
@@ -2690,7 +2705,6 @@ var resolveOptions = /* @__PURE__ */ _chunkWTMG7MTKjs.__name.call(void 0, async
2690
2705
  metafile: userOptions.metafile !== false,
2691
2706
  generatePackageJson: userOptions.generatePackageJson !== false,
2692
2707
  clean: userOptions.clean !== false,
2693
- emitOnAll: userOptions.emitOnAll === true,
2694
2708
  assets: _nullishCoalesce(userOptions.assets, () => ( [])),
2695
2709
  injectShims: userOptions.injectShims !== true,
2696
2710
  bundle: userOptions.bundle !== false,
@@ -2767,7 +2781,7 @@ async function generatePackageJson(context2) {
2767
2781
  if (Array.isArray(context2.options.entryPoints)) {
2768
2782
  entryPoints = context2.options.entryPoints.map((entryPoint) => typeof entryPoint === "string" ? {
2769
2783
  in: entryPoint,
2770
- out: entryPoint
2784
+ out: _chunk3DQG66DJjs.correctPaths.call(void 0, entryPoint.replaceAll(_chunk3DQG66DJjs.correctPaths.call(void 0, context2.options.config.workspaceRoot), "").replaceAll(_chunk3DQG66DJjs.correctPaths.call(void 0, context2.options.projectRoot), ""))
2771
2785
  } : entryPoint);
2772
2786
  }
2773
2787
  for (const entryPoint of entryPoints) {
@@ -2838,7 +2852,6 @@ async function executeEsBuild(context2) {
2838
2852
  delete options.clean;
2839
2853
  delete options.debug;
2840
2854
  delete options.generatePackageJson;
2841
- delete options.emitOnAll;
2842
2855
  delete options.distDir;
2843
2856
  delete options.includeSrc;
2844
2857
  delete options.verbose;
@@ -2851,7 +2864,10 @@ async function executeEsBuild(context2) {
2851
2864
  delete options.injectShims;
2852
2865
  delete options.external;
2853
2866
  writeTrace(`Run esbuild (${context2.options.name}) with the following options:
2854
- ${formatLogMessage(options)}`, context2.options.config);
2867
+ ${formatLogMessage({
2868
+ ...options,
2869
+ define: "<Hidden>"
2870
+ })}`, context2.options.config);
2855
2871
  const result = await esbuild2.build(options);
2856
2872
  await esbuild2.stop();
2857
2873
  if (result.metafile) {
@@ -1,3 +1,3 @@
1
- export { I as InitGeneratorSchema, i as initGeneratorFn } from './index-7riJfK5Q.mjs';
1
+ export { I as InitGeneratorSchema, i as initGeneratorFn } from './index-C8HQYf7T.mjs';
2
2
  import '@nx/devkit';
3
3
  import 'zod';
@@ -1,3 +1,3 @@
1
- export { I as InitGeneratorSchema, i as initGeneratorFn } from './index-7riJfK5Q.js';
1
+ export { I as InitGeneratorSchema, i as initGeneratorFn } from './index-C8HQYf7T.js';
2
2
  import '@nx/devkit';
3
3
  import 'zod';
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-3Y6AMHJ5.js');
2
2
 
3
3
 
4
- var _chunkIHAOUZIDjs = require('./chunk-IHAOUZID.js');
4
+ var _chunkVXDOX27Tjs = require('./chunk-VXDOX27T.js');
5
5
  require('./chunk-3DQG66DJ.js');
6
6
  require('./chunk-WTMG7MTK.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkIHAOUZIDjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkVXDOX27Tjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-M432POFH.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-QHXRKXW6.mjs";
4
+ } from "./chunk-MHQEVFHV.mjs";
5
5
  import "./chunk-TTG4YCRZ.mjs";
6
6
  import "./chunk-MC42JFGZ.mjs";
7
7
  export {
@@ -64,6 +64,16 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
64
64
  slack?: string | undefined;
65
65
  medium?: string | undefined;
66
66
  }>;
67
+ error: z.ZodObject<{
68
+ codesFile: z.ZodDefault<z.ZodString>;
69
+ url: z.ZodOptional<z.ZodString>;
70
+ }, "strip", z.ZodTypeAny, {
71
+ codesFile: string;
72
+ url?: string | undefined;
73
+ }, {
74
+ codesFile?: string | undefined;
75
+ url?: string | undefined;
76
+ }>;
67
77
  mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
68
78
  workspaceRoot: z.ZodDefault<z.ZodString>;
69
79
  externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -857,6 +867,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
857
867
  slack: string;
858
868
  medium: string;
859
869
  };
870
+ error: {
871
+ codesFile: string;
872
+ url?: string | undefined;
873
+ };
860
874
  mode: "development" | "staging" | "production";
861
875
  workspaceRoot: string;
862
876
  externalPackagePatterns: string[];
@@ -872,7 +886,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
872
886
  packageManager: "npm" | "yarn" | "pnpm" | "bun";
873
887
  timezone: string;
874
888
  locale: string;
875
- logLevel: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all";
889
+ logLevel: "success" | "info" | "fatal" | "error" | "silent" | "warn" | "debug" | "trace" | "all";
876
890
  registry: {
877
891
  github?: string | undefined;
878
892
  npm?: string | undefined;
@@ -1054,6 +1068,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1054
1068
  slack?: string | undefined;
1055
1069
  medium?: string | undefined;
1056
1070
  };
1071
+ error: {
1072
+ codesFile?: string | undefined;
1073
+ url?: string | undefined;
1074
+ };
1057
1075
  directories: {
1058
1076
  cache?: string | undefined;
1059
1077
  data?: string | undefined;
@@ -1230,7 +1248,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1230
1248
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
1231
1249
  timezone?: string | undefined;
1232
1250
  locale?: string | undefined;
1233
- logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
1251
+ logLevel?: "success" | "info" | "fatal" | "error" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
1234
1252
  skipConfigLogging?: boolean | undefined;
1235
1253
  registry?: {
1236
1254
  github?: string | undefined;
@@ -64,6 +64,16 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
64
64
  slack?: string | undefined;
65
65
  medium?: string | undefined;
66
66
  }>;
67
+ error: z.ZodObject<{
68
+ codesFile: z.ZodDefault<z.ZodString>;
69
+ url: z.ZodOptional<z.ZodString>;
70
+ }, "strip", z.ZodTypeAny, {
71
+ codesFile: string;
72
+ url?: string | undefined;
73
+ }, {
74
+ codesFile?: string | undefined;
75
+ url?: string | undefined;
76
+ }>;
67
77
  mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
68
78
  workspaceRoot: z.ZodDefault<z.ZodString>;
69
79
  externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -857,6 +867,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
857
867
  slack: string;
858
868
  medium: string;
859
869
  };
870
+ error: {
871
+ codesFile: string;
872
+ url?: string | undefined;
873
+ };
860
874
  mode: "development" | "staging" | "production";
861
875
  workspaceRoot: string;
862
876
  externalPackagePatterns: string[];
@@ -872,7 +886,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
872
886
  packageManager: "npm" | "yarn" | "pnpm" | "bun";
873
887
  timezone: string;
874
888
  locale: string;
875
- logLevel: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all";
889
+ logLevel: "success" | "info" | "fatal" | "error" | "silent" | "warn" | "debug" | "trace" | "all";
876
890
  registry: {
877
891
  github?: string | undefined;
878
892
  npm?: string | undefined;
@@ -1054,6 +1068,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1054
1068
  slack?: string | undefined;
1055
1069
  medium?: string | undefined;
1056
1070
  };
1071
+ error: {
1072
+ codesFile?: string | undefined;
1073
+ url?: string | undefined;
1074
+ };
1057
1075
  directories: {
1058
1076
  cache?: string | undefined;
1059
1077
  data?: string | undefined;
@@ -1230,7 +1248,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1230
1248
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
1231
1249
  timezone?: string | undefined;
1232
1250
  locale?: string | undefined;
1233
- logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
1251
+ logLevel?: "success" | "info" | "fatal" | "error" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
1234
1252
  skipConfigLogging?: boolean | undefined;
1235
1253
  registry?: {
1236
1254
  github?: string | undefined;
package/dist/index.d.mts CHANGED
@@ -1,3 +1,3 @@
1
- export { I as InitGeneratorSchema, i as initGeneratorFn } from './index-7riJfK5Q.mjs';
1
+ export { I as InitGeneratorSchema, i as initGeneratorFn } from './index-C8HQYf7T.mjs';
2
2
  import '@nx/devkit';
3
3
  import 'zod';
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export { I as InitGeneratorSchema, i as initGeneratorFn } from './index-7riJfK5Q.js';
1
+ export { I as InitGeneratorSchema, i as initGeneratorFn } from './index-C8HQYf7T.js';
2
2
  import '@nx/devkit';
3
3
  import 'zod';
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkZ2UXMCUYjs = require('./chunk-Z2UXMCUY.js');
5
5
 
6
6
 
7
- var _chunkIHAOUZIDjs = require('./chunk-IHAOUZID.js');
7
+ var _chunkVXDOX27Tjs = require('./chunk-VXDOX27T.js');
8
8
  require('./chunk-3DQG66DJ.js');
9
9
 
10
10
 
@@ -16,10 +16,10 @@ var _chunkWTMG7MTKjs = require('./chunk-WTMG7MTK.js');
16
16
  // index.ts
17
17
  var index_exports = {};
18
18
  _chunkWTMG7MTKjs.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunkIHAOUZIDjs.initGeneratorFn
19
+ initGeneratorFn: () => _chunkVXDOX27Tjs.initGeneratorFn
20
20
  });
21
21
  _chunkWTMG7MTKjs.init_cjs_shims.call(void 0, );
22
22
  _chunkWTMG7MTKjs.__reExport.call(void 0, index_exports, _chunkWTMG7MTKjs.__toESM.call(void 0, _chunkZ2UXMCUYjs.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunkIHAOUZIDjs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkVXDOX27Tjs.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-WXKORI6N.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-QHXRKXW6.mjs";
7
+ } from "./chunk-MHQEVFHV.mjs";
8
8
  import "./chunk-TTG4YCRZ.mjs";
9
9
  import {
10
10
  __export,
@@ -1,3 +1,3 @@
1
1
  import '@nx/devkit';
2
- export { _ as default, i as initGeneratorFn } from '../../../index-7riJfK5Q.mjs';
2
+ export { _ as default, i as initGeneratorFn } from '../../../index-C8HQYf7T.mjs';
3
3
  import 'zod';
@@ -1,3 +1,3 @@
1
1
  import '@nx/devkit';
2
- export { _ as default, i as initGeneratorFn } from '../../../index-7riJfK5Q.js';
2
+ export { _ as default, i as initGeneratorFn } from '../../../index-C8HQYf7T.js';
3
3
  import 'zod';
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkIHAOUZIDjs = require('../../../chunk-IHAOUZID.js');
4
+ var _chunkVXDOX27Tjs = require('../../../chunk-VXDOX27T.js');
5
5
  require('../../../chunk-3DQG66DJ.js');
6
6
  require('../../../chunk-WTMG7MTK.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkIHAOUZIDjs.generator_default; exports.initGeneratorFn = _chunkIHAOUZIDjs.initGeneratorFn;
10
+ exports.default = _chunkVXDOX27Tjs.generator_default; exports.initGeneratorFn = _chunkVXDOX27Tjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-QHXRKXW6.mjs";
4
+ } from "../../../chunk-MHQEVFHV.mjs";
5
5
  import "../../../chunk-TTG4YCRZ.mjs";
6
6
  import "../../../chunk-MC42JFGZ.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.9.36",
3
+ "version": "0.9.37",
4
4
  "type": "commonjs",
5
5
  "description": "Tools for managing Projen configuration automation within a Nx workspace.",
6
6
  "repository": {