UNPKG

@softwareventures/maintain-project

Version:

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

6 lines 293 B
import { promises as fs } from "fs"; import { templatePath } from "./template.js"; export async function readTemplateDirectory(templateId, ...pathSegments) { return fs.readdir(templatePath(templateId, ...pathSegments), { withFileTypes: true }); } //# sourceMappingURL=read-directory.js.map