@storm-software/workspace-tools 1.180.7 → 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,10 @@
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
+
1
8
  ## 1.180.7 (2024-09-11)
2
9
 
3
10
  ### 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.6-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
  );
@@ -437657,10 +437663,9 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
437657
437663
  options,
437658
437664
  dependencies,
437659
437665
  config
437660
- ),
437661
- include: [(0, import_node_path14.join)(import_devkit7.workspaceRoot, "node_modules/typescript/lib/*.d.ts")]
437666
+ )
437662
437667
  },
437663
- verbosity: 3
437668
+ verbosity: convertRpts2LogLevel(config?.logLevel ?? "warn")
437664
437669
  }),
437665
437670
  (0, import_type_definitions.typeDefinitions)({
437666
437671
  projectRoot
@@ -437679,9 +437684,7 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
437679
437684
  getBabelInputPlugin({
437680
437685
  // Lets `@nx/js/babel` preset know that we are packaging.
437681
437686
  caller: {
437682
- // Ignoring type checks for caller since we have custom attributes
437683
437687
  isNxPackage: true,
437684
- // Always target esnext and let rollup handle cjs
437685
437688
  supportsStaticESM: true,
437686
437689
  isModern: true
437687
437690
  },
@@ -437709,6 +437712,20 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
437709
437712
  }
437710
437713
  return finalConfig;
437711
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
+ }
437712
437729
  function createInput(options) {
437713
437730
  if (global.NX_GRAPH_CREATION) return {};
437714
437731
  const mainEntryFileName = options.outputFileName || options.main;