chore: changing package name to @cloudcli-ai/cloudcli

This commit is contained in:
simosmik
2026-04-03 15:31:41 +00:00
parent 1628868470
commit ef51de259e
27 changed files with 500 additions and 36 deletions

View File

@@ -438,7 +438,7 @@ app.post('/api/system/update', authenticateToken, async (req, res) => {
// Run the update command based on install mode
const updateCommand = installMode === 'git'
? 'git checkout main && git pull && npm install'
: 'npm install -g @siteboon/claude-code-ui@latest';
: 'npm install -g @cloudcli-ai/cloudcli@latest';
const child = spawn('sh', ['-c', updateCommand], {
cwd: installMode === 'git' ? projectRoot : os.homedir(),