gulp-jsduck

1.0.0 • Public • Published

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());
});

Readme

Keywords

Package Sidebar

Install

npm i gulp-jsduck

Weekly Downloads

24

Version

1.0.0

License

BSD-3-Clause

Last publish

Collaborators

  • rwhogg