@guanghechen/commander 3.3.0 → 4.1.0
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 +37 -0
- package/lib/cjs/index.cjs +509 -513
- package/lib/esm/index.mjs +507 -513
- package/lib/types/index.d.ts +211 -88
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 4.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ### @guanghechen/reporter
|
|
8
|
+
- feat: add `setLevel` method for dynamic log level change
|
|
9
|
+
- refactor: split source into modular files (`level.ts`, `chalk.ts`, `types.ts`, `reporter.ts`)
|
|
10
|
+
- refactor: move `IReporter` types from `@guanghechen/types` to `@guanghechen/reporter`
|
|
11
|
+
- export: add level utilities (`LogLevelEnum`, `ILogLevel`, `LOG_LEVELS`, `LOG_LEVEL_VALUES`,
|
|
12
|
+
`isLogLevel`, `getLogLevelValue`, `resolveLogLevel`)
|
|
13
|
+
- export: add chalk utilities (`ANSI`, `formatTag`)
|
|
14
|
+
|
|
15
|
+
### @guanghechen/types
|
|
16
|
+
- refactor: remove `IReporter` and `IReporterLevel` exports (moved to `@guanghechen/reporter`)
|
|
17
|
+
|
|
18
|
+
### @guanghechen/commander
|
|
19
|
+
- feat: add predefined options `logLevelOption` and `silentOption` with `apply` callback support
|
|
20
|
+
- refactor: use `ILogLevel` from `@guanghechen/reporter` instead of `IReporterLevel`
|
|
21
|
+
|
|
22
|
+
### Dependent packages
|
|
23
|
+
- chore: bump version for packages depending on `@guanghechen/types`, `@guanghechen/reporter`, or
|
|
24
|
+
`@guanghechen/commander`
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies:
|
|
29
|
+
- @guanghechen/reporter@3.2.0
|
|
30
|
+
|
|
31
|
+
## 4.0.0
|
|
32
|
+
|
|
33
|
+
### Major Changes
|
|
34
|
+
|
|
35
|
+
- Breaking changes:
|
|
36
|
+
- Rename `description` field to `desc` in ICommandConfig
|
|
37
|
+
- Implement 5-stage execution flow with breaking API changes
|
|
38
|
+
- Implement ICommandToken for naming convention support with format validation
|
|
39
|
+
|
|
3
40
|
## 3.3.0
|
|
4
41
|
|
|
5
42
|
### Minor Changes
|