@kaitranntt/ccs 2.4.7 → 2.4.8
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/VERSION +1 -1
- package/bin/ccs.js +2 -1
- package/lib/ccs +1 -1
- package/lib/ccs.ps1 +1 -1
- package/package.json +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.4.
|
|
1
|
+
2.4.8
|
package/bin/ccs.js
CHANGED
|
@@ -13,10 +13,11 @@ const CCS_VERSION = require('../package.json').version;
|
|
|
13
13
|
|
|
14
14
|
// Execute Claude CLI with unified spawn logic
|
|
15
15
|
function execClaude(claudeCli, args) {
|
|
16
|
+
// Use shell only on Windows for .cmd/.bat compatibility
|
|
16
17
|
const child = spawn(claudeCli, args, {
|
|
17
18
|
stdio: 'inherit',
|
|
18
19
|
windowsHide: true,
|
|
19
|
-
shell:
|
|
20
|
+
shell: process.platform === 'win32'
|
|
20
21
|
});
|
|
21
22
|
child.on('exit', (code, signal) => {
|
|
22
23
|
if (signal) process.kill(process.pid, signal);
|
package/lib/ccs
CHANGED
package/lib/ccs.ps1
CHANGED
|
@@ -134,7 +134,7 @@ function Show-Help {
|
|
|
134
134
|
}
|
|
135
135
|
|
|
136
136
|
# Version (updated by scripts/bump-version.sh)
|
|
137
|
-
$CcsVersion = "2.4.
|
|
137
|
+
$CcsVersion = "2.4.8"
|
|
138
138
|
$ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
139
139
|
$ConfigFile = if ($env:CCS_CONFIG) { $env:CCS_CONFIG } else { "$env:USERPROFILE\.ccs\config.json" }
|
|
140
140
|
|