Skip to content
Snippets Groups Projects
Select Git revision
21 results Searching

err-serializer.spec.ts

Blame
  • renovate.ts 279 B
    #!/usr/bin/env node
    
    import * as proxy from './proxy';
    import * as globalWorker from './workers/global';
    
    proxy.bootstrap();
    
    // eslint-disable-next-line @typescript-eslint/no-floating-promises
    (async (): Promise<void> => {
      process.exitCode = await globalWorker.start();
    })();