ask-cli-ai 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/dist/app.js +2 -2
  2. package/package.json +3 -1
package/dist/app.js CHANGED
@@ -9,8 +9,8 @@ import { providers } from "./commands/providers.js";
9
9
  import { logo } from "./utils/logo.js";
10
10
  void yargs(hideBin(process.argv))
11
11
  .scriptName('ask')
12
- .usage(`${logo}\nAI CLI to help you with commands, coding, apps and more.\n\nVersion: 1.0.5\n\nUsage: $0 <prompt..>`)
13
- .version('1.0.5')
12
+ .usage(`${logo}\nAI CLI to help you with commands, coding, apps and more.\n\nVersion: 1.0.6\n\nUsage: $0 <prompt..>`)
13
+ .version('1.0.6')
14
14
  .locale('en')
15
15
  .example('$0 how to run a docker container', '')
16
16
  .example('how to setup my git account', '')
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "ask-cli-ai",
3
3
  "description": "AI CLI to help you with commands, coding, apps, and more from your terminal.",
4
- "version": "1.0.5",
4
+ "version": "1.0.6",
5
+ "homepage": "https://github.com/david-minaya/ask",
6
+ "repository": "github:david-minaya/ask",
5
7
  "license": "ISC",
6
8
  "author": "David Minaya",
7
9
  "type": "module",