UNPKG

@softwareventures/maintain-project

Version:

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

6 lines 325 B
import { JSDOM } from "jsdom"; import { readTemplateText } from "./read-text.js"; export async function readTemplateXml(templateId, path, ...pathSegments) { return readTemplateText(templateId, path, ...pathSegments).then(text => new JSDOM(text, { contentType: "application/xml" })); } //# sourceMappingURL=read-xml.js.map