Skip to content

Commit

Permalink
dynamically update version from package.json, update description
Browse files Browse the repository at this point in the history
  • Loading branch information
odilitime committed Feb 11, 2025
1 parent 6b75a5f commit fc91693
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ const fs = require('fs')
const { Command } = require('commander')

const program = new Command()
const { version } = require('./package.json')

program
.name('elizaos')
.description('CLI to some JavaScript string utilities')
.version('0.8.0');
.description('elizaOS CLI - Manage your plugins')
.version(version);

const plugins = new Command()
.name("plugins")
Expand Down

0 comments on commit fc91693

Please sign in to comment.