UNPKG

js-pages

Version:

Custom Git script to compile JSDoc / ngdoc and deploy to gh-pages

13 lines (9 loc) 255 B
/** * Publish the documentation to the `gh-pages` branch * @return {Stream} */ gulp.task('gh-pages', [], function () { console.log('Pushing docs to gh-pages'); const ghpages = require('gh-pages'); ghpages.publish(config['gh-pages'].dest); });