opinionated scaffolder for enabling Dependabot on a project
$ npm install @form8ion/dependabot-scaffolder --save-prod
- Defines a badge that shows whether Dependabot is enabled for the project
- Creates the config file for Dependabot, enabling auto-merging
⚠️ Currently supports only thejavascript
package_manager
import {lift, test, scaffold} from '@form8ion/dependabot-scaffolder';
await scaffold({projectRoot: process.cwd()});
if (await test({projectRoot: process.cwd()})) {
await lift({vcs: {owner: 'form8ion', name: 'the-repo'}});
}
path to the root of the project
owner
string (required) account name on the host service for the repositoryname
string (required) repository name
$ nvm install
$ npm install
$ npm test