UNPKG

@softwareventures/maintain-project

Version:

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

6 lines 280 B
import { promises as fs } from "fs"; import { templatePath } from "./template.js"; export async function readTemplateText(templateId, path, ...pathSegments) { return fs.readFile(templatePath(templateId, path, ...pathSegments), "utf-8"); } //# sourceMappingURL=read-text.js.map