UNPKG

@softwareventures/maintain-project

Version:

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

6 lines 338 B
import { mapFailureFn } from "../result/result.js"; import { yarn } from "./yarn.js"; export async function setYarnLinkerToNodeModules(project) { return yarn(project, "config", "set", "nodeLinker", "node-modules").then(mapFailureFn(() => ({ type: "set-yarn-linker-failed" }))); } //# sourceMappingURL=set-linker-to-node-modules.js.map