0.1.2 • Published 6 years ago

rollup-plugin-jsdoc v0.1.2

Weekly downloads
131
License
MIT
Repository
github
Last release
6 years ago

rollup-plugin-jsdoc

Build Status npm version

Rollup plugin of JSDoc, generating an API documentation for your library.

Installation

npm install -D rollup-plugin-jsdoc

Usage

// rollup.config.js
import jsdoc from 'rollup-plugin-jsdoc';

export default {
  input: './src/index.js',
  plugins: [
    jsdoc({
      args: ['-d', 'doc'],  // Command-line options passed to JSDoc, Note: use "config" to indicate configuration file, do not use "-c" or "--configure" in "args"
      config: 'jsdoc.config.json',  // Path to the configuration file for JSDoc. Default: jsdoc.json
    })
  ]
};

License

MIT

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago