UNPKG

@softwareventures/maintain-project

Version:

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

7 lines (6 loc) 436 B
import type { Document } from "yaml"; import type { ProjectSource } from "../project/project.js"; import type { ReadYamlFailureReason } from "../project/read-yaml.js"; import type { Result } from "../result/result.js"; import type { File } from "../fs-stage/file.js"; export declare function modifyCiWorkflow(project: ProjectSource, modify: (workflow: Document.Parsed) => Document.Parsed): Promise<Result<ReadYamlFailureReason, File>>;