aboutsummaryrefslogtreecommitdiff
path: root/tools/tasks/tsd.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tasks/tsd.ts')
-rw-r--r--tools/tasks/tsd.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/tasks/tsd.ts b/tools/tasks/tsd.ts
new file mode 100644
index 0000000..bf38ad0
--- /dev/null
+++ b/tools/tasks/tsd.ts
@@ -0,0 +1,7 @@
+export = function tsd(gulp, plugins) {
+ return plugins.shell.task([
+ 'tsd reinstall --clean',
+ 'tsd link',
+ 'tsd rebundle'
+ ]);
+};