Move IGulpPlugin into gulp namespace, Gulp extends orchestrator, and gulp#watch method returns NodeJS.EventEmitter

This commit is contained in:
tkQubo
2015-08-26 01:48:47 +09:00
parent 5948569d4e
commit fbdc1b9112
7 changed files with 291 additions and 265 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ gulp.task("tsd", () => {
.pipe(tsd());
});
gulp.task("tsd:options", callback => {
gulp.task("tsd:options", (callback: any) => {
tsd({
command: "reinstall",
config: "tsd.json"
+1
View File
@@ -7,6 +7,7 @@
/// <reference path="../gulp/gulp.d.ts" />
declare module "gulp-tsd" {
import gulp = require('gulp');
interface IOptions {
command?: string;