Compile YUIDoc Documentation.
Getting Started
Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-contrib-yuidoc
Then add this line to your project's grunt.js
gruntfile:
grunt.loadNpmTasks('grunt-contrib-yuidoc');
Overview
Inside your grunt.js
file add a section named yuidoc
. Visit the YUIDoc project home for more information on YUIDocs and commenting syntax.
Parameters
object
options This controls how this task operates and should contain key:value pairs, see options below.
Options
Options correlate to YUIDoc config objects.
string|array
paths (required) What directory should be scanned to generate doc data.
string
outdir (required) Where to save the documentation.
Config Example
yuidoc: {
compile: {
"name": "Project Name",
"description": "Project Description",
"version": "1.0.2",
"url": "http://projecturl.com/",
options: {
paths: "path/to/source/code/",
outdir: "where/to/save/docs/"
}
}
}
--
Task submitted by George Pantazis.