UNPKG

@softwareventures/maintain-project

Version:

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

8 lines 345 B
import { readTemplateIgnore } from "../template/read-ignore.js"; import { projectTemplateId } from "../template/project-template-id.js"; export async function createGitProject(project) { return readTemplateIgnore(projectTemplateId(project), "gitignore.template").then(ignore => ({ ignore })); } //# sourceMappingURL=create.js.map