@guanghechen/commander 1.0.3 → 1.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 +9 -0
- package/README.md +2 -2
- package/lib/cjs/index.cjs +0 -1
- package/lib/esm/index.mjs +0 -1
- package/lib/types/index.d.ts +0 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
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.4 (2024-10-03)</small>
|
|
7
|
+
|
|
8
|
+
* :arrow_up: chore: upgrade dependencies ([e41de75](https://github.com/guanghechen/node-scaffolds/commit/e41de75))
|
|
9
|
+
* :wrench: chore: don't gen sourcemap in production env ([f7075d1](https://github.com/guanghechen/node-scaffolds/commit/f7075d1))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## <small>1.0.3 (2024-09-29)</small>
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @guanghechen/commander
|
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.4/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.4/packages/commander#readme
|
|
82
82
|
[commander.js]: https://github.com/tj/commander.js/
|
|
83
83
|
|
package/lib/cjs/index.cjs
CHANGED
package/lib/esm/index.mjs
CHANGED
package/lib/types/index.d.ts
CHANGED
|
@@ -134,4 +134,3 @@ interface IInstallDependenciesParams {
|
|
|
134
134
|
declare function installDependencies(params: IInstallDependenciesParams): Promise<void>;
|
|
135
135
|
|
|
136
136
|
export { Command, type ICommandActionCallback, type IInstallDependenciesParams, type IMainCommandCreator, type IMainCommandExecutor, type IMainCommandMounter, type IMainCommandProcessor, type ISubCommand, type ISubCommandOptions, type ISubCommandProcessor, SubCommand, createMainCommandExecutor, createMainCommandMounter, createTopCommand, hasGitInstalled, installDependencies };
|
|
137
|
-
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guanghechen/commander",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
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.3",
|
|
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.3/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.
|
|
45
|
-
"@guanghechen/exec": "^1.0.
|
|
44
|
+
"@guanghechen/cli": "^1.0.4",
|
|
45
|
+
"@guanghechen/exec": "^1.0.7",
|
|
46
46
|
"@guanghechen/reporter.types": "^1.0.4",
|
|
47
|
-
"@inquirer/select": "
|
|
48
|
-
"commander": "
|
|
47
|
+
"@inquirer/select": "3.0.1",
|
|
48
|
+
"commander": "12.1.0"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "663ff760fc34bd3ba49c0cb6b02824ad5cdc8874"
|
|
51
51
|
}
|