{"library":"rollup-plugin-jsdoc","title":"rollup-plugin-jsdoc","description":"A Rollup plugin that wraps JSDoc to generate API documentation during the build process. Version 0.1.2 is the latest release and appears to be in early development with low release cadence. It passes JSDoc CLI options through Rollup, allowing integration of documentation generation into the build pipeline. Differentiators: minimalistic, no magic, direct JSDoc configuration.","language":"javascript","status":"active","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-jsdoc"],"cli":null},"imports":["import jsdoc from 'rollup-plugin-jsdoc'","const { default: jsdoc } = require('rollup-plugin-jsdoc');","import jsdoc from 'rollup-plugin-jsdoc'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// rollup.config.js\nimport jsdoc from 'rollup-plugin-jsdoc';\n\nexport default {\n  input: 'src/index.js',\n  output: {\n    file: 'dist/bundle.js',\n    format: 'cjs'\n  },\n  plugins: [\n    jsdoc({\n      args: ['-d', 'docs'],\n      config: 'jsdoc.config.json'\n    })\n  ]\n};","lang":"javascript","description":"Shows how to integrate the plugin into a Rollup config to generate JSDoc documentation in the 'docs' folder.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}