@storm-software/config-tools 1.111.1 → 1.111.2

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,8 +1,15 @@
1
+ ## 1.111.2 (2024-11-10)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **config-tools:** Ensure trace logging is not marked as system logging ([e8dca171](https://github.com/storm-software/storm-ops/commit/e8dca171))
6
+
1
7
  ## 1.111.1 (2024-11-08)
2
8
 
3
9
  ### Bug Fixes
4
10
 
5
- - **config-tools:** Cleaned up the logger's formatting ([6ed06104](https://github.com/storm-software/storm-ops/commit/6ed06104))
11
+ - **config-tools:** Cleaned up the logger's formatting
12
+ ([6ed06104](https://github.com/storm-software/storm-ops/commit/6ed06104))
6
13
 
7
14
  ## 1.111.0 (2024-11-08)
8
15
 
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.111.0-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.111.1-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.cjs CHANGED
@@ -66681,9 +66681,9 @@ var getConfigFile = async (filePath, additionalFileNames = []) => {
66681
66681
  const result = await getConfigFileByName("storm", workspacePath);
66682
66682
  let config = result.config;
66683
66683
  const configFile = result.configFile;
66684
- if (config && Object.keys(config).length > 0) {
66685
- writeTrace(
66686
- `Found Storm configuration file "${configFile}" at "${workspacePath}"`,
66684
+ if (config && configFile && Object.keys(config).length > 0) {
66685
+ writeSystem(
66686
+ `Found Storm configuration file "${configFile.includes(`${workspacePath}/`) ? configFile.replace(`${workspacePath}/`, "") : configFile}" at "${workspacePath}"`,
66687
66687
  {
66688
66688
  logLevel: "all"
66689
66689
  }
@@ -66696,9 +66696,9 @@ var getConfigFile = async (filePath, additionalFileNames = []) => {
66696
66696
  )
66697
66697
  );
66698
66698
  for (const result2 of results) {
66699
- if (result2?.config && Object.keys(result2.config).length > 0) {
66700
- writeTrace(
66701
- `Found additional configuration file "${result2.configFile}" at "${workspacePath}"`,
66699
+ if (result2?.config && result2?.configFile && Object.keys(result2.config).length > 0) {
66700
+ writeSystem(
66701
+ `Found alternative configuration file "${result2.configFile.includes(`${workspacePath}/`) ? result2.configFile.replace(`${workspacePath}/`, "") : result2.configFile}" at "${workspacePath}"`,
66702
66702
  {
66703
66703
  logLevel: "all"
66704
66704
  }
package/index.js CHANGED
@@ -66638,9 +66638,9 @@ var getConfigFile = async (filePath, additionalFileNames = []) => {
66638
66638
  const result = await getConfigFileByName("storm", workspacePath);
66639
66639
  let config = result.config;
66640
66640
  const configFile = result.configFile;
66641
- if (config && Object.keys(config).length > 0) {
66642
- writeTrace(
66643
- `Found Storm configuration file "${configFile}" at "${workspacePath}"`,
66641
+ if (config && configFile && Object.keys(config).length > 0) {
66642
+ writeSystem(
66643
+ `Found Storm configuration file "${configFile.includes(`${workspacePath}/`) ? configFile.replace(`${workspacePath}/`, "") : configFile}" at "${workspacePath}"`,
66644
66644
  {
66645
66645
  logLevel: "all"
66646
66646
  }
@@ -66653,9 +66653,9 @@ var getConfigFile = async (filePath, additionalFileNames = []) => {
66653
66653
  )
66654
66654
  );
66655
66655
  for (const result2 of results) {
66656
- if (result2?.config && Object.keys(result2.config).length > 0) {
66657
- writeTrace(
66658
- `Found additional configuration file "${result2.configFile}" at "${workspacePath}"`,
66656
+ if (result2?.config && result2?.configFile && Object.keys(result2.config).length > 0) {
66657
+ writeSystem(
66658
+ `Found alternative configuration file "${result2.configFile.includes(`${workspacePath}/`) ? result2.configFile.replace(`${workspacePath}/`, "") : result2.configFile}" at "${workspacePath}"`,
66659
66659
  {
66660
66660
  logLevel: "all"
66661
66661
  }
package/meta.cjs.json CHANGED
@@ -3573,7 +3573,7 @@
3573
3573
  "format": "esm"
3574
3574
  },
3575
3575
  "packages/config-tools/src/config-file/get-config-file.ts": {
3576
- "bytes": 3197,
3576
+ "bytes": 3549,
3577
3577
  "imports": [
3578
3578
  {
3579
3579
  "path": "node_modules/.pnpm/c12@2.0.0-beta.2/node_modules/c12/dist/index.mjs",
@@ -5139,7 +5139,7 @@
5139
5139
  "bytesInOutput": 61
5140
5140
  },
5141
5141
  "packages/config-tools/src/config-file/get-config-file.ts": {
5142
- "bytesInOutput": 2181
5142
+ "bytesInOutput": 2415
5143
5143
  },
5144
5144
  "packages/config-tools/src/utilities/correct-paths.ts": {
5145
5145
  "bytesInOutput": 209
@@ -5211,7 +5211,7 @@
5211
5211
  "bytesInOutput": 0
5212
5212
  }
5213
5213
  },
5214
- "bytes": 4132536
5214
+ "bytes": 4132770
5215
5215
  },
5216
5216
  "dist/packages/config-tools/utilities/find-workspace-root.cjs": {
5217
5217
  "imports": [
package/meta.esm.json CHANGED
@@ -3573,7 +3573,7 @@
3573
3573
  "format": "esm"
3574
3574
  },
3575
3575
  "packages/config-tools/src/config-file/get-config-file.ts": {
3576
- "bytes": 3197,
3576
+ "bytes": 3549,
3577
3577
  "imports": [
3578
3578
  {
3579
3579
  "path": "node_modules/.pnpm/c12@2.0.0-beta.2/node_modules/c12/dist/index.mjs",
@@ -5179,7 +5179,7 @@
5179
5179
  "bytesInOutput": 61
5180
5180
  },
5181
5181
  "packages/config-tools/src/config-file/get-config-file.ts": {
5182
- "bytesInOutput": 2181
5182
+ "bytesInOutput": 2415
5183
5183
  },
5184
5184
  "packages/config-tools/src/utilities/correct-paths.ts": {
5185
5185
  "bytesInOutput": 209
@@ -5254,7 +5254,7 @@
5254
5254
  "bytesInOutput": 0
5255
5255
  }
5256
5256
  },
5257
- "bytes": 4127150
5257
+ "bytes": 4127384
5258
5258
  },
5259
5259
  "dist/packages/config-tools/utilities/find-workspace-root.js": {
5260
5260
  "imports": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config-tools",
3
- "version": "1.111.1",
3
+ "version": "1.111.2",
4
4
  "description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
5
5
  "repository": {
6
6
  "type": "github",