wormclaude 1.0.108 → 1.0.109

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.
package/dist/theme.js CHANGED
@@ -16,4 +16,4 @@ export const theme = {
16
16
  synType: '#a78bfa', // tip/sınıf adları, sabitler
17
17
  synProp: '#e0e0e0', // özellik/anahtar adları
18
18
  };
19
- export const VERSION = '1.0.108';
19
+ export const VERSION = '1.0.109';
package/dist/tools.js CHANGED
@@ -50,7 +50,10 @@ function runBashCapturingCwd(command, timeout) {
50
50
  const cwd = getBashCwd();
51
51
  const opts = { encoding: 'utf8', timeout, maxBuffer: 10 * 1024 * 1024, windowsHide: true, cwd };
52
52
  if (process.platform === 'win32') {
53
- const out = execSync(command, opts);
53
+ // stderr'i yakala: yoksa cmd.exe stderr'i terminale "inherit" eder (curl'ün "% Total"
54
+ // progress meter'ı, hata mesajları ekrana sızar). 2>&1 ile stdout'a birleştir → tek akış.
55
+ const _cmd = /2>&1|2>\s*nul/i.test(command) ? command : command + ' 2>&1';
56
+ const out = execSync(_cmd, opts);
54
57
  // best-effort: "cd <hedef>" / "cd /d <hedef>" (zincirsiz tek komut)
55
58
  const m = /^\s*cd\s+(?:\/d\s+)?"?([^"&|<>]+?)"?\s*$/i.exec(command);
56
59
  if (m) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wormclaude",
3
- "version": "1.0.108",
3
+ "version": "1.0.109",
4
4
  "description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
5
5
  "type": "module",
6
6
  "bin": {