@cowprotocol/cow-sdk
Version:
<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>
41 lines (30 loc) • 725 B
Markdown
# rollup-plugin-bundle-size [](https://www.npmjs.com/package/rollup-plugin-bundle-size)
> A rollup plugin to show the size of the generated bundle(s).
## Installation
```bash
npm install --save-dev rollup-plugin-bundle-size
```
## Usage
### JS API
```js
const rollup = require('rollup');
const bundleSize = require('rollup-plugin-bundle-size');
rollup.rollup({
entry: 'src/index.js',
plugins: [
bundleSize()
]
}).then((bundle) => {
...
});
```
### Config File
```js
import bundleSize from 'rollup-plugin-bundle-size';
export default {
entry: 'src/index.js',
plugins: [
bundleSize()
]
}
```