aboutsummaryrefslogtreecommitdiff
path: root/tools/tasks/tsd.ts
blob: bf38ad0d34fe563e83905c17f09ef48ed44eadef (plain)
1
2
3
4
5
6
7
export = function tsd(gulp, plugins) {
  return plugins.shell.task([
    'tsd reinstall --clean',
    'tsd link',
    'tsd rebundle'
  ]);
};