@storm-software/projen 0.9.74 → 0.9.76

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.9.76](https://github.com/storm-software/storm-ops/releases/tag/projen%400.9.76) (2025-04-30)
6
+
7
+ ### Bug Fixes
8
+
9
+ - **esbuild:** Resolve issue finding parent tsconfig path
10
+ ([d0276f4cd](https://github.com/storm-software/storm-ops/commit/d0276f4cd))
11
+
12
+ ### Miscellaneous
13
+
14
+ - **monorepo:** Regenerate README markdown files
15
+ ([746468efe](https://github.com/storm-software/storm-ops/commit/746468efe))
16
+
17
+ ## [0.9.75](https://github.com/storm-software/storm-ops/releases/tag/projen%400.9.75) (2025-04-30)
18
+
19
+ ### Bug Fixes
20
+
21
+ - **monorepo:** Resolve issue with tsconfig path in tsup
22
+ ([98ca0489a](https://github.com/storm-software/storm-ops/commit/98ca0489a))
23
+
24
+ ### Miscellaneous
25
+
26
+ - **monorepo:** Regenerate README markdown files
27
+ ([34e5b9e9f](https://github.com/storm-software/storm-ops/commit/34e5b9e9f))
28
+
5
29
  ## [0.9.74](https://github.com/storm-software/storm-ops/releases/tag/projen%400.9.74) (2025-04-30)
6
30
 
7
31
  ### Bug Fixes
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.73-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.75-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 -->
@@ -2004,7 +2004,7 @@ var DEFAULT_BUILD_OPTIONS = {
2004
2004
  // ../esbuild/src/plugins/resolve-paths.ts
2005
2005
  init_esm_shims();
2006
2006
  import path2 from "node:path";
2007
- function resolvePathsConfig(options, cwd) {
2007
+ function resolvePathsConfig(options, cwd, projectRoot) {
2008
2008
  if (options?.compilerOptions?.paths) {
2009
2009
  const paths = Object.entries(options.compilerOptions.paths);
2010
2010
  const resolvedPaths = paths.map(([key, paths2]) => {
@@ -2016,7 +2016,7 @@ function resolvePathsConfig(options, cwd) {
2016
2016
  return Object.fromEntries(resolvedPaths);
2017
2017
  }
2018
2018
  if (options.extends) {
2019
- const extendsPath = path2.resolve(cwd, options.extends);
2019
+ const extendsPath = path2.resolve(projectRoot ? joinPaths(cwd, projectRoot, options.extends) : joinPaths(cwd, options.extends));
2020
2020
  const extendsDir = path2.dirname(extendsPath);
2021
2021
  const extendsConfig = __require(extendsPath);
2022
2022
  return resolvePathsConfig(extendsConfig, extendsDir);
@@ -2028,7 +2028,7 @@ var resolvePathsPlugin = /* @__PURE__ */ __name((context) => ({
2028
2028
  name: "storm:resolve-paths",
2029
2029
  setup(build3) {
2030
2030
  const parentTsConfig = build3.initialOptions.tsconfig ? __require(joinPaths(context.workspaceConfig.workspaceRoot, build3.initialOptions.tsconfig.replace(context.workspaceConfig.workspaceRoot, ""))) : __require(joinPaths(context.workspaceConfig.workspaceRoot, "tsconfig.json"));
2031
- const resolvedTsPaths = resolvePathsConfig(parentTsConfig, context.workspaceConfig.workspaceRoot);
2031
+ const resolvedTsPaths = resolvePathsConfig(parentTsConfig, context.workspaceConfig.workspaceRoot, context.options.projectRoot);
2032
2032
  const packagesRegex = new RegExp(`^(${Object.keys(resolvedTsPaths).join("|")})$`);
2033
2033
  build3.onResolve({
2034
2034
  filter: packagesRegex
@@ -2003,7 +2003,7 @@ var DEFAULT_BUILD_OPTIONS = {
2003
2003
  // ../esbuild/src/plugins/resolve-paths.ts
2004
2004
  _chunkLTKRUM5Pjs.init_cjs_shims.call(void 0, );
2005
2005
 
2006
- function resolvePathsConfig(options, cwd) {
2006
+ function resolvePathsConfig(options, cwd, projectRoot) {
2007
2007
  if (_optionalChain([options, 'optionalAccess', _109 => _109.compilerOptions, 'optionalAccess', _110 => _110.paths])) {
2008
2008
  const paths = Object.entries(options.compilerOptions.paths);
2009
2009
  const resolvedPaths = paths.map(([key, paths2]) => {
@@ -2015,7 +2015,7 @@ function resolvePathsConfig(options, cwd) {
2015
2015
  return Object.fromEntries(resolvedPaths);
2016
2016
  }
2017
2017
  if (options.extends) {
2018
- const extendsPath = path4.default.resolve(cwd, options.extends);
2018
+ const extendsPath = path4.default.resolve(projectRoot ? _chunkPHMFOUDCjs.joinPaths.call(void 0, cwd, projectRoot, options.extends) : _chunkPHMFOUDCjs.joinPaths.call(void 0, cwd, options.extends));
2019
2019
  const extendsDir = path4.default.dirname(extendsPath);
2020
2020
  const extendsConfig = _chunkLTKRUM5Pjs.__require.call(void 0, extendsPath);
2021
2021
  return resolvePathsConfig(extendsConfig, extendsDir);
@@ -2027,7 +2027,7 @@ var resolvePathsPlugin = /* @__PURE__ */ _chunkLTKRUM5Pjs.__name.call(void 0, (c
2027
2027
  name: "storm:resolve-paths",
2028
2028
  setup(build3) {
2029
2029
  const parentTsConfig = build3.initialOptions.tsconfig ? _chunkLTKRUM5Pjs.__require.call(void 0, _chunkPHMFOUDCjs.joinPaths.call(void 0, context.workspaceConfig.workspaceRoot, build3.initialOptions.tsconfig.replace(context.workspaceConfig.workspaceRoot, ""))) : _chunkLTKRUM5Pjs.__require.call(void 0, _chunkPHMFOUDCjs.joinPaths.call(void 0, context.workspaceConfig.workspaceRoot, "tsconfig.json"));
2030
- const resolvedTsPaths = resolvePathsConfig(parentTsConfig, context.workspaceConfig.workspaceRoot);
2030
+ const resolvedTsPaths = resolvePathsConfig(parentTsConfig, context.workspaceConfig.workspaceRoot, context.options.projectRoot);
2031
2031
  const packagesRegex = new RegExp(`^(${Object.keys(resolvedTsPaths).join("|")})$`);
2032
2032
  build3.onResolve({
2033
2033
  filter: packagesRegex
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-DQ67WT5G.js');
2
2
 
3
3
 
4
- var _chunkCMECVM4Gjs = require('./chunk-CMECVM4G.js');
4
+ var _chunkVBI5UBLIjs = require('./chunk-VBI5UBLI.js');
5
5
  require('./chunk-PHMFOUDC.js');
6
6
  require('./chunk-LTKRUM5P.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkCMECVM4Gjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkVBI5UBLIjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-BSYROGZP.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-Q6VUDX73.mjs";
4
+ } from "./chunk-GM25EIP6.mjs";
5
5
  import "./chunk-EJSKIRCS.mjs";
6
6
  import "./chunk-JSBLU2B7.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var _chunkRLLFZW5Zjs = require('./chunk-RLLFZW5Z.js');
5
5
 
6
6
 
7
- var _chunkCMECVM4Gjs = require('./chunk-CMECVM4G.js');
7
+ var _chunkVBI5UBLIjs = require('./chunk-VBI5UBLI.js');
8
8
  require('./chunk-PHMFOUDC.js');
9
9
 
10
10
 
@@ -16,10 +16,10 @@ var _chunkLTKRUM5Pjs = require('./chunk-LTKRUM5P.js');
16
16
  // index.ts
17
17
  var index_exports = {};
18
18
  _chunkLTKRUM5Pjs.__export.call(void 0, index_exports, {
19
- initGeneratorFn: () => _chunkCMECVM4Gjs.initGeneratorFn
19
+ initGeneratorFn: () => _chunkVBI5UBLIjs.initGeneratorFn
20
20
  });
21
21
  _chunkLTKRUM5Pjs.init_cjs_shims.call(void 0, );
22
22
  _chunkLTKRUM5Pjs.__reExport.call(void 0, index_exports, _chunkLTKRUM5Pjs.__toESM.call(void 0, _chunkRLLFZW5Zjs.require_components.call(void 0, )));
23
23
 
24
24
 
25
- exports.initGeneratorFn = _chunkCMECVM4Gjs.initGeneratorFn;
25
+ exports.initGeneratorFn = _chunkVBI5UBLIjs.initGeneratorFn;
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-IAJM6J3Z.mjs";
5
5
  import {
6
6
  initGeneratorFn
7
- } from "./chunk-Q6VUDX73.mjs";
7
+ } from "./chunk-GM25EIP6.mjs";
8
8
  import "./chunk-EJSKIRCS.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 _chunkCMECVM4Gjs = require('../../../chunk-CMECVM4G.js');
4
+ var _chunkVBI5UBLIjs = require('../../../chunk-VBI5UBLI.js');
5
5
  require('../../../chunk-PHMFOUDC.js');
6
6
  require('../../../chunk-LTKRUM5P.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkCMECVM4Gjs.generator_default; exports.initGeneratorFn = _chunkCMECVM4Gjs.initGeneratorFn;
10
+ exports.default = _chunkVBI5UBLIjs.generator_default; exports.initGeneratorFn = _chunkVBI5UBLIjs.initGeneratorFn;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-Q6VUDX73.mjs";
4
+ } from "../../../chunk-GM25EIP6.mjs";
5
5
  import "../../../chunk-EJSKIRCS.mjs";
6
6
  import "../../../chunk-JSBLU2B7.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/projen",
3
- "version": "0.9.74",
3
+ "version": "0.9.76",
4
4
  "type": "commonjs",
5
5
  "description": "Tools for managing Projen configuration automation within a Nx workspace.",
6
6
  "repository": {