MCPcopy
hub / github.com/gulpjs/gulp / Gulp

Function Gulp

index.js:8–22  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6var watch = require('glob-watcher');
7
8function Gulp() {
9 Undertaker.call(this);
10
11 // Bind the functions for destructuring
12 this.watch = this.watch.bind(this);
13 this.task = this.task.bind(this);
14 this.series = this.series.bind(this);
15 this.parallel = this.parallel.bind(this);
16 this.registry = this.registry.bind(this);
17 this.tree = this.tree.bind(this);
18 this.lastRun = this.lastRun.bind(this);
19 this.src = this.src.bind(this);
20 this.dest = this.dest.bind(this);
21 this.symlink = this.symlink.bind(this);
22}
23util.inherits(Gulp, Undertaker);
24
25Gulp.prototype.src = vfs.src;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…