grunt-doxdox

2.0.1 • Public • Published

grunt-doxdox

Generate documentation with doxdox.

Build Status NPM Version Greenkeeper badge

Installation

$ npm install grunt grunt-doxdox --save-dev

Usage

Basic Options

module.exports = function (grunt) {
 
    grunt.loadNpmTasks('grunt-doxdox');
 
    grunt.initConfig({
        'doxdox': {
            'markdown': {
                'inputs': ['facade.js'],
                'output': 'docs.md'
            }
        }
    });
 
    grunt.registerTask('default', ['doxdox']);
 
}

Custom Configuration Options

module.exports = function (grunt) {
 
    grunt.loadNpmTasks('grunt-doxdox');
 
    grunt.initConfig({
        'doxdox': {
            'html': {
                'inputs': ['script.js'],
                'output': 'docs/index.html',
                'config': {
                    'title': 'Sample Title',
                    'description': 'Lorem ipsum dolor sit amet, consectetur adipisicing elit',
                    'layout': 'docs/template.hbs',
                    'package': 'package.json'
                }
            }
        }
    });
 
    grunt.registerTask('default', ['doxdox']);
 
}

Dependencies (1)

Dev Dependencies (6)

Package Sidebar

Install

npm i grunt-doxdox

Weekly Downloads

16

Version

2.0.1

License

MIT

Last publish

Collaborators

  • neogeek