Skip to content

A grunt plugin to generate javascript doc by running jsdoc-toolkit on your grunt projects.

License

Notifications You must be signed in to change notification settings

plumlee/grunt-jsdoc-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grunt-jsdoc-plugin Build Status

This plugin enables you to integrate the generation of comments based documentation into your Grunt build.

Install

You need grunt >= 0.4 as well as node and npm installed and running on your system.

You also need java installed and a valid JAVA_HOME environment variable set.

Install this grunt plugin next to your project's Gruntfile.js with:

npm install grunt-contrib-jsdoc

Documentation

Configuration

Configure the plugin to your project's Gruntfile.js.

First, add the jsdoc entry to the options of the initConfig method :

grunt.initConfig({
    jsdoc : {
        dist : {
            src: ['src/*.js', 'test/*.js'], 
            dest: 'doc'
        }
    }
});

The only supported options are

  • src : an array of pattern that matches the files to extract the documentation from. You can also add the pattern to a README.md file to include it in your doc as described there.
  • dest: the directory where the documentation will be generated (it will be created if needed).
  • config : (optional) a path to a jsdoc config file (refer the usejsdoc documentation below for more information).

Then, load the plugin

grunt.loadNpmTasks('grunt-contrib-jsdoc');

Documentation

The current version supports only jsdoc3 documentation style. The sources configured must contains valid jsdoc3 tags. Consult the usejsdoc website for the details.

Build

To generate the documentation, you need to call the jsdoc task :

$> grunt jsdoc

or integrate it to your build sequence :

grunt.registerTask('default', ['lint', 'test', 'jsdoc']);

Contributing

Any contribution is welcome! Please check the issues.

Release History

  • 0.1.0 First release, includes basic support of jsdoc3
  • 0.2.0 Migrate to grunt 0.4

License

Copyright (c) 2012 Bertrand Chevrier
Licensed under the MIT license.

About

A grunt plugin to generate javascript doc by running jsdoc-toolkit on your grunt projects.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%