1. rollup-plugin-uglify-es
Rollup plugin to minify generated bundle
rollup-plugin-uglify-es
Package: rollup-plugin-uglify-es
Created by: ezekielchentnik
Last modified: Sun, 26 Jun 2022 14:02:26 GMT
Version: 0.0.1
License: MIT
Downloads: 5,611
Repository: https://github.com/ezekielchentnik/rollup-plugin-uglify-es

Install

npm install rollup-plugin-uglify-es
yarn add rollup-plugin-uglify-es

rollup-plugin-uglify-es Travis Build Status

Rollup plugin to minify generated bundle.

Install

 npm i rollup-plugin-uglify-es -D

Usage

 import { rollup } from 'rollup';
import uglify from 'rollup-plugin-uglify-es';

rollup({
	entry: 'main.js',
	plugins: [
		uglify()
	]
});

Options

 uglify(options)

options – default: {}, type: object. UglifyJS API options

Thanks

Thanks to TrySound for rollup-plugin-uglify

License

MIT © Ezekiel Chentnik

Dependencies

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin