gh-manager-cli 1.23.0 → 1.24.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 +7 -0
- package/dist/index.js +5 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.24.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.23.0...v1.24.0) (2025-09-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add app name with version to --help output ([3376c48](https://github.com/wiiiimm/gh-manager-cli/commit/3376c480186c506f125a62ab444f3e3d321ba82c))
|
|
7
|
+
|
|
1
8
|
# [1.23.0](https://github.com/wiiiimm/gh-manager-cli/compare/v1.22.0...v1.23.0) (2025-09-04)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -29,7 +29,7 @@ var require_package = __commonJS({
|
|
|
29
29
|
"package.json"(exports, module) {
|
|
30
30
|
module.exports = {
|
|
31
31
|
name: "gh-manager-cli",
|
|
32
|
-
version: "1.
|
|
32
|
+
version: "1.24.0",
|
|
33
33
|
private: false,
|
|
34
34
|
description: "Interactive CLI to manage your GitHub repos (personal) with Ink",
|
|
35
35
|
license: "MIT",
|
|
@@ -3328,8 +3328,10 @@ if (argv.includes("--version") || argv.includes("-v")) {
|
|
|
3328
3328
|
process.exit(0);
|
|
3329
3329
|
}
|
|
3330
3330
|
if (argv.includes("--help") || argv.includes("-h")) {
|
|
3331
|
-
|
|
3332
|
-
gh-manager-cli
|
|
3331
|
+
const version = import_package.default?.version || "0.0.0";
|
|
3332
|
+
process.stdout.write(`gh-manager-cli v${version}
|
|
3333
|
+
|
|
3334
|
+
GitHub repo manager (Ink TUI)
|
|
3333
3335
|
|
|
3334
3336
|
Usage:
|
|
3335
3337
|
gh-manager-cli Launch the TUI
|