UNPKG

@softwareventures/maintain-project

Version:

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

15 lines 546 B
import { basename, dirname, join } from "path"; import { readIgnore } from "../ignore/read.js"; import { readProjectDirectory } from "./read-directory.js"; import { readProjectText } from "./read-text.js"; export async function readProjectIgnore(project, name) { return readIgnore({ path: name, dirname, basename, join, readDirectory: async (path) => readProjectDirectory(project, path), readText: async (path) => readProjectText(project, path) }); } //# sourceMappingURL=read-ignore.js.map