Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-jsduck

rwhogg37BSD-3-Clause1.0.0

Gulp plugin for jsduck

gulp, jsduck, gulpplugin

readme

gulp-jsduck

A gulp plugin for jsduck

Build Status

Installing

Add gulp-jsduck as a dev dependency:

$ npm install --save-dev gulp-jsduck;

You'll also need to install the JSDuck gem:

$ gem install jsduck;

Previous versions of the jsduck module that this module depends on installed it by default, but since version 1.0.0 of both this module and jsduck that no longer happens.

Usage

gulp-jsduck can be used similarly to other Gulp plugins. Just pipe files to it and it will document them:

var gulp = require("gulp");
var GJSDuck = require("gulp-jsduck");
var gjsduck = new GJSDuck(["--out", "docs"]);

gulp.task("default", function()
{
    gulp.src("src/**.js")
        .pipe(gjsduck.doc());
});