@storm-software/workspace-tools 1.180.6 → 1.180.8

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,17 @@
1
+ ## 1.180.8 (2024-09-11)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **build-tools:** Resolved issue with missing TypeScript declarations
6
+ ([4cf894fe](https://github.com/storm-software/storm-ops/commit/4cf894fe))
7
+
8
+ ## 1.180.7 (2024-09-11)
9
+
10
+ ### Bug Fixes
11
+
12
+ - **build-tools:** Invoke chdir in the build function
13
+ ([43f69ff5](https://github.com/storm-software/storm-ops/commit/43f69ff5))
14
+
1
15
  ## 1.180.6 (2024-09-11)
2
16
 
3
17
  ### 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-1.180.5-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-1.180.7-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 -->
package/index.js CHANGED
@@ -437550,7 +437550,13 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
437550
437550
  );
437551
437551
  const tsConfigFile = ts.readConfigFile(tsConfigPath, ts.sys.readFile);
437552
437552
  const tsConfig = ts.parseJsonConfigFileContent(
437553
- tsConfigFile.config,
437553
+ {
437554
+ ...tsConfigFile.config,
437555
+ include: [
437556
+ ...tsConfigFile.config?.include && Array.isArray(tsConfigFile.config.include) ? tsConfigFile.config.include : [],
437557
+ (0, import_node_path14.join)(import_devkit7.workspaceRoot, "node_modules/typescript/lib/*.d.ts")
437558
+ ]
437559
+ },
437554
437560
  ts.sys,
437555
437561
  (0, import_node_path14.dirname)(tsConfigPath)
437556
437562
  );
@@ -437659,7 +437665,7 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
437659
437665
  config
437660
437666
  )
437661
437667
  },
437662
- verbosity: 3
437668
+ verbosity: convertRpts2LogLevel(config?.logLevel ?? "warn")
437663
437669
  }),
437664
437670
  (0, import_type_definitions.typeDefinitions)({
437665
437671
  projectRoot
@@ -437678,9 +437684,7 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
437678
437684
  getBabelInputPlugin({
437679
437685
  // Lets `@nx/js/babel` preset know that we are packaging.
437680
437686
  caller: {
437681
- // Ignoring type checks for caller since we have custom attributes
437682
437687
  isNxPackage: true,
437683
- // Always target esnext and let rollup handle cjs
437684
437688
  supportsStaticESM: true,
437685
437689
  isModern: true
437686
437690
  },
@@ -437708,6 +437712,20 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
437708
437712
  }
437709
437713
  return finalConfig;
437710
437714
  }
437715
+ function convertRpts2LogLevel(logLevel) {
437716
+ switch (logLevel) {
437717
+ case "warn":
437718
+ return 1;
437719
+ case "info":
437720
+ return 2;
437721
+ case "debug":
437722
+ case "trace":
437723
+ case "all":
437724
+ return 3;
437725
+ default:
437726
+ return 0;
437727
+ }
437728
+ }
437711
437729
  function createInput(options) {
437712
437730
  if (global.NX_GRAPH_CREATION) return {};
437713
437731
  const mainEntryFileName = options.outputFileName || options.main;