A rollup plugin that summarizes the output of the build.
npm i -D rollup-plugin-summary
yarn add -D rollup-plugin-summary
pnpm add -D rollup-plugin-summary
File: rollup.config.js
import summary from "rollup-plugin-summary";
export default {
plugins: [summary()],
};
Read the full documentation to learn about options and more.
MIT