UNPKG

easy-cli-framework

Version:

A framework for building CLI applications that are robust and easy to maintain. Supports theming, configuration files, interactive prompts, and more.

14 lines (12 loc) 240 B
import rollupConfig from './rollup.config'; import analyze from 'rollup-plugin-analyzer'; export default { ...rollupConfig, plugins: [ ...rollupConfig.plugins, analyze({ summaryOnly: true, limit: 0, }), ], };