Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

MazeMap/jsdoc-brunch

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jsdoc-brunch

Adds JSDoc support to brunch.

Read more about JSDoc at the JSDoc homepage

##Why this package The JSDoc package is already simple to use, and you can easily implement it in your own automated build config script files. However, I wanted an even more simple and automated workflow for it, so I made a brunch-plugin to do the work for me. And now, you can too ^_^

Installing

run npm install --save jsdoc-brunch

##Brunch config (All config optional, so you can skip this if you want to)

Inside the Brunch config file config.js add these parameters under the plugins object as shown here:

plugins: {
    jsdoc: {
        input: "app/anySubDir", /* optional, default 'app' */
        destination: 'public/dir/to/docs', /* optional, default 'public/jsdocs' */
        recursive: false /* optional, default true */
        enabled: false /* optional, default true */
    }

The input specifies the location of the JS files to go through. (Default: "app")

The destination specifies the location you want the docs to end up. (Default: "public/jsdocs")

The recursive specifies if it should recursively scan the input folder. (Default: true)

The enabled allows you to disable jsdoc during testing, by setting this to false. (Default: true)

##Then what? Now, when Brunch compiles your code, it also tells JSDoc to search your specified input folder, and parse the js-files. It outputs it's files to the specified destination folder.

By defeault, the output is in the public folder, so if you are running the Brunch server, you can view the docs locally. As of 0.1.0, It even works with the built-in auto reload feature in Brunch ^^

##Todo This plugin is really just a very simple wrapper for the already simple JSDocs npm package.

Here are some stuff that you can do, if you know how :)

About

JSDoc plugin for Brunch.io

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 72.0%
  • CSS 28.0%