dimcode 0.3.18-beta.1 → 0.3.19-beta.0

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 +15 -1
  2. package/package.json +6 -6
package/bin/dim.mjs CHANGED
@@ -243,6 +243,10 @@ function findBinary(startDir, base, binary) {
243
243
  }
244
244
 
245
245
  function spawnBinary(target, forwardedArgs) {
246
+ const cwd = readCurrentDirectory()
247
+ if (!cwd)
248
+ process.exit(2)
249
+
246
250
  const env = {
247
251
  ...process.env,
248
252
  DIMCODE_NPM_PACKAGE: wrapperName,
@@ -254,7 +258,7 @@ function spawnBinary(target, forwardedArgs) {
254
258
 
255
259
  const result = childProcess.spawnSync(target, forwardedArgs, {
256
260
  stdio: 'inherit',
257
- cwd: process.cwd(),
261
+ cwd,
258
262
  env,
259
263
  windowsHide: false,
260
264
  })
@@ -281,3 +285,13 @@ function spawnBinary(target, forwardedArgs) {
281
285
  }
282
286
  process.exit(typeof result.status === 'number' ? result.status : 0)
283
287
  }
288
+
289
+ function readCurrentDirectory() {
290
+ try {
291
+ return process.cwd()
292
+ }
293
+ catch {
294
+ console.error('[dim] The current directory no longer exists or cannot be accessed.')
295
+ console.error('[dim] Change to an existing directory with cd, then run dim again.')
296
+ }
297
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dimcode",
3
- "version": "0.3.18-beta.1",
3
+ "version": "0.3.19-beta.0",
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.18-beta.1",
16
- "dimcode-darwin-x64": "0.3.18-beta.1",
17
- "dimcode-linux-arm64": "0.3.18-beta.1",
18
- "dimcode-linux-x64": "0.3.18-beta.1",
19
- "dimcode-windows-x64": "0.3.18-beta.1"
15
+ "dimcode-darwin-arm64": "0.3.19-beta.0",
16
+ "dimcode-darwin-x64": "0.3.19-beta.0",
17
+ "dimcode-linux-arm64": "0.3.19-beta.0",
18
+ "dimcode-linux-x64": "0.3.19-beta.0",
19
+ "dimcode-windows-x64": "0.3.19-beta.0"
20
20
  }
21
21
  }