UNPKG

gulp-dependents

Version:

Gulp plugin that tracks dependencies between files and adds any files that depend on the files currently in the stream, thus enabling incremental build of pcss, less, scss, sass, with extensibility points to support other file types.

9 lines (8 loc) 502 B
/// <reference types="node" /> import { IPluginConfig } from "./plugin-config"; /** * Creates a new instance of the plugin. * @param parserConfig The parser configuration use, null, undefined or empty string to use the default configuration, or an instance of a custom IDependencyParser. * @param pluginConfig The debug configuration use, or null or undefined to disable all debug options. */ export declare function plugin(parserConfig?: {}, pluginConfig?: IPluginConfig): NodeJS.ReadWriteStream;