mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
1914c187a6
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
21 lines
540 B
JavaScript
21 lines
540 B
JavaScript
#!/usr/bin/env node
|
|
|
|
import { logger } from './logger';
|
|
import * as proxy from './proxy';
|
|
import * as globalWorker from './workers/global';
|
|
|
|
// istanbul ignore next
|
|
process.on('unhandledRejection', (err) => {
|
|
logger.error({ err }, 'unhandledRejection');
|
|
});
|
|
|
|
proxy.bootstrap();
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
(async (): Promise<void> => {
|
|
process.exitCode = await globalWorker.start();
|
|
// istanbul ignore if
|
|
if (process.env.RENOVATE_X_HARD_EXIT) {
|
|
process.exit(process.exitCode);
|
|
}
|
|
})();
|