rollup-plugin-stats
v0.1.0
Published
> **Warning** > Under active development
Downloads
32
Readme
rollup-plugin-stats
Warning Under active development
Output Rollup stats JSON file
Install
npm install --dev rollup-plugin-stats
or
yarn add --dev rollup-plugin-stats
Configure
// rollup.config.js
const { rollupStats } = require('rollup-plugin-stats');
module.exports = {
plugins: [
// add it as the last plugin
rollupStats(),
],
};