buddydex 0.1.3 → 0.1.4

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/buddydex.js +2 -2
  2. package/package.json +1 -1
package/buddydex.js CHANGED
@@ -449,7 +449,7 @@ function cmdName(argv) {
449
449
  // packages/cli/package.json
450
450
  var package_default = {
451
451
  name: "buddydex",
452
- version: "0.1.3",
452
+ version: "0.1.4",
453
453
  description: "Hunt, browse, and inject Claude Code buddies",
454
454
  type: "module",
455
455
  bin: {
@@ -506,7 +506,7 @@ var USAGE = `
506
506
  buddydex name --name "Ember" --personality "Chaotic but loyal"
507
507
  `;
508
508
  var [command, ...rest] = process.argv.slice(2);
509
- if (command === "--version" || command === "-v") {
509
+ if (command === "--version" || command === "-v" || command === "version") {
510
510
  console.log(package_default.version);
511
511
  process.exit(0);
512
512
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buddydex",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Hunt, browse, and inject Claude Code buddies",
5
5
  "type": "module",
6
6
  "bin": {