@qui-cli/log 4.0.3 → 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 CHANGED
@@ -2,26 +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.3](https://github.com/battis/qui-cli/compare/log/4.0.2...log/4.0.3) (2026-01-18)
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
- * compile against Node.js v24 ([7b06b4f](https://github.com/battis/qui-cli/commit/7b06b4f4ac4f9688719041ab8b1d837b3a0ee214))
13
+ - compile against Node.js v24 ([7b06b4f](https://github.com/battis/qui-cli/commit/7b06b4f4ac4f9688719041ab8b1d837b3a0ee214))
11
14
 
12
15
  ## [4.0.2](https://github.com/battis/qui-cli/compare/log/4.0.1...log/4.0.2) (2026-01-02)
13
16
 
14
-
15
17
  ### Bug Fixes
16
18
 
17
- * normalize peer dependencies ([cdd81b7](https://github.com/battis/qui-cli/commit/cdd81b7c4bea7c769021ff58177750c5a1369f76))
19
+ - normalize peer dependencies ([cdd81b7](https://github.com/battis/qui-cli/commit/cdd81b7c4bea7c769021ff58177750c5a1369f76))
18
20
 
19
21
  ## [4.0.1](https://github.com/battis/qui-cli/compare/log/4.0.0...log/4.0.1) (2025-11-12)
20
22
 
21
-
22
23
  ### Bug Fixes
23
24
 
24
- * boost standard headig back to level 1 ([cfb3065](https://github.com/battis/qui-cli/commit/cfb30657a3d719df60663d0a8e6aa6cf240740e9))
25
+ - boost standard headig back to level 1 ([cfb3065](https://github.com/battis/qui-cli/commit/cfb30657a3d719df60663d0a8e6aa6cf240740e9))
25
26
 
26
27
  ## [4.0.0](https://github.com/battis/qui-cli/compare/log/3.1.0...log/4.0.0) (2025-11-07)
27
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.init();
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",
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": "^8.2.0",
20
+ "ora": "^9.3.0",
21
21
  "strip-ansi": "^7.1.2",
22
- "winston": "^3.19.0",
23
- "@qui-cli/colors": "3.2.3"
22
+ "winston": "^3.19.0"
24
23
  },
25
24
  "devDependencies": {
26
25
  "@tsconfig/node24": "^24.0.4",
27
- "@types/node": "^24.10.9",
26
+ "@types/node": "^24.10.13",
28
27
  "commit-and-tag-version": "^12.6.1",
29
28
  "del-cli": "^7.0.0",
30
29
  "npm-run-all": "^4.1.5",
31
- "typescript": "^5.9.3",
32
- "@qui-cli/plugin": "4.1.0",
33
- "@qui-cli/root": "3.1.0"
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
  },
@@ -42,6 +40,6 @@
42
40
  "build": "run-s build:*",
43
41
  "build:clean": "run-s clean",
44
42
  "build:compile": "tsc",
45
- "version": "commit-and-tag-version"
43
+ "release": "commit-and-tag-version"
46
44
  }
47
45
  }