handle gulp in seperate module

This commit is contained in:
2017-04-29 16:50:06 +02:00
parent 7eed9dd6d3
commit ed01ebeee8
4 changed files with 69 additions and 152 deletions

View File

@@ -5,14 +5,6 @@ export interface IVinylFile {
base: string;
path: string;
}
/**
* allows you to create a gulp stream
* from String, from an Array of Strings, from Vinyl File, from an Array of VinylFiles
* @param fileArg
* @returns stream.Readable
* @TODO: make it async;
*/
export declare let toGulpStream: (fileArg: string | string[] | IVinylFile | IVinylFile[], baseArg?: string) => any;
/**
* converts file to Object
* @param fileStringArg

File diff suppressed because one or more lines are too long