backport
Version:
A CLI tool that automates the process of backporting commits
7 lines • 322 B
JavaScript
import Handlebars from 'handlebars';
import { getShortSha } from './github/commit-formatters.js';
export function registerHandlebarsHelpers() {
Handlebars.registerHelper('shortSha', getShortSha);
Handlebars.registerHelper('raw', (options) => options.fn());
}
//# sourceMappingURL=register-handlebars-helpers.js.map