mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +00:00
14 lines
270 B
JavaScript
14 lines
270 B
JavaScript
#!/usr/bin/env node
|
|
|
|
import * as proxy from './proxy';
|
|
import * as globalWorker from './workers/global';
|
|
|
|
proxy.bootstrap();
|
|
|
|
(async () => {
|
|
await globalWorker.start();
|
|
// istanbul ignore if
|
|
if ((global as any).renovateError) {
|
|
process.exitCode = 1;
|
|
}
|
|
})();
|