@storm-software/projen 0.13.0 → 0.14.0

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,27 @@
2
2
 
3
3
  # Changelog for Storm Ops - Projen
4
4
 
5
+ ## [0.14.0](https://github.com/storm-software/storm-ops/releases/tag/projen%400.14.0) (2025-05-06)
6
+
7
+ ### Features
8
+
9
+ - **git-tools:** Update release version to use Nx package
10
+ ([f31c02dec](https://github.com/storm-software/storm-ops/commit/f31c02dec))
11
+
12
+ ### Miscellaneous
13
+
14
+ - **monorepo:** Regenerate README markdown files
15
+ ([32a1809d1](https://github.com/storm-software/storm-ops/commit/32a1809d1))
16
+
17
+ ## [0.13.1](https://github.com/storm-software/storm-ops/releases/tag/projen%400.13.1) (2025-05-06)
18
+
19
+ ### Miscellaneous
20
+
21
+ - **eslint:** Regenerate type definitions
22
+ ([aa082a323](https://github.com/storm-software/storm-ops/commit/aa082a323))
23
+ - **monorepo:** Regenerate README markdown files
24
+ ([ed5072712](https://github.com/storm-software/storm-ops/commit/ed5072712))
25
+
5
26
  ## [0.13.0](https://github.com/storm-software/storm-ops/releases/tag/projen%400.13.0) (2025-05-06)
6
27
 
7
28
  ### 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.12.2-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.14.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 -->
@@ -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)
@@ -1699,7 +1699,7 @@ function cargoMetadata() {
1699
1699
  }
1700
1700
  function runProcess(processCmd, ...args) {
1701
1701
  const metadata = cargoMetadata();
1702
- const targetDir = metadata?.target_directory ?? joinPathFragments(workspaceRoot, "dist", "cargo");
1702
+ const targetDir = metadata?.target_directory ?? joinPathFragments(workspaceRoot, "dist");
1703
1703
  return new Promise((resolve) => {
1704
1704
  if (process.env.VERCEL) {
1705
1705
  return resolve({ success: true });
@@ -1725,13 +1725,13 @@ async function cargoBuildExecutor(options, context) {
1725
1725
  return await cargoCommand(...command);
1726
1726
  }
1727
1727
  var executor_default = withRunExecutor(
1728
- "Cargo Build",
1728
+ "Cargo - Build",
1729
1729
  cargoBuildExecutor,
1730
1730
  {
1731
1731
  skipReadingConfig: false,
1732
1732
  hooks: {
1733
1733
  applyDefaultOptions: (options) => {
1734
- options.outputPath ??= "dist/target/{projectRoot}";
1734
+ options.outputPath ??= "dist/{projectRoot}/target";
1735
1735
  options.toolchain ??= "stable";
1736
1736
  return options;
1737
1737
  }
@@ -1746,7 +1746,7 @@ async function cargoCheckExecutor(options, context) {
1746
1746
  return await cargoCommand(...command);
1747
1747
  }
1748
1748
  var executor_default2 = withRunExecutor(
1749
- "Cargo Check",
1749
+ "Cargo - Check",
1750
1750
  cargoCheckExecutor,
1751
1751
  {
1752
1752
  skipReadingConfig: false,
@@ -1766,7 +1766,7 @@ async function cargoClippyExecutor(options, context) {
1766
1766
  return await cargoCommand(...command);
1767
1767
  }
1768
1768
  var executor_default3 = withRunExecutor(
1769
- "Cargo Clippy",
1769
+ "Cargo - Clippy",
1770
1770
  cargoClippyExecutor,
1771
1771
  {
1772
1772
  skipReadingConfig: false,
@@ -1790,13 +1790,13 @@ async function cargoDocExecutor(options, context) {
1790
1790
  return await cargoCommand(...command);
1791
1791
  }
1792
1792
  var executor_default4 = withRunExecutor(
1793
- "Cargo Doc",
1793
+ "Cargo - Doc",
1794
1794
  cargoDocExecutor,
1795
1795
  {
1796
1796
  skipReadingConfig: false,
1797
1797
  hooks: {
1798
1798
  applyDefaultOptions: (options) => {
1799
- options.outputPath ??= "dist/docs/{projectRoot}";
1799
+ options.outputPath ??= "dist/{projectRoot}/docs";
1800
1800
  options.toolchain ??= "stable";
1801
1801
  options.release ??= options.profile ? false : true;
1802
1802
  options.allFeatures ??= true;
@@ -1817,13 +1817,13 @@ async function cargoFormatExecutor(options, context) {
1817
1817
  return await cargoCommand(...command);
1818
1818
  }
1819
1819
  var executor_default5 = withRunExecutor(
1820
- "Cargo Format",
1820
+ "Cargo - Format",
1821
1821
  cargoFormatExecutor,
1822
1822
  {
1823
1823
  skipReadingConfig: false,
1824
1824
  hooks: {
1825
1825
  applyDefaultOptions: (options) => {
1826
- options.outputPath ??= "dist/target/{projectRoot}";
1826
+ options.outputPath ??= "dist/{projectRoot}/target";
1827
1827
  options.toolchain ??= "stable";
1828
1828
  return options;
1829
1829
  }
@@ -1698,7 +1698,7 @@ function cargoMetadata() {
1698
1698
  }
1699
1699
  function runProcess(processCmd, ...args) {
1700
1700
  const metadata = cargoMetadata();
1701
- const targetDir = _nullishCoalesce(_optionalChain([metadata, 'optionalAccess', _82 => _82.target_directory]), () => ( _devkit.joinPathFragments.call(void 0, _devkit.workspaceRoot, "dist", "cargo")));
1701
+ const targetDir = _nullishCoalesce(_optionalChain([metadata, 'optionalAccess', _82 => _82.target_directory]), () => ( _devkit.joinPathFragments.call(void 0, _devkit.workspaceRoot, "dist")));
1702
1702
  return new Promise((resolve) => {
1703
1703
  if (process.env.VERCEL) {
1704
1704
  return resolve({ success: true });
@@ -1724,13 +1724,13 @@ async function cargoBuildExecutor(options, context) {
1724
1724
  return await cargoCommand(...command);
1725
1725
  }
1726
1726
  var executor_default = withRunExecutor(
1727
- "Cargo Build",
1727
+ "Cargo - Build",
1728
1728
  cargoBuildExecutor,
1729
1729
  {
1730
1730
  skipReadingConfig: false,
1731
1731
  hooks: {
1732
1732
  applyDefaultOptions: (options) => {
1733
- options.outputPath ??= "dist/target/{projectRoot}";
1733
+ options.outputPath ??= "dist/{projectRoot}/target";
1734
1734
  options.toolchain ??= "stable";
1735
1735
  return options;
1736
1736
  }
@@ -1745,7 +1745,7 @@ async function cargoCheckExecutor(options, context) {
1745
1745
  return await cargoCommand(...command);
1746
1746
  }
1747
1747
  var executor_default2 = withRunExecutor(
1748
- "Cargo Check",
1748
+ "Cargo - Check",
1749
1749
  cargoCheckExecutor,
1750
1750
  {
1751
1751
  skipReadingConfig: false,
@@ -1765,7 +1765,7 @@ async function cargoClippyExecutor(options, context) {
1765
1765
  return await cargoCommand(...command);
1766
1766
  }
1767
1767
  var executor_default3 = withRunExecutor(
1768
- "Cargo Clippy",
1768
+ "Cargo - Clippy",
1769
1769
  cargoClippyExecutor,
1770
1770
  {
1771
1771
  skipReadingConfig: false,
@@ -1789,13 +1789,13 @@ async function cargoDocExecutor(options, context) {
1789
1789
  return await cargoCommand(...command);
1790
1790
  }
1791
1791
  var executor_default4 = withRunExecutor(
1792
- "Cargo Doc",
1792
+ "Cargo - Doc",
1793
1793
  cargoDocExecutor,
1794
1794
  {
1795
1795
  skipReadingConfig: false,
1796
1796
  hooks: {
1797
1797
  applyDefaultOptions: (options) => {
1798
- options.outputPath ??= "dist/docs/{projectRoot}";
1798
+ options.outputPath ??= "dist/{projectRoot}/docs";
1799
1799
  options.toolchain ??= "stable";
1800
1800
  options.release ??= options.profile ? false : true;
1801
1801
  options.allFeatures ??= true;
@@ -1816,13 +1816,13 @@ async function cargoFormatExecutor(options, context) {
1816
1816
  return await cargoCommand(...command);
1817
1817
  }
1818
1818
  var executor_default5 = withRunExecutor(
1819
- "Cargo Format",
1819
+ "Cargo - Format",
1820
1820
  cargoFormatExecutor,
1821
1821
  {
1822
1822
  skipReadingConfig: false,
1823
1823
  hooks: {
1824
1824
  applyDefaultOptions: (options) => {
1825
- options.outputPath ??= "dist/target/{projectRoot}";
1825
+ options.outputPath ??= "dist/{projectRoot}/target";
1826
1826
  options.toolchain ??= "stable";
1827
1827
  return options;
1828
1828
  }
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-NG74QN4S.js');
2
2
 
3
3
 
4
- var _chunkEJF5PU5Gjs = require('./chunk-EJF5PU5G.js');
4
+ var _chunkSHNSKHTAjs = require('./chunk-SHNSKHTA.js');
5
5
  require('./chunk-NNSWWAGP.js');
6
6
  require('./chunk-BG73ZJER.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkEJF5PU5Gjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkSHNSKHTAjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-ZVRRJOP5.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-PH65VVUZ.mjs";
4
+ } from "./chunk-BBXHTXNG.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 _chunkEJF5PU5Gjs = require('./chunk-EJF5PU5G.js');
7
+ var _chunkSHNSKHTAjs = require('./chunk-SHNSKHTA.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: () => _chunkEJF5PU5Gjs.initGeneratorFn
19
+ initGeneratorFn: () => _chunkSHNSKHTAjs.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 = _chunkEJF5PU5Gjs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkSHNSKHTAjs.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-PH65VVUZ.mjs";
7
+ } from "./chunk-BBXHTXNG.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 _chunkEJF5PU5Gjs = require('../../../chunk-EJF5PU5G.js');
4
+ var _chunkSHNSKHTAjs = require('../../../chunk-SHNSKHTA.js');
5
5
  require('../../../chunk-NNSWWAGP.js');
6
6
  require('../../../chunk-BG73ZJER.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkEJF5PU5Gjs.generator_default; exports.initGeneratorFn = _chunkEJF5PU5Gjs.initGeneratorFn;
10
+ exports.default = _chunkSHNSKHTAjs.generator_default; exports.initGeneratorFn = _chunkSHNSKHTAjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-PH65VVUZ.mjs";
4
+ } from "../../../chunk-BBXHTXNG.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.13.0",
3
+ "version": "0.14.0",
4
4
  "type": "commonjs",
5
5
  "description": "Tools for managing Projen configuration automation within a Nx workspace.",
6
6
  "repository": {
@@ -114,7 +114,7 @@
114
114
  "sullivanpj"
115
115
  ],
116
116
  "peerDependencies": {
117
- "@nx/devkit": "20.8.0",
117
+ "@nx/devkit": "21.0.0",
118
118
  "@storm-software/config": "1.113.5",
119
119
  "@storm-software/config-tools": "1.163.5",
120
120
  "@storm-software/workspace-tools": "1.267.0",
@@ -129,13 +129,13 @@
129
129
  },
130
130
  "dependencies": {
131
131
  "@aws/pdk": "^0.25.17",
132
- "@nx/devkit": "20.8.0",
132
+ "@nx/devkit": "21.0.0",
133
133
  "projen": "0.91.20"
134
134
  },
135
135
  "devDependencies": {
136
- "@nx/devkit": "20.8.0",
136
+ "@nx/devkit": "21.0.0",
137
137
  "@types/node": "^22.10.2",
138
- "nx": "20.8.0",
138
+ "nx": "21.0.0",
139
139
  "tsup": "8.4.0",
140
140
  "untyped": "^1.5.2"
141
141
  },