node-gulp-4.0.2+~cs38.20.35/000077500000000000000000000000001415667007300150405ustar00rootroot00000000000000node-gulp-4.0.2+~cs38.20.35/LICENSE000077500000000000000000000021651415667007300160540ustar00rootroot00000000000000 MIT License Copyright (c) Microsoft Corporation. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE node-gulp-4.0.2+~cs38.20.35/README.md000077500000000000000000000013311415667007300163200ustar00rootroot00000000000000# Installation > `npm install --save @types/gulp` # Summary This package contains type definitions for Gulp (http://gulpjs.com). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp. ### Additional Details * Last updated: Tue, 06 Jul 2021 20:33:09 GMT * Dependencies: [@types/vinyl-fs](https://npmjs.com/package/@types/vinyl-fs), [@types/chokidar](https://npmjs.com/package/@types/chokidar), [@types/undertaker](https://npmjs.com/package/@types/undertaker) * Global values: none # Credits These definitions were written by [Drew Noakes](https://drewnoakes.com), [Juan Arroyave](http://jarroyave.co), and [Giedrius Grabauskas](https://github.com/GiedriusGrabauskas). node-gulp-4.0.2+~cs38.20.35/index.d.ts000077500000000000000000000062551415667007300167540ustar00rootroot00000000000000// Type definitions for Gulp 4.0 // Project: http://gulpjs.com // Definitions by: Drew Noakes // Juan Arroyave // Giedrius Grabauskas // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped import * as vfs from "vinyl-fs"; import * as chokidar from "chokidar"; import * as Undertaker from "undertaker"; import * as fs from "fs"; import { Duplex } from "stream"; declare namespace GulpClient { type Globs = string | string[]; type TaskFunction = Undertaker.TaskFunction; /** * @deprecated - Now use `TaskFunction`. */ type TaskCallback = TaskFunction; type TaskFunctionCallback = Undertaker.TaskCallback; interface Gulp extends Undertaker { /** * Emits files matching provided glob or array of globs. Returns a stream of Vinyl files that can be piped to plugins. * @param globs Glob or array of globs to read. * @param options Options to pass to node-glob through glob-stream. */ src: SrcMethod; /** * Can be piped to and it will write files. Re-emits all data passed to it so you can pipe to multiple folders. * Folders that don't exist will be created. * @param path The path (output folder) to write files to. Or a function that returns it, the function will be provided a vinyl File instance. */ dest: DestMethod; /** * Functions exactly like gulp.dest, but will create symlinks instead of copying a directory. * @param folder A folder path or a function that receives in a file and returns a folder path. */ symlink: typeof vfs.symlink; /** * Takes a path string, an array of path strings, a glob string or an array of glob strings as globs to watch on the filesystem. * Also optionally takes options to configure the watcher and a fn to execute when a file changes. * @globs A path string, an array of path strings, a glob string or an array of glob strings that indicate which files to watch for changes. * @opts Options that are passed to chokidar. * @fn Once async completion is signalled, if another run is queued, it will be executed. */ watch: WatchMethod; } interface WatchOptions extends chokidar.WatchOptions { /** * The delay to wait before triggering the fn. * Useful for waiting on many changes before doing the work on changed files, e.g. find-and-replace on many files. * @default 200 */ delay?: number | undefined; /** * Whether or not a file change should queue the fn execution if the fn is already running. Useful for a long running fn. * @default true */ queue?: boolean | undefined; } interface WatchMethod { (globs: Globs, fn?: Undertaker.TaskFunction): fs.FSWatcher; (globs: Globs, opts?: WatchOptions, fn?: Undertaker.TaskFunction): fs.FSWatcher; } type SrcMethod = typeof vfs.src; type DestMethod = typeof vfs.dest; } declare const GulpClient: GulpClient.Gulp; export = GulpClient; node-gulp-4.0.2+~cs38.20.35/package.json000077500000000000000000000021141415667007300173270ustar00rootroot00000000000000{ "name": "@types/gulp", "version": "4.0.9", "description": "TypeScript definitions for Gulp", "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp", "license": "MIT", "contributors": [ { "name": "Drew Noakes", "url": "https://drewnoakes.com" }, { "name": "Juan Arroyave", "url": "http://jarroyave.co" }, { "name": "Giedrius Grabauskas", "url": "https://github.com/GiedriusGrabauskas", "githubUsername": "GiedriusGrabauskas" } ], "main": "", "types": "index.d.ts", "repository": { "type": "git", "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/gulp" }, "scripts": {}, "dependencies": { "@types/undertaker": "*", "@types/vinyl-fs": "*", "chokidar": "^3.3.1" }, "typesPublisherContentHash": "b35639bea201ec6c8724c0fd22d8d63972da8311f1feb93caaca31e7337adc41", "typeScriptVersion": "3.6" }