UNPKG

@softwareventures/maintain-project

Version:

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

6 lines 250 B
import { promises as fs } from "fs"; import { resolve } from "path"; export async function readProjectDirectory(project, path) { return fs.readdir(resolve(project.path, path), { withFileTypes: true }); } //# sourceMappingURL=read-directory.js.map