UNPKG

@coveo/semantic-monorepo-tools

Version:

A library of helper functions to do SemVer2 compliant releases from Conventional Commits in monorepos

11 lines (10 loc) 333 B
import { Debugger } from "debug"; import { SpawnOptions } from "node:child_process"; interface Options extends SpawnOptions { encoding?: "ascii" | "utf8" | "utf-8"; } export default function (command: string, args: string[], logger?: Debugger, options?: Options): Promise<{ stdout: string; stderr: string; }>; export {};