Files
DefinitelyTyped/gulp-tsd/gulp-tsd-tests.ts
Ryan Cavanaugh 33686b47c5 Lots of fixes
2016-05-04 16:30:29 -07:00

18 lines
284 B
TypeScript

import * as gulp from "gulp";
import * as tsd from "gulp-tsd";
gulp.task("tsd", () => {
gulp.src("gulp_tsd.json")
.pipe(tsd());
});
gulp.task("tsd:options", (callback: any) => {
tsd({
command: "reinstall",
config: "tsd.json"
}, callback);
});