UNPKG

@softwareventures/maintain-project

Version:

Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited

7 lines 424 B
import { insert } from "../fs-stage/fs-stage.js"; import { copyFromTemplate } from "../template/copy.js"; import { projectTemplateId } from "../template/project-template-id.js"; export function writeCommitlintConfig(project) { return async (fsStage) => copyFromTemplate(projectTemplateId(project), "commitlint.config.cjs").then(file => insert(fsStage, "commitlint.config.cjs", file)); } //# sourceMappingURL=write.js.map