@storm-software/config-tools 1.111.1 → 1.111.3
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 +15 -1
- package/README.md +1 -1
- package/index.cjs +6 -6
- package/index.js +6 -6
- package/meta.cjs.json +3 -3
- package/meta.esm.json +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,22 @@
|
|
|
1
|
+
## 1.111.3 (2024-11-10)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **config-tools:** Improve config file path formatting in log message ([5971676e](https://github.com/storm-software/storm-ops/commit/5971676e))
|
|
6
|
+
|
|
7
|
+
## 1.111.2 (2024-11-10)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **config-tools:** Ensure trace logging is not marked as system logging
|
|
12
|
+
([e8dca171](https://github.com/storm-software/storm-ops/commit/e8dca171))
|
|
13
|
+
|
|
1
14
|
## 1.111.1 (2024-11-08)
|
|
2
15
|
|
|
3
16
|
### Bug Fixes
|
|
4
17
|
|
|
5
|
-
- **config-tools:** Cleaned up the logger's formatting
|
|
18
|
+
- **config-tools:** Cleaned up the logger's formatting
|
|
19
|
+
([6ed06104](https://github.com/storm-software/storm-ops/commit/6ed06104))
|
|
6
20
|
|
|
7
21
|
## 1.111.0 (2024-11-08)
|
|
8
22
|
|
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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
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
|
-
|
|
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
|
-
|
|
66701
|
-
`Found
|
|
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
|
-
|
|
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
|
-
|
|
66658
|
-
`Found
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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":
|
|
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.
|
|
3
|
+
"version": "1.111.3",
|
|
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",
|