gulp-print
Version:
Prints names of files to the console so that you can see what's going through the the gulp pipe.
11 lines (10 loc) • 333 B
TypeScript
/// <reference types="node" />
import * as stream from 'stream';
export interface FormatFunction {
(filepath: string): string;
}
export interface LogFunction {
(message: string): void;
}
export declare function setLogFunction(fn: LogFunction): void;
export default function gulpPrint(format?: FormatFunction): stream.Stream;