shiva-code 0.8.3 → 0.8.4
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4185,7 +4185,7 @@ function buildClaudeArgs(project) {
|
|
|
4185
4185
|
return args2;
|
|
4186
4186
|
}
|
|
4187
4187
|
function sanitizeProjectName(name) {
|
|
4188
|
-
return name.replace(/[^a-zA-Z0-9_
|
|
4188
|
+
return name.replace(/[^a-zA-Z0-9_-]/g, "-").substring(0, 50);
|
|
4189
4189
|
}
|
|
4190
4190
|
async function spawnInTmux(projects, sessionName) {
|
|
4191
4191
|
const tmuxSession = sessionName || `shiva-${Date.now()}`;
|