UNPKG

@softwareventures/maintain-project

Version:

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

6 lines 254 B
import { mapFailureFn } from "../result/result.js"; import { yarn } from "./yarn.js"; export async function yarnInstall(project) { return yarn(project).then(mapFailureFn(() => ({ type: "yarn-install-failed" }))); } //# sourceMappingURL=install.js.map