@diffmind/cli 0.3.1 → 0.3.2

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/index.js +1 -1
  2. package/package.json +5 -4
package/dist/index.js CHANGED
@@ -77,7 +77,7 @@ program
77
77
  program
78
78
  .name("diffmind")
79
79
  .description("Local-first AI code review for your git diffs")
80
- .version("0.3.1")
80
+ .version("0.3.2")
81
81
  .option("-b, --branch <name>", "Target branch to diff against", "main")
82
82
  .option("-f, --format <type>", 'Output format: "markdown" or "json"', "markdown")
83
83
  .option("-o, --output <file>", "Write output to a file instead of stdout")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diffmind/cli",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "diffmind CLI — local-first AI code review for your git diffs",
5
5
  "author": "Thinkgrid Labs <hello@thinkgrid.com>",
6
6
  "license": "MIT",
@@ -16,7 +16,8 @@
16
16
  "dist/"
17
17
  ],
18
18
  "bin": {
19
- "diffmind": "./dist/index.js"
19
+ "diffmind": "./dist/index.js",
20
+ "@diffmind/cli": "./dist/index.js"
20
21
  },
21
22
  "main": "./dist/index.js",
22
23
  "dependencies": {
@@ -24,8 +25,8 @@
24
25
  "cli-progress": "^3.12.0",
25
26
  "commander": "^12.0.0",
26
27
  "ora": "^8.0.1",
27
- "@diffmind/shared-types": "0.3.1",
28
- "@diffmind/core-wasm": "0.3.1"
28
+ "@diffmind/core-wasm": "0.3.2",
29
+ "@diffmind/shared-types": "0.3.2"
29
30
  },
30
31
  "devDependencies": {
31
32
  "@types/cli-progress": "^3.11.5",