mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
🧹 Clean up repository by removing development artifacts
- Remove CRUSH.md personal file - Remove Node.js artifacts: package.json, package-lock.json, bin/ directory - Remove Python lock file: uv.lock - Update .gitignore to prevent future inclusion of these artifacts - Maintain clean repository structure with only essential framework files 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
#!/usr/bin/env node
|
||||
const { run, detectPip } = require("./checkEnv");
|
||||
|
||||
let pipCmd = detectPip();
|
||||
if (!pipCmd) {
|
||||
console.error("❌ pip not found, cannot update.");
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
console.log("🔄 Updating SuperClaude from PyPI...");
|
||||
const result = run(pipCmd, ["install", "--upgrade", "SuperClaude"], { stdio: "inherit" });
|
||||
if (result.status !== 0) {
|
||||
console.error("❌ Update failed.");
|
||||
process.exit(1);
|
||||
}
|
||||
console.log("✅ SuperClaude updated successfully!");
|
||||
|
||||
Reference in New Issue
Block a user