@storm-software/projen 0.17.13 → 0.17.15

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,20 @@
2
2
 
3
3
  # Changelog for Storm Ops - Projen
4
4
 
5
+ ## [0.17.14](https://github.com/storm-software/storm-ops/releases/tag/projen%400.17.14) (2025-09-06)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update workspace package links
10
+ ([0ecd5b833](https://github.com/storm-software/storm-ops/commit/0ecd5b833))
11
+
12
+ ## [0.17.13](https://github.com/storm-software/storm-ops/releases/tag/projen%400.17.13) (2025-09-06)
13
+
14
+ ### Miscellaneous
15
+
16
+ - **monorepo:** Update README markdown files
17
+ ([b641c33df](https://github.com/storm-software/storm-ops/commit/b641c33df))
18
+
5
19
  ## [0.17.12](https://github.com/storm-software/storm-ops/releases/tag/projen%400.17.12) (2025-08-28)
6
20
 
7
21
  ### 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.17.12-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.17.14-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 -->
@@ -858,6 +858,13 @@ var workspaceDirectorySchema = z.object({
858
858
  schemaRegistry.add(workspaceDirectorySchema, {
859
859
  description: "Various directories used by the workspace to store data, cache, and configuration files"
860
860
  });
861
+ var variantSchema = z._default(
862
+ z.enum(["minimal", "monorepo"]),
863
+ "monorepo"
864
+ );
865
+ schemaRegistry.add(variantSchema, {
866
+ description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
867
+ });
861
868
  var errorCodesFileSchema = z._default(
862
869
  z.string().check(z.trim()),
863
870
  STORM_DEFAULT_ERROR_CODES_FILE
@@ -1055,6 +1062,7 @@ var workspaceConfigSchema = z.object({
1055
1062
  $schema: schemaNameSchema,
1056
1063
  extends: extendsSchema,
1057
1064
  name: nameSchema,
1065
+ variant: variantSchema,
1058
1066
  namespace: namespaceSchema,
1059
1067
  organization: orgSchema,
1060
1068
  repository: repositorySchema,
@@ -1296,6 +1304,7 @@ var getConfigEnv = () => {
1296
1304
  let config = {
1297
1305
  extends: process.env[`${prefix}EXTENDS`] || void 0,
1298
1306
  name: process.env[`${prefix}NAME`] || void 0,
1307
+ variant: process.env[`${prefix}VARIANT`] || void 0,
1299
1308
  namespace: process.env[`${prefix}NAMESPACE`] || void 0,
1300
1309
  owner: process.env[`${prefix}OWNER`] || void 0,
1301
1310
  bot: {
@@ -1521,6 +1530,9 @@ var setConfigEnv = (config) => {
1521
1530
  if (config.name) {
1522
1531
  process.env[`${prefix}NAME`] = config.name;
1523
1532
  }
1533
+ if (config.variant) {
1534
+ process.env[`${prefix}VARIANT`] = config.variant;
1535
+ }
1524
1536
  if (config.namespace) {
1525
1537
  process.env[`${prefix}NAMESPACE`] = config.namespace;
1526
1538
  }
@@ -3034,7 +3046,10 @@ async function esbuildExecutorFn(options, context, config) {
3034
3046
  }
3035
3047
  await build({
3036
3048
  ...options,
3037
- projectRoot: context.projectsConfigurations.projects?.[context.projectName].root,
3049
+ projectRoot: (
3050
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
3051
+ context.projectsConfigurations.projects?.[context.projectName].root
3052
+ ),
3038
3053
  name: context.projectName,
3039
3054
  sourceRoot: context.projectsConfigurations.projects?.[context.projectName]?.sourceRoot,
3040
3055
  format: options.format,
@@ -3050,7 +3065,7 @@ var executor_default6 = withRunExecutor(
3050
3065
  {
3051
3066
  skipReadingConfig: false,
3052
3067
  hooks: {
3053
- applyDefaultOptions: async (options, config) => {
3068
+ applyDefaultOptions: async (options) => {
3054
3069
  options.entry ??= ["src/index.ts"];
3055
3070
  options.outputPath ??= "dist/{projectRoot}";
3056
3071
  options.tsconfig ??= "{projectRoot}/tsconfig.json";
@@ -4280,7 +4295,7 @@ import { updateLockFile } from "@nx/js/src/release/utils/update-lock-file";
4280
4295
  // ../git-tools/src/index.ts
4281
4296
  init_esm_shims();
4282
4297
 
4283
- // ../git-tools/src/commit/config.ts
4298
+ // ../git-tools/src/commit/config/monorepo.ts
4284
4299
  init_esm_shims();
4285
4300
 
4286
4301
  // ../git-tools/src/types.ts
@@ -4414,7 +4429,7 @@ var COMMIT_TYPES = {
4414
4429
  }
4415
4430
  }
4416
4431
  };
4417
- var DEFAULT_COMMIT_QUESTIONS = {
4432
+ var DEFAULT_MINIMAL_COMMIT_QUESTIONS = {
4418
4433
  type: {
4419
4434
  type: "select",
4420
4435
  title: "Commit Type",
@@ -4429,15 +4444,6 @@ var DEFAULT_COMMIT_QUESTIONS = {
4429
4444
  maxLength: 20,
4430
4445
  minLength: 3
4431
4446
  },
4432
- scope: {
4433
- type: "select",
4434
- title: "Commit Scope",
4435
- description: "Select the monorepo project that is primarily impacted by this change",
4436
- enum: {},
4437
- defaultValue: "monorepo",
4438
- maxLength: 50,
4439
- minLength: 1
4440
- },
4441
4447
  subject: {
4442
4448
  type: "input",
4443
4449
  title: "Commit Subject",
@@ -4480,6 +4486,72 @@ var DEFAULT_COMMIT_QUESTIONS = {
4480
4486
  minLength: 3
4481
4487
  }
4482
4488
  };
4489
+ var DEFAULT_MONOREPO_COMMIT_QUESTIONS = {
4490
+ type: DEFAULT_MINIMAL_COMMIT_QUESTIONS.type,
4491
+ scope: {
4492
+ type: "select",
4493
+ title: "Commit Scope",
4494
+ description: "Select the project that's the most impacted by this change",
4495
+ enum: {},
4496
+ defaultValue: "monorepo",
4497
+ maxLength: 50,
4498
+ minLength: 1
4499
+ },
4500
+ subject: DEFAULT_MINIMAL_COMMIT_QUESTIONS.subject,
4501
+ body: DEFAULT_MINIMAL_COMMIT_QUESTIONS.body,
4502
+ isBreaking: DEFAULT_MINIMAL_COMMIT_QUESTIONS.isBreaking,
4503
+ breakingBody: DEFAULT_MINIMAL_COMMIT_QUESTIONS.breakingBody,
4504
+ isIssueAffected: DEFAULT_MINIMAL_COMMIT_QUESTIONS.isIssueAffected,
4505
+ issuesBody: DEFAULT_MINIMAL_COMMIT_QUESTIONS.issuesBody
4506
+ };
4507
+ var DEFAULT_MINIMAL_COMMIT_RULES = {
4508
+ "body-leading-blank": [1 /* Warning */, "always"],
4509
+ "body-max-length": [2 /* Error */, "always", 600],
4510
+ "footer-leading-blank": [1 /* Warning */, "always"],
4511
+ "footer-max-line-length": [2 /* Error */, "always", 150],
4512
+ "header-max-length": [2 /* Error */, "always", 150],
4513
+ "header-trim": [2 /* Error */, "always"],
4514
+ "subject-case": [2 /* Error */, "always", ["sentence-case"]],
4515
+ "subject-empty": [2 /* Error */, "never"],
4516
+ "subject-full-stop": [2 /* Error */, "never", "."],
4517
+ "subject-max-length": [2 /* Error */, "always", 150],
4518
+ "subject-min-length": [2 /* Error */, "always", 3],
4519
+ "type-case": [2 /* Error */, "always", "kebab-case"],
4520
+ "type-empty": [2 /* Error */, "never"],
4521
+ "type-enum": [
4522
+ 2 /* Error */,
4523
+ "always",
4524
+ Object.keys(COMMIT_TYPES)
4525
+ ],
4526
+ "type-max-length": [2 /* Error */, "always", 20],
4527
+ "type-min-length": [2 /* Error */, "always", 3],
4528
+ "scope-case": 0 /* Disabled */,
4529
+ "scope-empty": 0 /* Disabled */
4530
+ };
4531
+ var DEFAULT_MONOREPO_COMMIT_RULES = {
4532
+ "body-leading-blank": [1 /* Warning */, "always"],
4533
+ "body-max-length": [2 /* Error */, "always", 600],
4534
+ "footer-leading-blank": [1 /* Warning */, "always"],
4535
+ "footer-max-line-length": [2 /* Error */, "always", 150],
4536
+ "header-max-length": [2 /* Error */, "always", 150],
4537
+ "header-trim": [2 /* Error */, "always"],
4538
+ "subject-case": [2 /* Error */, "always", ["sentence-case"]],
4539
+ "subject-empty": [2 /* Error */, "never"],
4540
+ "subject-full-stop": [2 /* Error */, "never", "."],
4541
+ "subject-max-length": [2 /* Error */, "always", 150],
4542
+ "subject-min-length": [2 /* Error */, "always", 3],
4543
+ "type-case": [2 /* Error */, "always", "kebab-case"],
4544
+ "type-empty": [2 /* Error */, "never"],
4545
+ "type-enum": [
4546
+ 2 /* Error */,
4547
+ "always",
4548
+ Object.keys(COMMIT_TYPES)
4549
+ ],
4550
+ "type-max-length": [2 /* Error */, "always", 20],
4551
+ "type-min-length": [2 /* Error */, "always", 3],
4552
+ "scope-case": [2 /* Error */, "always", ["kebab-case"]],
4553
+ "scope-empty": [2 /* Error */, "never"]
4554
+ };
4483
4555
 
4484
4556
  // ../git-tools/src/release/config.ts
4485
4557
  init_esm_shims();
@@ -857,6 +857,13 @@ var workspaceDirectorySchema = z.object({
857
857
  schemaRegistry.add(workspaceDirectorySchema, {
858
858
  description: "Various directories used by the workspace to store data, cache, and configuration files"
859
859
  });
860
+ var variantSchema = z._default(
861
+ z.enum(["minimal", "monorepo"]),
862
+ "monorepo"
863
+ );
864
+ schemaRegistry.add(variantSchema, {
865
+ description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
866
+ });
860
867
  var errorCodesFileSchema = z._default(
861
868
  z.string().check(z.trim()),
862
869
  STORM_DEFAULT_ERROR_CODES_FILE
@@ -1054,6 +1061,7 @@ var workspaceConfigSchema = z.object({
1054
1061
  $schema: schemaNameSchema,
1055
1062
  extends: extendsSchema,
1056
1063
  name: nameSchema,
1064
+ variant: variantSchema,
1057
1065
  namespace: namespaceSchema,
1058
1066
  organization: orgSchema,
1059
1067
  repository: repositorySchema,
@@ -1295,6 +1303,7 @@ var getConfigEnv = () => {
1295
1303
  let config = {
1296
1304
  extends: process.env[`${prefix}EXTENDS`] || void 0,
1297
1305
  name: process.env[`${prefix}NAME`] || void 0,
1306
+ variant: process.env[`${prefix}VARIANT`] || void 0,
1298
1307
  namespace: process.env[`${prefix}NAMESPACE`] || void 0,
1299
1308
  owner: process.env[`${prefix}OWNER`] || void 0,
1300
1309
  bot: {
@@ -1520,6 +1529,9 @@ var setConfigEnv = (config) => {
1520
1529
  if (config.name) {
1521
1530
  process.env[`${prefix}NAME`] = config.name;
1522
1531
  }
1532
+ if (config.variant) {
1533
+ process.env[`${prefix}VARIANT`] = config.variant;
1534
+ }
1523
1535
  if (config.namespace) {
1524
1536
  process.env[`${prefix}NAMESPACE`] = config.namespace;
1525
1537
  }
@@ -3033,7 +3045,10 @@ async function esbuildExecutorFn(options, context, config) {
3033
3045
  }
3034
3046
  await build({
3035
3047
  ...options,
3036
- projectRoot: _optionalChain([context, 'access', _134 => _134.projectsConfigurations, 'access', _135 => _135.projects, 'optionalAccess', _136 => _136[context.projectName], 'access', _137 => _137.root]),
3048
+ projectRoot: (
3049
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
3050
+ _optionalChain([context, 'access', _134 => _134.projectsConfigurations, 'access', _135 => _135.projects, 'optionalAccess', _136 => _136[context.projectName], 'access', _137 => _137.root])
3051
+ ),
3037
3052
  name: context.projectName,
3038
3053
  sourceRoot: _optionalChain([context, 'access', _138 => _138.projectsConfigurations, 'access', _139 => _139.projects, 'optionalAccess', _140 => _140[context.projectName], 'optionalAccess', _141 => _141.sourceRoot]),
3039
3054
  format: options.format,
@@ -3049,7 +3064,7 @@ var executor_default6 = withRunExecutor(
3049
3064
  {
3050
3065
  skipReadingConfig: false,
3051
3066
  hooks: {
3052
- applyDefaultOptions: async (options, config) => {
3067
+ applyDefaultOptions: async (options) => {
3053
3068
  options.entry ??= ["src/index.ts"];
3054
3069
  options.outputPath ??= "dist/{projectRoot}";
3055
3070
  options.tsconfig ??= "{projectRoot}/tsconfig.json";
@@ -4279,7 +4294,7 @@ var _updatelockfile = require('@nx/js/src/release/utils/update-lock-file');
4279
4294
  // ../git-tools/src/index.ts
4280
4295
  _chunk37J2KEVTjs.init_cjs_shims.call(void 0, );
4281
4296
 
4282
- // ../git-tools/src/commit/config.ts
4297
+ // ../git-tools/src/commit/config/monorepo.ts
4283
4298
  _chunk37J2KEVTjs.init_cjs_shims.call(void 0, );
4284
4299
 
4285
4300
  // ../git-tools/src/types.ts
@@ -4413,7 +4428,7 @@ var COMMIT_TYPES = {
4413
4428
  }
4414
4429
  }
4415
4430
  };
4416
- var DEFAULT_COMMIT_QUESTIONS = {
4431
+ var DEFAULT_MINIMAL_COMMIT_QUESTIONS = {
4417
4432
  type: {
4418
4433
  type: "select",
4419
4434
  title: "Commit Type",
@@ -4428,15 +4443,6 @@ var DEFAULT_COMMIT_QUESTIONS = {
4428
4443
  maxLength: 20,
4429
4444
  minLength: 3
4430
4445
  },
4431
- scope: {
4432
- type: "select",
4433
- title: "Commit Scope",
4434
- description: "Select the monorepo project that is primarily impacted by this change",
4435
- enum: {},
4436
- defaultValue: "monorepo",
4437
- maxLength: 50,
4438
- minLength: 1
4439
- },
4440
4446
  subject: {
4441
4447
  type: "input",
4442
4448
  title: "Commit Subject",
@@ -4479,6 +4485,72 @@ var DEFAULT_COMMIT_QUESTIONS = {
4479
4485
  minLength: 3
4480
4486
  }
4481
4487
  };
4488
+ var DEFAULT_MONOREPO_COMMIT_QUESTIONS = {
4489
+ type: DEFAULT_MINIMAL_COMMIT_QUESTIONS.type,
4490
+ scope: {
4491
+ type: "select",
4492
+ title: "Commit Scope",
4493
+ description: "Select the project that's the most impacted by this change",
4494
+ enum: {},
4495
+ defaultValue: "monorepo",
4496
+ maxLength: 50,
4497
+ minLength: 1
4498
+ },
4499
+ subject: DEFAULT_MINIMAL_COMMIT_QUESTIONS.subject,
4500
+ body: DEFAULT_MINIMAL_COMMIT_QUESTIONS.body,
4501
+ isBreaking: DEFAULT_MINIMAL_COMMIT_QUESTIONS.isBreaking,
4502
+ breakingBody: DEFAULT_MINIMAL_COMMIT_QUESTIONS.breakingBody,
4503
+ isIssueAffected: DEFAULT_MINIMAL_COMMIT_QUESTIONS.isIssueAffected,
4504
+ issuesBody: DEFAULT_MINIMAL_COMMIT_QUESTIONS.issuesBody
4505
+ };
4506
+ var DEFAULT_MINIMAL_COMMIT_RULES = {
4507
+ "body-leading-blank": [1 /* Warning */, "always"],
4508
+ "body-max-length": [2 /* Error */, "always", 600],
4509
+ "footer-leading-blank": [1 /* Warning */, "always"],
4510
+ "footer-max-line-length": [2 /* Error */, "always", 150],
4511
+ "header-max-length": [2 /* Error */, "always", 150],
4512
+ "header-trim": [2 /* Error */, "always"],
4513
+ "subject-case": [2 /* Error */, "always", ["sentence-case"]],
4514
+ "subject-empty": [2 /* Error */, "never"],
4515
+ "subject-full-stop": [2 /* Error */, "never", "."],
4516
+ "subject-max-length": [2 /* Error */, "always", 150],
4517
+ "subject-min-length": [2 /* Error */, "always", 3],
4518
+ "type-case": [2 /* Error */, "always", "kebab-case"],
4519
+ "type-empty": [2 /* Error */, "never"],
4520
+ "type-enum": [
4521
+ 2 /* Error */,
4522
+ "always",
4523
+ Object.keys(COMMIT_TYPES)
4524
+ ],
4525
+ "type-max-length": [2 /* Error */, "always", 20],
4526
+ "type-min-length": [2 /* Error */, "always", 3],
4527
+ "scope-case": 0 /* Disabled */,
4528
+ "scope-empty": 0 /* Disabled */
4529
+ };
4530
+ var DEFAULT_MONOREPO_COMMIT_RULES = {
4531
+ "body-leading-blank": [1 /* Warning */, "always"],
4532
+ "body-max-length": [2 /* Error */, "always", 600],
4533
+ "footer-leading-blank": [1 /* Warning */, "always"],
4534
+ "footer-max-line-length": [2 /* Error */, "always", 150],
4535
+ "header-max-length": [2 /* Error */, "always", 150],
4536
+ "header-trim": [2 /* Error */, "always"],
4537
+ "subject-case": [2 /* Error */, "always", ["sentence-case"]],
4538
+ "subject-empty": [2 /* Error */, "never"],
4539
+ "subject-full-stop": [2 /* Error */, "never", "."],
4540
+ "subject-max-length": [2 /* Error */, "always", 150],
4541
+ "subject-min-length": [2 /* Error */, "always", 3],
4542
+ "type-case": [2 /* Error */, "always", "kebab-case"],
4543
+ "type-empty": [2 /* Error */, "never"],
4544
+ "type-enum": [
4545
+ 2 /* Error */,
4546
+ "always",
4547
+ Object.keys(COMMIT_TYPES)
4548
+ ],
4549
+ "type-max-length": [2 /* Error */, "always", 20],
4550
+ "type-min-length": [2 /* Error */, "always", 3],
4551
+ "scope-case": [2 /* Error */, "always", ["kebab-case"]],
4552
+ "scope-empty": [2 /* Error */, "never"]
4553
+ };
4482
4554
 
4483
4555
  // ../git-tools/src/release/config.ts
4484
4556
  _chunk37J2KEVTjs.init_cjs_shims.call(void 0, );
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-2WCHH6IV.js');
2
2
 
3
3
 
4
- var _chunk226ONKXCjs = require('./chunk-226ONKXC.js');
4
+ var _chunkMFFHXIY7js = require('./chunk-MFFHXIY7.js');
5
5
  require('./chunk-2TBSZDNW.js');
6
6
  require('./chunk-37J2KEVT.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunk226ONKXCjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkMFFHXIY7js.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-GS4GNLWW.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-55XBRCWI.mjs";
4
+ } from "./chunk-3VBXMGLZ.mjs";
5
5
  import "./chunk-WSEZ5CQM.mjs";
6
6
  import "./chunk-LZQQ3L4A.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkD5CEJTO6js = require('./chunk-D5CEJTO6.js');
5
5
 
6
6
 
7
- var _chunk226ONKXCjs = require('./chunk-226ONKXC.js');
7
+ var _chunkMFFHXIY7js = require('./chunk-MFFHXIY7.js');
8
8
  require('./chunk-2TBSZDNW.js');
9
9
 
10
10
 
@@ -16,10 +16,10 @@ var _chunk37J2KEVTjs = require('./chunk-37J2KEVT.js');
16
16
  // index.ts
17
17
  var index_exports = {};
18
18
  _chunk37J2KEVTjs.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunk226ONKXCjs.initGeneratorFn
19
+ initGeneratorFn: () => _chunkMFFHXIY7js.initGeneratorFn
20
20
  });
21
21
  _chunk37J2KEVTjs.init_cjs_shims.call(void 0, );
22
22
  _chunk37J2KEVTjs.__reExport.call(void 0, index_exports, _chunk37J2KEVTjs.__toESM.call(void 0, _chunkD5CEJTO6js.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunk226ONKXCjs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkMFFHXIY7js.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-T5B2K4HP.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-55XBRCWI.mjs";
7
+ } from "./chunk-3VBXMGLZ.mjs";
8
8
  import "./chunk-WSEZ5CQM.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 _chunk226ONKXCjs = require('../../../chunk-226ONKXC.js');
4
+ var _chunkMFFHXIY7js = require('../../../chunk-MFFHXIY7.js');
5
5
  require('../../../chunk-2TBSZDNW.js');
6
6
  require('../../../chunk-37J2KEVT.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunk226ONKXCjs.generator_default; exports.initGeneratorFn = _chunk226ONKXCjs.initGeneratorFn;
10
+ exports.default = _chunkMFFHXIY7js.generator_default; exports.initGeneratorFn = _chunkMFFHXIY7js.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-55XBRCWI.mjs";
4
+ } from "../../../chunk-3VBXMGLZ.mjs";
5
5
  import "../../../chunk-WSEZ5CQM.mjs";
6
6
  import "../../../chunk-LZQQ3L4A.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.17.13",
3
+ "version": "0.17.15",
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": "ead820214c8c4cf25d5311c154819f2c2f8f7356"
145
+ "gitHead": "77515798dbca4de4833086fb6135a0d062e5da45"
146
146
  }