rollup-plugin-bundleutils

2.0.1 • Public • Published

rollup-plugin-bundleutils

NPM Package DeepScan

A set of functions commonly used after tree shaking.

Install

npm i -D rollup-plugin-bundleutils

# or

yarn add -D rollup-plugin-bundleutils

Usage

// rollup.config.js
import { timestamp, regex, babel, terser } from 'rollup-plugin-bundleutils';

export default {
    // ...
    plugins: [
        regex([
            [/^import\s.*[\r\n]+/gm, '']
        ]),
        babel({
            compact: false,
            plugins: ['@babel/plugin-proposal-class-properties']
        }),
        terser({
            output: {
                preamble: `// ${timestamp()}`
            }
        })
    ]
};

Exports

timestamp

import { timestamp } from 'rollup-plugin-bundleutils';

console.log(timestamp()); // 2017-09-19 4:55pm

regex

JavaScript String replace after tree shaking. Expects an Array of regexp|substr, newSubstr|function pairs.

// rollup.config.js
import { regex } from 'rollup-plugin-bundleutils';

export default {
    input: 'src/main.js',
    output: {
        file: 'public/bundle.js',
        format: 'es'
    },
    plugins: [
        regex([
            [/^[\r\n]+export\s.*/gm, '']
        ])
    ]
};

babel

Transpile bundle after tree shaking.

// rollup.config.js
import { babel } from 'rollup-plugin-bundleutils';

export default {
    input: 'src/main.js',
    output: {
        file: 'public/bundle.js',
        format: 'iife'
    },
    plugins: [
        babel({
            // Default
            presets: [
                ['@babel/preset-env', { modules: false }]
            ]
        })
    ]
};

terser [uglify|minify]

Minify bundle after tree shaking.

// rollup.config.js
import { terser } from 'rollup-plugin-bundleutils';

export default {
    input: 'src/main.js',
    output: {
        file: 'public/bundle.js',
        format: 'iife'
    },
    plugins: [
        terser()
    ]
};

Changelog

License

MIT

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.1
    6
    • latest

Version History

Package Sidebar

Install

npm i rollup-plugin-bundleutils

Weekly Downloads

456

Version

2.0.1

License

MIT

Unpacked Size

6.92 kB

Total Files

4

Last publish

Collaborators

  • pschroen