@storm-software/workspace-tools 1.62.26 → 1.62.27

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
@@ -1,3 +1,15 @@
1
+ ## 1.62.27 (2024-03-01)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Update method of parsing the tsconfig json values for dts build ([4bb4d0fe](https://github.com/storm-software/storm-ops/commit/4bb4d0fe))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
1
13
  ## 1.62.26 (2024-03-01)
2
14
 
3
15
 
package/README.md CHANGED
@@ -16,7 +16,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
16
16
 
17
17
  <h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
18
18
 
19
- [![Version](https://img.shields.io/badge/version-1.62.20-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
19
+ [![Version](https://img.shields.io/badge/version-1.62.25-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
20
20
  [![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 docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)&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)
21
21
 
22
22
  > [!IMPORTANT]
package/index.js CHANGED
@@ -474932,7 +474932,14 @@ ${options8.banner}
474932
474932
  }
474933
474933
  };
474934
474934
  function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
474935
- const rawTsconfig = loadTsConfig2((0, import_node_path2.dirname)(options8.tsConfig), findFileName(options8.tsConfig));
474935
+ let rawTsconfig;
474936
+ try {
474937
+ rawTsconfig = loadTsConfig2({
474938
+ filepath: options8.tsConfig
474939
+ });
474940
+ } catch (_4) {
474941
+ rawTsconfig = null;
474942
+ }
474936
474943
  if (!rawTsconfig) {
474937
474944
  throw new Error(
474938
474945
  `Unable to find ${findFileName(options8.tsConfig) || "tsconfig.json"} in ${(0, import_node_path2.dirname)(
@@ -474945,7 +474952,7 @@ function getNormalizedTsConfig(workspaceRoot, outputPath, options8) {
474945
474952
  ...rawTsconfig.data,
474946
474953
  compilerOptions: {
474947
474954
  ...rawTsconfig.data?.compilerOptions,
474948
- tsBuildInfoFile: rawTsconfig.compilerOptions?.incremental ? (0, import_devkit3.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
474955
+ tsBuildInfoFile: rawTsconfig.data?.compilerOptions?.incremental ? (0, import_devkit3.joinPathFragments)(outputPath, "tsconfig.tsbuildinfo") : void 0,
474949
474956
  outDir: outputPath,
474950
474957
  noEmit: false,
474951
474958
  emitDeclarationOnly: true,