mirror of
https://github.com/yamadashy/repomix.git
synced 2025-06-11 00:25:54 +03:00
58 lines
1.3 KiB
JavaScript
Executable File
58 lines
1.3 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const nodeVersion = process.versions.node;
|
|
const [major] = nodeVersion.split('.').map(Number);
|
|
|
|
const EXIT_CODES = {
|
|
SUCCESS: 0,
|
|
ERROR: 1,
|
|
};
|
|
|
|
if (major < 16) {
|
|
console.error(`Repomix requires Node.js version 16 or higher. Current version: ${nodeVersion}\n`);
|
|
process.exit(EXIT_CODES.ERROR);
|
|
}
|
|
|
|
function setupErrorHandlers() {
|
|
process.on('uncaughtException', (error) => {
|
|
console.error('Uncaught Exception:', error);
|
|
process.exit(EXIT_CODES.ERROR);
|
|
});
|
|
|
|
process.on('unhandledRejection', (reason) => {
|
|
console.error('Unhandled Promise Rejection:', reason);
|
|
process.exit(EXIT_CODES.ERROR);
|
|
});
|
|
|
|
function shutdown() {
|
|
process.exit(EXIT_CODES.SUCCESS);
|
|
}
|
|
|
|
process.on('SIGINT', () => {
|
|
console.log('\nReceived SIGINT. Shutting down...');
|
|
shutdown();
|
|
});
|
|
process.on('SIGTERM', shutdown);
|
|
}
|
|
|
|
(async () => {
|
|
try {
|
|
setupErrorHandlers();
|
|
|
|
const { run } = await import('../lib/cli/cliRun.js');
|
|
await run();
|
|
} catch (error) {
|
|
if (error instanceof Error) {
|
|
console.error('Fatal Error:', {
|
|
name: error.name,
|
|
message: error.message,
|
|
stack: error.stack,
|
|
});
|
|
} else {
|
|
console.error('Fatal Error:', error);
|
|
}
|
|
|
|
process.exit(EXIT_CODES.ERROR);
|
|
}
|
|
})();
|