Skip to content

Instantly share code, notes, and snippets.

@ChrisBriggsy
Created August 25, 2015 02:22
Show Gist options
  • Save ChrisBriggsy/5d73d87ae079f4499d18 to your computer and use it in GitHub Desktop.
Save ChrisBriggsy/5d73d87ae079f4499d18 to your computer and use it in GitHub Desktop.
Gulp 101 - Automatically update your TypeScript definitions in Visual Studio 2015 - 2. Add the gulp task (gulpfile.js)
var gulp = require('gulp');
var tsd = require('gulp-tsd');
gulp.task('tsd', function () {
return gulp.src('./gulp_tsd.json').pipe(tsd());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment