Build API documentation.
var build = require( 'path/to/tools/build-docs' );Builds documentation.
function done( error ) {
if ( error ) {
throw error;
}
console.log( 'Success!' );
}
build( done );var build = require( 'path/to/tools/build-docs' );
build( clbk );
function clbk( error ) {
if ( error ) {
throw error;
}
console.log( 'Success!' );
}Usage: build-docs [options]
Options:
-h, --help Print this message.
-V, --version Print the package version.$ DEBUG=* build-docs