0.3.0 • Published 4 years ago

jsdoc-webpack-plugin v0.3.0

Weekly downloads
255
License
MIT
Repository
github
Last release
4 years ago

jsdoc-webpack-plugin

WebPack plugin that runs jsdoc on your bundles

Usage

In webpack.config.js:

var webpack = require('webpack');
var JsDocPlugin = require('jsdoc-webpack-plugin');

module.exports = {
    /// ... rest of config
    plugins: [
        new JsDocPlugin({
            conf: 'jsdoc.conf.js',
            cwd: '.',
            preserveTmpFile: false,
            recursive: false
        })
    ]
}

There are two ways how this plugin recognizes the files

  1. It takes the information from the jsdoc config file "source.include"
  2. If no "source.include" provided, it takes the original files from your bundles and creates a temporary file
0.3.0

4 years ago

0.2.0

5 years ago

0.1.0

5 years ago

0.0.2

7 years ago

0.0.1

8 years ago