@softwareventures/maintain-project
Version:
Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited
7 lines • 410 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 writePrettierIgnore(project) {
return async (fsStage) => copyFromTemplate(projectTemplateId(project), ".prettierignore").then(file => insert(fsStage, ".prettierignore", file));
}
//# sourceMappingURL=write.js.map