A rollup plugin to minify javascript with Terser
A rollup plugin to minify javascript
Install rollup and terser first.
npm install rollup --save-dev
npm install terser --save-dev
npm install @lopatnov/rollup-plugin-uglify --save-dev
ESM import
import uglify from "@lopatnov/rollup-plugin-uglify";
CJS require
var uglify = require("@lopatnov/rollup-plugin-uglify");
File rollup.config.ts
export default {
//...
plugins: [
//...
uglify(),
],
};
export default {
//...
plugins: [
//...
uglify({
//options: IUglifyOptions
}),
],
};
uglify
function has optional argument options: IUglifyOptions
.
IUglifyOptions
is an interface, that extends MinifyOptions
of terser
package.
IUglifyOptions
contains:
include?: string | RegExp
exclude?: string | RegExp
A valid minimatch pattern, or array of patterns to include / exclude files. If include
is omitted or has zero length, filter will return true by default. Otherwise, an ID must match one or more of the minimatch patterns, and must not match any of the exclude
patterns.
Versions migration: 2.1.2 -> 2.1.4
rollup-pluginutils has moved and is now available at @rollup/pluginutils. The best way is to update dependency to @rollup/pluginutils
as in documentation or use version 2.1.2
that don’t have conflict with rollup-pluginutils
.
Contact me in LinkedIn, I will consider profitable business offers. I am Computer Software Engineer. I develop software of various complexity for the web. I would be glad to receive job offers.
License Apache-2.0
Copyright 2019-2023 Oleksandr Lopatnov