@kaitranntt/ccs 4.1.5 → 4.1.6
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/README.md +1 -1
- package/VERSION +1 -1
- package/bin/management/doctor.js +2 -2
- package/bin/utils/claude-symlink-manager.js +2 -2
- package/lib/ccs +1 -1
- package/lib/ccs.ps1 +1 -1
- package/package.json +1 -1
- package/scripts/postinstall.js +1 -1
package/README.md
CHANGED
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.1.
|
|
1
|
+
4.1.6
|
package/bin/management/doctor.js
CHANGED
|
@@ -366,7 +366,7 @@ class Doctor {
|
|
|
366
366
|
'CCS Symlinks',
|
|
367
367
|
'warning',
|
|
368
368
|
health.issues.join(', '),
|
|
369
|
-
'Run: ccs
|
|
369
|
+
'Run: ccs sync'
|
|
370
370
|
);
|
|
371
371
|
}
|
|
372
372
|
} catch (e) {
|
|
@@ -375,7 +375,7 @@ class Doctor {
|
|
|
375
375
|
'CCS Symlinks',
|
|
376
376
|
'warning',
|
|
377
377
|
'Could not check CCS symlinks: ' + e.message,
|
|
378
|
-
'Run: ccs
|
|
378
|
+
'Run: ccs sync'
|
|
379
379
|
);
|
|
380
380
|
}
|
|
381
381
|
}
|
|
@@ -214,10 +214,10 @@ class ClaudeSymlinkManager {
|
|
|
214
214
|
|
|
215
215
|
// Check target
|
|
216
216
|
if (!fs.existsSync(targetPath)) {
|
|
217
|
-
issues.push(`Not installed: ${item.target} (run 'ccs
|
|
217
|
+
issues.push(`Not installed: ${item.target} (run 'ccs sync' to install)`);
|
|
218
218
|
healthy = false;
|
|
219
219
|
} else if (!this._isOurSymlink(targetPath, sourcePath)) {
|
|
220
|
-
issues.push(`Not a CCS symlink: ${item.target} (run 'ccs
|
|
220
|
+
issues.push(`Not a CCS symlink: ${item.target} (run 'ccs sync' to fix)`);
|
|
221
221
|
healthy = false;
|
|
222
222
|
}
|
|
223
223
|
}
|
package/lib/ccs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
set -euo pipefail
|
|
3
3
|
|
|
4
4
|
# Version (updated by scripts/bump-version.sh)
|
|
5
|
-
CCS_VERSION="4.1.
|
|
5
|
+
CCS_VERSION="4.1.6"
|
|
6
6
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
7
7
|
readonly CONFIG_FILE="${CCS_CONFIG:-$HOME/.ccs/config.json}"
|
|
8
8
|
readonly PROFILES_JSON="$HOME/.ccs/profiles.json"
|
package/lib/ccs.ps1
CHANGED
|
@@ -12,7 +12,7 @@ param(
|
|
|
12
12
|
$ErrorActionPreference = "Stop"
|
|
13
13
|
|
|
14
14
|
# Version (updated by scripts/bump-version.sh)
|
|
15
|
-
$CcsVersion = "4.1.
|
|
15
|
+
$CcsVersion = "4.1.6"
|
|
16
16
|
$ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
17
17
|
$ConfigFile = if ($env:CCS_CONFIG) { $env:CCS_CONFIG } else { "$env:USERPROFILE\.ccs\config.json" }
|
|
18
18
|
$ProfilesJson = "$env:USERPROFILE\.ccs\profiles.json"
|
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -121,7 +121,7 @@ function createConfigFiles() {
|
|
|
121
121
|
claudeSymlinkManager.install();
|
|
122
122
|
} catch (err) {
|
|
123
123
|
console.warn('[!] CCS item installation warning:', err.message);
|
|
124
|
-
console.warn(' Run "ccs
|
|
124
|
+
console.warn(' Run "ccs sync" to retry');
|
|
125
125
|
}
|
|
126
126
|
console.log('');
|
|
127
127
|
|