@guanghechen/commander 1.0.8 → 1.0.10
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 +17 -0
- package/README.md +2 -2
- package/lib/types/index.d.ts +2 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## <small>1.0.10 (2025-03-30)</small>
|
|
7
|
+
|
|
8
|
+
* chore: upgrade dependencies ([a5b7a87](https://github.com/guanghechen/node-scaffolds/commit/a5b7a87))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## <small>1.0.9 (2025-02-26)</small>
|
|
15
|
+
|
|
16
|
+
* :bookmark: release ([9d47297](https://github.com/guanghechen/node-scaffolds/commit/9d47297))
|
|
17
|
+
* chore: sharp dependencies ([914ba6f](https://github.com/guanghechen/node-scaffolds/commit/914ba6f))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
## <small>1.0.8 (2025-02-26)</small>
|
|
7
24
|
|
|
8
25
|
* chore: sharp dependencies ([914ba6f](https://github.com/guanghechen/node-scaffolds/commit/914ba6f))
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<header>
|
|
2
2
|
<h1 align="center">
|
|
3
|
-
<a href="https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.
|
|
3
|
+
<a href="https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.10/packages/commander#readme">@guanghechen/commander</a>
|
|
4
4
|
</h1>
|
|
5
5
|
<div align="center">
|
|
6
6
|
<a href="https://www.npmjs.com/package/@guanghechen/commander">
|
|
@@ -78,6 +78,6 @@ Utility functions for creating command programs tools based on [commander.js][].
|
|
|
78
78
|
* [commander.js][]
|
|
79
79
|
|
|
80
80
|
|
|
81
|
-
[homepage]: https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.
|
|
81
|
+
[homepage]: https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.10/packages/commander#readme
|
|
82
82
|
[commander.js]: https://github.com/tj/commander.js/
|
|
83
83
|
|
package/lib/types/index.d.ts
CHANGED
|
@@ -133,4 +133,5 @@ interface IInstallDependenciesParams {
|
|
|
133
133
|
*/
|
|
134
134
|
declare function installDependencies(params: IInstallDependenciesParams): Promise<void>;
|
|
135
135
|
|
|
136
|
-
export { Command,
|
|
136
|
+
export { Command, SubCommand, createMainCommandExecutor, createMainCommandMounter, createTopCommand, hasGitInstalled, installDependencies };
|
|
137
|
+
export type { ICommandActionCallback, IInstallDependenciesParams, IMainCommandCreator, IMainCommandExecutor, IMainCommandMounter, IMainCommandProcessor, ISubCommand, ISubCommandOptions, ISubCommandProcessor };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guanghechen/commander",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "A wrapper of commander.js with some utilities",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "guanghechen",
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.
|
|
11
|
+
"url": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.9",
|
|
12
12
|
"directory": "packages/commander"
|
|
13
13
|
},
|
|
14
|
-
"homepage": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.
|
|
14
|
+
"homepage": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.9/packages/commander#readme",
|
|
15
15
|
"keywords": [
|
|
16
16
|
"commander"
|
|
17
17
|
],
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"README.md"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@guanghechen/cli": "^1.0.
|
|
44
|
+
"@guanghechen/cli": "^1.0.6",
|
|
45
45
|
"@guanghechen/exec": "^1.0.8",
|
|
46
46
|
"@guanghechen/reporter.types": "^1.0.5",
|
|
47
|
-
"@inquirer/select": "4.0
|
|
47
|
+
"@inquirer/select": "4.1.0",
|
|
48
48
|
"commander": "12.1.0"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "2313a963051c85df08ac6d2b3e14ee987f006ce4"
|
|
51
51
|
}
|