dimcode 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/bin/dim.mjs +3 -2
  2. package/package.json +6 -6
package/bin/dim.mjs CHANGED
@@ -23,9 +23,10 @@ try {
23
23
  catch {}
24
24
 
25
25
  // Inner binary file name shipped inside each platform sub-package's bin/.
26
- // dimcode bin/dimcode(.exe); goatchain-cli bin/goatchain(.exe).
26
+ // Only needed when the binary basename differs from the wrapper package name
27
+ // (goatchain-cli → bin/goatchain). dimcode and dimagent ship a binary named
28
+ // after the package, so they fall through to `wrapperName`.
27
29
  const BINARY_BASENAMES = {
28
- 'dimcode': 'dimcode',
29
30
  'goatchain-cli': 'goatchain',
30
31
  }
31
32
  const binaryBasename = BINARY_BASENAMES[wrapperName] || wrapperName
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dimcode",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "AI coding agent CLI and terminal coding assistant with an interactive TUI (beta channel)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,10 +12,10 @@
12
12
  "README.zh.md"
13
13
  ],
14
14
  "optionalDependencies": {
15
- "dimcode-darwin-arm64": "0.3.1",
16
- "dimcode-darwin-x64": "0.3.1",
17
- "dimcode-linux-arm64": "0.3.1",
18
- "dimcode-linux-x64": "0.3.1",
19
- "dimcode-windows-x64": "0.3.1"
15
+ "dimcode-darwin-arm64": "0.3.2",
16
+ "dimcode-darwin-x64": "0.3.2",
17
+ "dimcode-linux-arm64": "0.3.2",
18
+ "dimcode-linux-x64": "0.3.2",
19
+ "dimcode-windows-x64": "0.3.2"
20
20
  }
21
21
  }