@qui-cli/log 3.1.0 → 4.0.1
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 +26 -13
- package/dist/Log.js +3 -3
- package/package.json +7 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,37 +2,50 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
-
## [
|
|
5
|
+
## [4.0.1](https://github.com/battis/qui-cli/compare/log/4.0.0...log/4.0.1) (2025-11-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* boost standard headig back to level 1 ([cfb3065](https://github.com/battis/qui-cli/commit/cfb30657a3d719df60663d0a8e6aa6cf240740e9))
|
|
11
|
+
|
|
12
|
+
## [4.0.0](https://github.com/battis/qui-cli/compare/log/3.1.0...log/4.0.0) (2025-11-07)
|
|
13
|
+
|
|
14
|
+
### ⚠ BREAKING CHANGES
|
|
6
15
|
|
|
16
|
+
- **plugin@4.0.0** auto-document default arg values
|
|
7
17
|
|
|
8
18
|
### Features
|
|
9
19
|
|
|
10
|
-
|
|
20
|
+
- **plugin@4.0.0** auto-document default arg values ([e01e157](https://github.com/battis/qui-cli/commit/e01e157f06a3a801628ca79366e3f0060be2322e))
|
|
11
21
|
|
|
12
|
-
## [3.0
|
|
22
|
+
## [3.1.0](https://github.com/battis/qui-cli/compare/log/3.0.1...log/3.1.0) (2025-11-04)
|
|
23
|
+
|
|
24
|
+
### Features
|
|
13
25
|
|
|
26
|
+
- standardize on modules labeling the options that they add to the usage man page ([eba86cd](https://github.com/battis/qui-cli/commit/eba86cd8a22a93aa6b6f19a3979272d87fe59274))
|
|
27
|
+
|
|
28
|
+
## [3.0.1](https://github.com/battis/qui-cli/compare/log/3.0.0...log/3.0.1) (2025-08-04)
|
|
14
29
|
|
|
15
30
|
### Bug Fixes
|
|
16
31
|
|
|
17
|
-
|
|
32
|
+
- update lagging peer dependency specs ([c6d2d4d](https://github.com/battis/qui-cli/commit/c6d2d4d141fc9a9389648d6cb2cab4bfc05f9e55))
|
|
18
33
|
|
|
19
34
|
## [3.0.0](https://github.com/battis/qui-cli/compare/log/2.2.2...log/3.0.0) (2025-08-02)
|
|
20
35
|
|
|
21
|
-
|
|
22
36
|
### ⚠ BREAKING CHANGES
|
|
23
37
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
* rename @battis/qui-cli.log --> @qui-cli/log ([ba2ef7b](https://github.com/battis/qui-cli/commit/ba2ef7b08e9289d326d18cd6a8a3be1f8f81b8ce))
|
|
38
|
+
- rename @battis/qui-cli.log --> @qui-cli/log
|
|
27
39
|
|
|
40
|
+
- rename @battis/qui-cli.log --> @qui-cli/log ([ba2ef7b](https://github.com/battis/qui-cli/commit/ba2ef7b08e9289d326d18cd6a8a3be1f8f81b8ce))
|
|
28
41
|
|
|
29
42
|
### Bug Fixes
|
|
30
43
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
44
|
+
- update dependencies to renamed @qui-cli/colors ([ff80e86](https://github.com/battis/qui-cli/commit/ff80e8625ef98834afdf04e57bfedb1906834e2b))
|
|
45
|
+
- update dependencies to renamed @qui-cli/core ([f834c5a](https://github.com/battis/qui-cli/commit/f834c5a475f908585f1e17865917a092516168a0))
|
|
46
|
+
- update dependencies to renamed @qui-cli/env ([5ff9ee8](https://github.com/battis/qui-cli/commit/5ff9ee844222dc4c73fd8cbdbfeaaa16541a158b))
|
|
47
|
+
- update dependencies to renamed @qui-cli/plugin ([117ea85](https://github.com/battis/qui-cli/commit/117ea85256ec69c807c5b56293546d9c350fd43f))
|
|
48
|
+
- update dependencies to renamed @qui-cli/root ([488daa7](https://github.com/battis/qui-cli/commit/488daa7a82730125481945b5eb8db960972ac225))
|
|
36
49
|
|
|
37
50
|
## [2.2.2](https://github.com/battis/qui-cli/compare/log/2.2.1...log/2.2.2) (2025-06-23)
|
|
38
51
|
|
package/dist/Log.js
CHANGED
|
@@ -88,7 +88,7 @@ export function options() {
|
|
|
88
88
|
return {
|
|
89
89
|
man: [
|
|
90
90
|
{
|
|
91
|
-
level:
|
|
91
|
+
level: 1,
|
|
92
92
|
text: 'Logging options'
|
|
93
93
|
}
|
|
94
94
|
],
|
|
@@ -97,11 +97,11 @@ export function options() {
|
|
|
97
97
|
description: `Path to log file (optional)`
|
|
98
98
|
},
|
|
99
99
|
stdoutLevel: {
|
|
100
|
-
description: `Log level to console stdout: ${levelsList}
|
|
100
|
+
description: `Log level to console stdout: ${levelsList}`,
|
|
101
101
|
default: stdoutLevel
|
|
102
102
|
},
|
|
103
103
|
fileLevel: {
|
|
104
|
-
description: `Log level to log file (if ${Colors.
|
|
104
|
+
description: `Log level to log file (if ${Colors.optionArg('--logFilePath')} provided): ${levelsList}`,
|
|
105
105
|
default: fileLevel
|
|
106
106
|
}
|
|
107
107
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qui-cli/log",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "@qui-cli Plugin: Standardized winston wrapper",
|
|
5
5
|
"homepage": "https://github.com/battis/qui-cli/tree/main/packages/log#readme",
|
|
6
6
|
"repository": {
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"ora": "^8.2.0",
|
|
21
21
|
"strip-ansi": "^7.1.2",
|
|
22
|
-
"winston": "^3.18.3"
|
|
22
|
+
"winston": "^3.18.3",
|
|
23
|
+
"@qui-cli/colors": "3.1.0"
|
|
23
24
|
},
|
|
24
25
|
"devDependencies": {
|
|
25
26
|
"@tsconfig/node20": "^20.1.6",
|
|
@@ -27,14 +28,12 @@
|
|
|
27
28
|
"commit-and-tag-version": "^12.6.0",
|
|
28
29
|
"del-cli": "^6.0.0",
|
|
29
30
|
"npm-run-all": "^4.1.5",
|
|
30
|
-
"typescript": "
|
|
31
|
-
"@qui-cli/plugin": "
|
|
32
|
-
"@qui-cli/
|
|
33
|
-
"@qui-cli/root": "3.0.1"
|
|
31
|
+
"typescript": "^5.9.3",
|
|
32
|
+
"@qui-cli/plugin": "4.0.0",
|
|
33
|
+
"@qui-cli/root": "3.0.4"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@qui-cli/
|
|
37
|
-
"@qui-cli/plugin": "3.x",
|
|
36
|
+
"@qui-cli/plugin": "4.x",
|
|
38
37
|
"@qui-cli/root": "3.x"
|
|
39
38
|
},
|
|
40
39
|
"target": "node",
|