mirror of
https://github.com/renovatebot/renovate.git
synced 2025-02-10 11:13:16 +00:00
![Rhys Arkins](/assets/img/avatar_default.png)
All promise syntax has been replaced with async/await. `renovate` is now transpiled with `babel` to a `dist/` folder, which is the target of `main` and `start` in `package.json` now. `renovate` can be run in `node.js` v7 without transpilation using `npm run start-raw` Closes #77
5 lines
77 B
JavaScript
5 lines
77 B
JavaScript
#!/usr/bin/env node
|
|
|
|
const renovate = require('./index');
|
|
|
|
renovate.start();
|