0.1.2 • Published 4 years ago

rollup-plugin-jsdoc v0.1.2

Weekly downloads
131
License
MIT
Repository
github
Last release
4 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

4 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago