1.0.7 • Published 8 years ago

build-doc v1.0.7

Weekly downloads
3
License
UNLICENSED
Repository
github
Last release
8 years ago

build-doc

This package is currently in BETA

Overview

This is a node package that defines gulp tasks that can be used to generate documentation from code. The jsdoc package is used for generating markdown documentation which can be included in a README.md file.

Guide

To install this package execute the following command in the console from within your project.

npm install --save build-doc

Once the package is installed you will need to create a gulpfile.js file within the root folder of your project if there isn't one already. Within this file you will register the gulp tasks that are defined within this package using the registerTasks function. The following is an example of this.

const doc = require('build-doc');

doc.registerTasks({
 glob: '**/*.[jt]s',
 inputDir: './src/local/',
 templateFile: './doc.md',
 outputDir: './',
 outputFile: 'README.md'
});

Once you have registered the doc tasks you can generate documentation using gulp. To generate documentation simply execute the following console command from within your project.

gulp doc

In addition to executing tasks from the console you can also chain the gulp doc tasks together with other gulp tasks to utilize the documentation functionality however it's needed.

Modules

build-doc (module)

Register gulp tasks used to generate documentation using jsdoc.

Functions

registerTasks(opts) ⇒ void

Register documentation generation tasks.

Parameters:

ParamTypeAttributesDescription
optsObjectThe configuration options.
opts.globString or Array.<String>Glob pattern relative to the inputDir that identifies the files to document.
opts.inputDirStringoptionalThe root directory that contains the files to create documentation for.
opts.templateFileStringoptionalA path to a file that is used as a template. When provided the template will be written out with the first occurance of the text {{jsdoc}} replaced with the markdown that is generated.
opts.outputDirStringoptionalThe output directory.
opts.outputFileStringThe file path relative to outputDir that the documentation is written to.
opts.tasksPrefixStringoptionalAn optional prefix to apply to task names.
opts.tasksDependenciesArray.<String>optionalOptional array of tasks names that must be completed before these registered tasks run.

Returns: void

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago