git-notify
Version:
Communicate important updates to your team via git commit messages
9 lines (8 loc) • 321 B
TypeScript
/// <reference types="node" />
import * as Stream from 'stream';
import { Flags } from './types';
/**
* Reads given stream of git log messages and prints
* out any lines prefixed with the git-notify tag
*/
export default function showNotifications(messageStream: Stream.Readable, flags: Flags): Promise<void>;