@thelapyae/geniclaw 1.1.7 → 1.1.8
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/bin/geniclaw.js +2 -1
- package/package.json +1 -1
package/bin/geniclaw.js
CHANGED
|
@@ -498,8 +498,9 @@ async function showLogsMenu() {
|
|
|
498
498
|
|
|
499
499
|
|
|
500
500
|
// CLI Configuration
|
|
501
|
+
const packageJson = require('../package.json');
|
|
501
502
|
program
|
|
502
|
-
.version(
|
|
503
|
+
.version(packageJson.version)
|
|
503
504
|
.description('GeniClaw Management CLI')
|
|
504
505
|
.arguments('[command]')
|
|
505
506
|
.action(async (command) => {
|