claude-flow-tbowman01
Version:
Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)
22 lines (17 loc) • 566 B
JavaScript
// Simple script to update binary version info
import fs from 'fs';
import path from 'path';
try {
const packageJson = JSON.parse(fs.readFileSync('package.json', 'utf8'));
const version = packageJson.version;
console.log(`✅ Version updated to ${version}`);
// Create or update bin directory if needed
if (!fs.existsSync('bin')) {
fs.mkdirSync('bin', { recursive: true });
}
process.exit(0);
} catch (error) {
console.warn('⚠️ Version update skipped:', error.message);
process.exit(0);
}