@langri-sha/projen-renovate
v0.4.4
Published
A [projen] component for authoring [Renovate] configurations.
Downloads
2
Readme
@langri-sha/projen-renovate
A projen component for authoring Renovate configurations.
Usage
npm install -D projen @langri-sha/projen-renovate
Add the Renovate configuration:
import { Project } from 'projen'
import { Renovate } from '@langri-sha/projen-renovate'
const project = new Project({
name: 'test',
})
new Renovate(project, {
addLabels: ['dependencies'],
})
project.synth()