UNPKG

release-please

Version:

generate release PRs based on the conventionalcommits.org spec

14 lines (13 loc) 424 B
import { Logger } from '../../util/logger'; import { DefaultUpdater } from '../default'; /** * Updates a Helm chart.yaml file. */ export declare class ChartYaml extends DefaultUpdater { /** * Given initial file contents, return updated contents. * @param {string} content The initial content * @returns {string} The updated content */ updateContent(content: string, logger?: Logger): string; }