Skip to content

Commit

Permalink
Merge pull request #24 from lisb/release/0.7.0
Browse files Browse the repository at this point in the history
Release/0.7.0
  • Loading branch information
krdlab authored Oct 11, 2024
2 parents d66aa98 + 3b02ac3 commit 9fac613
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/daab.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ var program = require('commander');
var pkg = require('../package.json');

program
.version(pkg.version)
.version(`daab CLI: ${pkg.version}\n(Are you sure you're not confusing it with 'daab version'? If you want to check the SDK packages, use 'daab version' instead.)`)
.command('init', 'setup the daab environment.')
.command('login', 'login as a bot account.')
.command('logout', 'logout from the service.')
.command('run', 'run the daab. (Ctrl-C to stop)')
.command('start', 'run the daab as a deamon.')
.command('stop', 'stop the daab deamon.')
.command('invites', 'show and accept a domain invite.')
.command('version', 'show your daab version information.')
.command('version', "show the version information of your daab environment (not CLI).")
.parse(process.argv);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "daab",
"version": "0.6.0",
"version": "0.7.0",
"description": "daab (direct agent assist bot) commandline interface",
"main": "lib/daab.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
],
"description": "<%= description %>",
"engines": {
"node": ">= 16",
"npm": ">= 8.3.0"
"node": ">= 18",
"npm": ">= 10"
},
"dependencies": {
"forever": "^4.0.0",
"hubot-direct": ">=3 <4",
"hubot-direct": ">=4 <5",
"lisb-hubot": ">=5 <6",
"lisb-hubot-redis-brain": "^1.0.0"
},
Expand Down

0 comments on commit 9fac613

Please sign in to comment.