mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
282 B
TypeScript
15 lines
282 B
TypeScript
import * as gulp from "gulp";
|
|
import tsd = require("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);
|
|
});
|