@storm-software/projen 0.12.0 → 0.12.2

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,30 @@
2
2
 
3
3
  # Changelog for Storm Ops - Projen
4
4
 
5
+ ## [0.12.2](https://github.com/storm-software/storm-ops/releases/tag/projen%400.12.2) (2025-05-06)
6
+
7
+ ### Bug Fixes
8
+
9
+ - **workspace-tools:** Resolve issue with import path in executor
10
+ ([ddad2fdc8](https://github.com/storm-software/storm-ops/commit/ddad2fdc8))
11
+
12
+ ### Miscellaneous
13
+
14
+ - **monorepo:** Regenerate README markdown files
15
+ ([7e0751c3d](https://github.com/storm-software/storm-ops/commit/7e0751c3d))
16
+
17
+ ## [0.12.1](https://github.com/storm-software/storm-ops/releases/tag/projen%400.12.1) (2025-05-06)
18
+
19
+ ### Bug Fixes
20
+
21
+ - **workspace-tools:** Resolve issue with missing dependencies
22
+ ([e4fcafde0](https://github.com/storm-software/storm-ops/commit/e4fcafde0))
23
+
24
+ ### Miscellaneous
25
+
26
+ - **monorepo:** Regenerate README markdown files
27
+ ([6eabb3ff1](https://github.com/storm-software/storm-ops/commit/6eabb3ff1))
28
+
5
29
  ## [0.12.0](https://github.com/storm-software/storm-ops/releases/tag/projen%400.12.0) (2025-05-06)
6
30
 
7
31
  ### Features
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.11.1-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.12.0-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 -->
@@ -2695,12 +2695,11 @@ import {
2695
2695
  detectPackageManager,
2696
2696
  readJsonFile
2697
2697
  } from "@nx/devkit";
2698
- import { exec } from "child_process";
2699
- import * as columnify from "columnify";
2700
- import { existsSync as existsSync8 } from "fs";
2701
- import { execSync as execSync3 } from "node:child_process";
2698
+ import columnify from "columnify";
2699
+ import { exec, execSync as execSync3 } from "node:child_process";
2700
+ import { existsSync as existsSync8 } from "node:fs";
2701
+ import { relative as relative3 } from "node:path";
2702
2702
  import { env as appendLocalEnv } from "npm-run-path";
2703
- import { join as join3, relative as relative3 } from "path";
2704
2703
 
2705
2704
  // ../workspace-tools/src/utils/pnpm-deps-update.ts
2706
2705
  init_esm_shims();
@@ -4512,7 +4511,7 @@ import {
4512
4511
  workspaceRoot as workspaceRoot2
4513
4512
  } from "@nx/devkit";
4514
4513
  import { existsSync as existsSync9 } from "node:fs";
4515
- import { join as join5 } from "node:path";
4514
+ import { join as join4 } from "node:path";
4516
4515
  import {
4517
4516
  getNpmLockfileDependencies,
4518
4517
  getNpmLockfileNodes
@@ -4528,9 +4527,9 @@ import {
4528
4527
  var YARN_LOCK_FILE = "yarn.lock";
4529
4528
  var NPM_LOCK_FILE = "package-lock.json";
4530
4529
  var PNPM_LOCK_FILE = "pnpm-lock.yaml";
4531
- var YARN_LOCK_PATH = join5(workspaceRoot2, YARN_LOCK_FILE);
4532
- var NPM_LOCK_PATH = join5(workspaceRoot2, NPM_LOCK_FILE);
4533
- var PNPM_LOCK_PATH = join5(workspaceRoot2, PNPM_LOCK_FILE);
4530
+ var YARN_LOCK_PATH = join4(workspaceRoot2, YARN_LOCK_FILE);
4531
+ var NPM_LOCK_PATH = join4(workspaceRoot2, NPM_LOCK_FILE);
4532
+ var PNPM_LOCK_PATH = join4(workspaceRoot2, PNPM_LOCK_FILE);
4534
4533
 
4535
4534
  // ../workspace-tools/src/utils/package-helpers.ts
4536
4535
  init_esm_shims();
@@ -4545,7 +4544,7 @@ init_esm_shims();
4545
4544
  import { readJsonFile as readJsonFile4 } from "@nx/devkit";
4546
4545
  import defu6 from "defu";
4547
4546
  import { existsSync as existsSync11 } from "node:fs";
4548
- import { dirname, join as join6 } from "node:path";
4547
+ import { dirname, join as join5 } from "node:path";
4549
4548
 
4550
4549
  // ../workspace-tools/src/utils/typia-transform.ts
4551
4550
  init_esm_shims();
@@ -2694,13 +2694,12 @@ _chunkBG73ZJERjs.init_cjs_shims.call(void 0, );
2694
2694
 
2695
2695
 
2696
2696
 
2697
+ var _columnify = require('columnify'); var _columnify2 = _interopRequireDefault(_columnify);
2697
2698
 
2698
- var _columnify = require('columnify'); var columnify = _interopRequireWildcard(_columnify);
2699
2699
 
2700
2700
 
2701
2701
  var _npmrunpath = require('npm-run-path');
2702
2702
 
2703
-
2704
2703
  // ../workspace-tools/src/utils/pnpm-deps-update.ts
2705
2704
  _chunkBG73ZJERjs.init_cjs_shims.call(void 0, );
2706
2705
 
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-NG74QN4S.js');
2
2
 
3
3
 
4
- var _chunkXXUM5XR7js = require('./chunk-XXUM5XR7.js');
4
+ var _chunkTDEJ37AFjs = require('./chunk-TDEJ37AF.js');
5
5
  require('./chunk-NNSWWAGP.js');
6
6
  require('./chunk-BG73ZJER.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkXXUM5XR7js.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkTDEJ37AFjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-ZVRRJOP5.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-QEFNN2AM.mjs";
4
+ } from "./chunk-H3Y52P6T.mjs";
5
5
  import "./chunk-PEM26WKS.mjs";
6
6
  import "./chunk-SHIGQSVE.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkDUNMCAJEjs = require('./chunk-DUNMCAJE.js');
5
5
 
6
6
 
7
- var _chunkXXUM5XR7js = require('./chunk-XXUM5XR7.js');
7
+ var _chunkTDEJ37AFjs = require('./chunk-TDEJ37AF.js');
8
8
  require('./chunk-NNSWWAGP.js');
9
9
 
10
10
 
@@ -16,10 +16,10 @@ var _chunkBG73ZJERjs = require('./chunk-BG73ZJER.js');
16
16
  // index.ts
17
17
  var index_exports = {};
18
18
  _chunkBG73ZJERjs.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunkXXUM5XR7js.initGeneratorFn
19
+ initGeneratorFn: () => _chunkTDEJ37AFjs.initGeneratorFn
20
20
  });
21
21
  _chunkBG73ZJERjs.init_cjs_shims.call(void 0, );
22
22
  _chunkBG73ZJERjs.__reExport.call(void 0, index_exports, _chunkBG73ZJERjs.__toESM.call(void 0, _chunkDUNMCAJEjs.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunkXXUM5XR7js.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkTDEJ37AFjs.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-NVTKHBEW.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-QEFNN2AM.mjs";
7
+ } from "./chunk-H3Y52P6T.mjs";
8
8
  import "./chunk-PEM26WKS.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 _chunkXXUM5XR7js = require('../../../chunk-XXUM5XR7.js');
4
+ var _chunkTDEJ37AFjs = require('../../../chunk-TDEJ37AF.js');
5
5
  require('../../../chunk-NNSWWAGP.js');
6
6
  require('../../../chunk-BG73ZJER.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkXXUM5XR7js.generator_default; exports.initGeneratorFn = _chunkXXUM5XR7js.initGeneratorFn;
10
+ exports.default = _chunkTDEJ37AFjs.generator_default; exports.initGeneratorFn = _chunkTDEJ37AFjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-QEFNN2AM.mjs";
4
+ } from "../../../chunk-H3Y52P6T.mjs";
5
5
  import "../../../chunk-PEM26WKS.mjs";
6
6
  import "../../../chunk-SHIGQSVE.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.12.0",
3
+ "version": "0.12.2",
4
4
  "type": "commonjs",
5
5
  "description": "Tools for managing Projen configuration automation within a Nx workspace.",
6
6
  "repository": {