@softwareventures/maintain-project
Version:
Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited
8 lines • 438 B
JavaScript
import { insert } from "../fs-stage/fs-stage.js";
import { copyFromTemplate } from "../template/copy.js";
import { projectTemplateId } from "../template/project-template-id.js";
export function writeRenovateConfig(project) {
const file = copyFromTemplate(projectTemplateId(project), "renovate.json.template");
return async (fsStage) => file.then(file => insert(fsStage, "renovate.json", file));
}
//# sourceMappingURL=write.js.map