npm install grunt-docco-plus





Grunt plugin for docco-plus.
``
npm install grunt-docco-plus --save-dev
``
Then add this line to your project's grunt.js gruntfile:
`javascript
grunt.loadNpmTasks('grunt-docco-plus');
`
Add the task config to the grunt initConfig block. All the options that are supported for docco-plus can be passed.
`javascript
'docco-plus': {
debug: {
src: ['test/*/.js'],
options: {
output: 'docs/'
}
}
}
``