A Rollup plugin that displays output bundle sizes.
This project was inspired by rollup-plugin-bundle-size.
npm install --save-dev rollup-plugin-output-size
// ESM
import outputSize from 'rollup-plugin-output-size';
// CommonJS
const { outputSize } = require('rollup-plugin-output-size');
Use the plugin, example rollup.config.js
:
import outputSize from 'rollup-plugin-output-size';
export default {
input: 'index.js',
output: { dir: 'dist' },
plugins: [outputSize(/* plugin options */)]
};
You can change and override the behavior of this plugin through its options. Note that all options are optional.
Type: boolean | OutputType[]
Default: false
Disable output types display.
Set to true
to disable output for all output types, or set an array to specify which output types will not be displayed.
Output types are: asset
, chunk
, and entry
.
Note: Both
chunk
andentry
output types areOutputChunk
s butentry
chunks haveisEntry
values oftrue
.
This option does not affect summary
output.
Type: boolean | OutputType[]
Default: true
Get gzipped sizes of output.
Set to false
to skip getting gzipped size, or set an array to only get gzipped sizes of specified output types.
Type: boolean
Default: false
Disable output. This will also skip the handle
and summary
callbacks.
Type: boolean | 'always' | SummaryCallback
Default: true
Display summary output.
- Set to
false
to disable summary output. - Set to
'always'
to force summary output even if there is only one (1) output. - Set a callback to override default summary output.
See types in
summary.types.ts
.
Note
The total gzip size of the summary output may not be entirely accurate as it is only the sum of all the individual output gzip sizes. If you need a more accurate size, you can use archiver to create an archive with all output contents and get the gzip size of that instead.
Type: (info: OutputInfo, output: OutputAsset | OutputChunk) => void | Promise<void>
Override the default logging of output info.
The second argument output
is the current Rollup output asset or chunk to log, while the first argument is the OutputInfo
.
See types in
output.types.ts
.
This package also includes some utility functions that you may find helpful, especially when making use of the handle
and summary
options.
Type: (info: OutputInfo) => string
Used to get the default display format of output info.
import outputSize, { format } from 'rollup-plugin-output-size';
export default {
input: 'index.js',
output: { dir: 'dist' },
plugins: [
outputSize({
handle(info) {
console.log(format(info));
}
})
]
};
[{type}] {path} is {hSize} → {gzip.hSize} (gzip)
Type: (input: string | Uint8Array) => Promise<Size>
Used to get the gzipped size of input.
import outputSize, { gzip } from 'rollup-plugin-output-size';
export default {
input: 'index.js',
output: { dir: 'dist' },
plugins: [
outputSize({
gzip: false,
async handle(info, output) {
const data = output.type === 'chunk' ? output.code : output.source;
const gzipInfo = await gzip(data);
console.log(info.path, gzipInfo);
}
})
]
};
Type: (summary: Summary) => string
Used to get the default display format of summary info.
import outputSize, { summarize } from 'rollup-plugin-output-size';
export default {
input: 'index.js',
output: { dir: 'dist' },
plugins: [
outputSize({
summary(summary) {
console.log(summarize(summary));
}
})
]
};
[total] {entry.hSize} + {chunk.hSize} + {asset.hSize} = {total.hSize}
[total] {gzip.entry.hSize} + {gzip.chunk.hSize} + {gzip.asset.hSize} = {gzip.total.hSize} (gzip)
Licensed under the MIT License.