@qui-cli/log 4.0.2 → 4.0.4
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 +12 -4
- package/README.md +7 -1
- package/package.json +8 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,19 +2,27 @@
|
|
|
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
|
-
## [4.0.
|
|
5
|
+
## [4.0.4](https://github.com/battis/qui-cli/compare/log/4.0.3...log/4.0.4) (2026-03-10)
|
|
6
|
+
|
|
7
|
+
Update README
|
|
6
8
|
|
|
9
|
+
## [4.0.3](https://github.com/battis/qui-cli/compare/log/4.0.2...log/4.0.3) (2026-01-18)
|
|
7
10
|
|
|
8
11
|
### Bug Fixes
|
|
9
12
|
|
|
10
|
-
|
|
13
|
+
- compile against Node.js v24 ([7b06b4f](https://github.com/battis/qui-cli/commit/7b06b4f4ac4f9688719041ab8b1d837b3a0ee214))
|
|
11
14
|
|
|
12
|
-
## [4.0.
|
|
15
|
+
## [4.0.2](https://github.com/battis/qui-cli/compare/log/4.0.1...log/4.0.2) (2026-01-02)
|
|
13
16
|
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- normalize peer dependencies ([cdd81b7](https://github.com/battis/qui-cli/commit/cdd81b7c4bea7c769021ff58177750c5a1369f76))
|
|
20
|
+
|
|
21
|
+
## [4.0.1](https://github.com/battis/qui-cli/compare/log/4.0.0...log/4.0.1) (2025-11-12)
|
|
14
22
|
|
|
15
23
|
### Bug Fixes
|
|
16
24
|
|
|
17
|
-
|
|
25
|
+
- boost standard headig back to level 1 ([cfb3065](https://github.com/battis/qui-cli/commit/cfb30657a3d719df60663d0a8e6aa6cf240740e9))
|
|
18
26
|
|
|
19
27
|
## [4.0.0](https://github.com/battis/qui-cli/compare/log/3.1.0...log/4.0.0) (2025-11-07)
|
|
20
28
|
|
package/README.md
CHANGED
|
@@ -11,6 +11,12 @@
|
|
|
11
11
|
npm install @qui-cli/log @qui-cli/core
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
+
If developing a reusable plugin:
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
npm install --save-peer @qui-cli/log@>=3.2
|
|
18
|
+
```
|
|
19
|
+
|
|
14
20
|
## Usage
|
|
15
21
|
|
|
16
22
|
```ts
|
|
@@ -18,7 +24,7 @@ import { Log } from '@qui-cli/log';
|
|
|
18
24
|
import { Core } from '@qui-cli/core';
|
|
19
25
|
|
|
20
26
|
// process user-provided command-line arguments
|
|
21
|
-
const args = Core.
|
|
27
|
+
const args = await Core.run();
|
|
22
28
|
|
|
23
29
|
// use Log
|
|
24
30
|
Log.debug(args);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qui-cli/log",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4",
|
|
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": {
|
|
@@ -17,22 +17,20 @@
|
|
|
17
17
|
"main": "./dist/index.js",
|
|
18
18
|
"types": "./dist/index.d.ts",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"ora": "^
|
|
20
|
+
"ora": "^9.3.0",
|
|
21
21
|
"strip-ansi": "^7.1.2",
|
|
22
|
-
"winston": "^3.19.0"
|
|
23
|
-
"@qui-cli/colors": "3.2.1"
|
|
22
|
+
"winston": "^3.19.0"
|
|
24
23
|
},
|
|
25
24
|
"devDependencies": {
|
|
26
|
-
"@tsconfig/
|
|
27
|
-
"@types/node": "^24.10.
|
|
25
|
+
"@tsconfig/node24": "^24.0.4",
|
|
26
|
+
"@types/node": "^24.10.13",
|
|
28
27
|
"commit-and-tag-version": "^12.6.1",
|
|
29
|
-
"del-cli": "^
|
|
28
|
+
"del-cli": "^7.0.0",
|
|
30
29
|
"npm-run-all": "^4.1.5",
|
|
31
|
-
"typescript": "^5.9.3"
|
|
32
|
-
"@qui-cli/plugin": "4.0.0",
|
|
33
|
-
"@qui-cli/root": "3.0.6"
|
|
30
|
+
"typescript": "^5.9.3"
|
|
34
31
|
},
|
|
35
32
|
"peerDependencies": {
|
|
33
|
+
"@qui-cli/colors": ">=3.2",
|
|
36
34
|
"@qui-cli/plugin": ">=3",
|
|
37
35
|
"@qui-cli/root": ">=3"
|
|
38
36
|
},
|