Quick hack to include jsduck documentation in your app using gulp

bikesNearMe.Ionic http://bit.ly/TB4u18

Quick hack to include jsduck documentation in your app using gulp

var shell = require('gulp-shell');
gulp.task('docs', function () {
    console.log("[JSDuck] Creating documentation");
    return gulp.src('')
        .pipe(shell([
            'jsduck www/js/ --title "Creating Documentation"  --output docs'
        ]));
});

gulp.task('default', ['docs']);
3 Likes