@storm-software/projen 0.20.12 → 0.21.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,20 @@
2
2
 
3
3
  # Changelog for Storm Ops - Projen
4
4
 
5
+ ## [0.20.13](https://github.com/storm-software/storm-ops/releases/tag/projen%400.20.13) (2025-10-08)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update workspace package links
10
+ ([ad9d018ff](https://github.com/storm-software/storm-ops/commit/ad9d018ff))
11
+
12
+ ## [0.20.12](https://github.com/storm-software/storm-ops/releases/tag/projen%400.20.12) (2025-10-05)
13
+
14
+ ### Miscellaneous
15
+
16
+ - **monorepo:** Update workspace package links
17
+ ([5d087ae37](https://github.com/storm-software/storm-ops/commit/5d087ae37))
18
+
5
19
  ## [0.20.11](https://github.com/storm-software/storm-ops/releases/tag/projen%400.20.11) (2025-10-05)
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.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)
24
+ [![Version](https://img.shields.io/badge/version-0.20.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)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -40,6 +40,7 @@ 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
+
43
44
  ## Table of Contents
44
45
 
45
46
  - [Storm Projen Tools](#storm-projen-tools)
@@ -1,11 +1,11 @@
1
1
  import {
2
2
  correctPaths,
3
3
  joinPaths
4
- } from "./chunk-UYKARK2K.mjs";
4
+ } from "./chunk-RNZLXULX.mjs";
5
5
  import {
6
6
  __dirname,
7
7
  init_esm_shims
8
- } from "./chunk-LPZRVIAG.mjs";
8
+ } from "./chunk-LGYVWZIM.mjs";
9
9
 
10
10
  // src/generators/init/generator.ts
11
11
  init_esm_shims();
@@ -2983,14 +2983,28 @@ async function generatePackageJson(context) {
2983
2983
 
2984
2984
  // ../esbuild/src/tsup.ts
2985
2985
  init_esm_shims();
2986
+
2987
+ // ../tsup/src/index.ts
2988
+ init_esm_shims();
2986
2989
  import { build as tsup } from "tsup";
2990
+ async function build(options) {
2991
+ writeDebug(
2992
+ ` \u{1F680} Running ${options.name || "tsup"} build`,
2993
+ options.workspaceConfig
2994
+ );
2995
+ const stopwatch = getStopwatch(`${options.name || "tsup"} build`);
2996
+ await tsup(options);
2997
+ stopwatch();
2998
+ }
2999
+
3000
+ // ../esbuild/src/tsup.ts
2987
3001
  async function executeTsup(context) {
2988
3002
  writeDebug(
2989
3003
  ` \u{1F680} Running ${context.options.name} build`,
2990
3004
  context.workspaceConfig
2991
3005
  );
2992
3006
  const stopwatch = getStopwatch(`${context.options.name} build`);
2993
- await tsup({
3007
+ await build({
2994
3008
  ...context.options,
2995
3009
  outDir: context.options.distDir ? joinPaths(context.outputPath, context.options.distDir) : context.outputPath,
2996
3010
  workspaceConfig: context.workspaceConfig
@@ -3034,7 +3048,7 @@ async function cleanOutputPath(context) {
3034
3048
  }
3035
3049
  return context;
3036
3050
  }
3037
- async function build(options) {
3051
+ async function build2(options) {
3038
3052
  writeDebug(` \u26A1 Executing Storm ESBuild pipeline`);
3039
3053
  const stopwatch = getStopwatch("ESBuild pipeline");
3040
3054
  try {
@@ -3070,7 +3084,7 @@ async function esbuildExecutorFn(options, context, config5) {
3070
3084
  "The Build process failed because the context is not valid. Please run this command from a workspace."
3071
3085
  );
3072
3086
  }
3073
- await build({
3087
+ await build2({
3074
3088
  ...options,
3075
3089
  projectRoot: (
3076
3090
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
@@ -3520,7 +3534,7 @@ async function cleanOutputPath2(options) {
3520
3534
  }
3521
3535
  return options;
3522
3536
  }
3523
- async function build2(options) {
3537
+ async function build3(options) {
3524
3538
  writeDebug(` \u26A1 Executing Storm TSDown pipeline`);
3525
3539
  const stopwatch = getStopwatch("TSDown pipeline");
3526
3540
  try {
@@ -3565,7 +3579,7 @@ async function tsdownExecutorFn(options, context, config5) {
3565
3579
  "The Build process failed because the context is not valid. Please run this command from a workspace."
3566
3580
  );
3567
3581
  }
3568
- await build2({
3582
+ await build3({
3569
3583
  ...options,
3570
3584
  projectRoot: (
3571
3585
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  init_esm_shims
3
- } from "./chunk-LPZRVIAG.mjs";
3
+ } from "./chunk-LGYVWZIM.mjs";
4
4
 
5
5
  // generators.ts
6
6
  init_esm_shims();
@@ -1,12 +1,12 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk5W2STSVOjs = require('./chunk-5W2STSVO.js');
4
+ var _chunkHIYOMEE3js = require('./chunk-HIYOMEE3.js');
5
5
 
6
6
  // src/components/index.ts
7
- var require_components = _chunk5W2STSVOjs.__commonJS.call(void 0, {
7
+ var require_components = _chunkHIYOMEE3js.__commonJS.call(void 0, {
8
8
  "src/components/index.ts"() {
9
- _chunk5W2STSVOjs.init_cjs_shims.call(void 0, );
9
+ _chunkHIYOMEE3js.init_cjs_shims.call(void 0, );
10
10
  }
11
11
  });
12
12