1.0.0 • Published 9 years ago

gulp-jsduck v1.0.0

Weekly downloads
16
License
BSD-3-Clause
Repository
github
Last release
9 years ago

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

9 years ago

0.3.1

9 years ago

0.3.0

9 years ago

0.2.0

9 years ago

0.1.8

10 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago