Socket
Socket
Sign inDemoInstall

uglifyjs-webpack-plugin

Package Overview
Dependencies
347
Maintainers
4
Versions
50
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    uglifyjs-webpack-plugin

UglifyJS plugin for webpack


Version published
Weekly downloads
601K
decreased by-4.17%
Maintainers
4
Created
Weekly downloads
 

Changelog

Source

1.0.0-beta.2 (2017-07-21)

Features

  • add support for parallelization && caching (options.parallel) (#77) (ee16639)
  • index: add options validation (schema-utils) (#80) (f19b2de)

<a name="1.0.0-beta.1"></a>

Readme

Source

npm node deps test coverage chat

UglifyJS Webpack Plugin

This plugin uses UglifyJS v3 to minify your JavaScript

ℹ️ webpack contains the same plugin under webpack.optimize.UglifyJsPlugin. The documentation is valid apart from the installation instructions

Install

npm i -D uglifyjs-webpack-plugin

Usage

webpack.config.js

const UglifyJSPlugin = require('uglifyjs-webpack-plugin')

module.exports = {
  plugins: [
    new UglifyJSPlugin()
  ]
}

Options

NameTypeDefaultDescription
test{RegExp|Array<RegExp>}/.js($|?)/iTest to match files against
include{RegExp|Array<RegExp>}undefinedFiles to include
exclude{RegExp|Array<RegExp>}undefinedFiles to exclude
parallel{Boolean|Object}falseUse multi-process parallel running and file cache to improve the build speed
sourceMap{Boolean}falseUse source maps to map error message locations to modules (This slows down the compilation) ⚠️ cheap-source-map options don't work with this plugin
uglifyOptions{Object}{...defaults}uglify Options
extractComments{Boolean|RegExp|Function<(node, comment) -> {Boolean|Object}>}falseWhether comments shall be extracted to a separate file, (see details (webpack >= 2.3.0)
warningsFilter{Function(source) -> {Boolean}}``Allow to filter uglify warnings

test

webpack.config.js

[
  new UglifyJSPlugin({
    test: /\.js($&#124;\?)/i
  })
]

include

webpack.config.js

[
  new UglifyJSPlugin({
    include: /\/includes/
  })
]

exclude

webpack.config.js

[
  new UglifyJSPlugin({
    exclude: /\/excludes/
  })
]

parallel

webpack.config.js

[
  new UglifyJSPlugin({
    parallel: true
  })
]
NameTypeDefaultDescription
cache{Boolean}node_modules/.cache/uglifyjs-webpack-pluginEnable file caching
workers{Boolean|Object}os.cpus().length - 1Number of concurrent runs, default is the maximum

webpack.config.js

[
  new UglifyJSPlugin({
    parallel: {
      cache: true
      workers: 2 // for e.g
    }
  })
]

ℹ️ Parallelization can speedup your build significantly and is therefore highly recommended

sourceMap

webpack.config.js

[
  new UglifyJSPlugin({
    sourceMap: true
  })
]

⚠️ cheap-source-map options don't work with this plugin

uglifyOptions

NameTypeDefaultDescription
ie8{Boolean}falseEnable IE8 Support
ecma{Number}undefinedSupported ECMAScript Version (5, 6, 7 or 8). Affects parse, compress && output options
parse{Object}{}Additional Parse Options
mangle{Boolean|Object}trueEnable Name Mangling (See Mangle Properties for advanced setups, use with ⚠️)
output{Object}{}Additional Output Options (The defaults are optimized for best compression)
compress{Boolean|Object}trueAdditional Compress Options
warnings{Boolean}falseDisplay Warnings

webpack.config.js

[
  new UglifyJSPlugin({
    uglifyOptions: {
      ie8: false,
      ecma: 8,
      parse: {...options},
      mangle: {
        ...options,
        properties: {
          // mangle property options
        }
      },
      output: {
        comments: false,
        beautify: false,
        ...options
      },
      compress: {...options},
      warnings: false
    }
  })
]

extractComments

{Boolean}

All comments that normally would be preserved by the comments option will be moved to a separate file. If the original file is named foo.js, then the comments will be stored to foo.js.LICENSE

{RegExp|String} or {Function<(node, comment) -> {Boolean}>}

All comments that match the given expression (resp. are evaluated to true by the function) will be extracted to the separate file. The comments option specifies whether the comment will be preserved, i.e. it is possible to preserve some comments (e.g. annotations) while extracting others or even preserving comments that have been extracted.

{Object}

NameTypeDefaultDescription
condition{Regex|Function}``Regular Expression or function (see previous point)
filename{String|Function}compilation.assets[file]The file where the extracted comments will be stored. Can be either a {String} or a {Function<(string) -> {String}>}, which will be given the original filename. Default is to append the suffix .LICENSE to the original filename
banner{Boolean|String|Function}/*! For license information please see ${filename}.js.LICENSE */The banner text that points to the extracted file and will be added on top of the original file. Can be false (no banner), a {String}, or a {Function<(string) -> {String} that will be called with the filename where extracted comments have been stored. Will be wrapped into comment

warningsFilter

webpack.config.js

[
  new UglifyJsPlugin({
    warningsFilter: (src) => true
  })
]

Maintainers


Steven Hargrove

Juho Vepsäläinen

Joshua Wiens

Michael Ciniawsky

Alexander Krasnoyarov

Keywords

FAQs

Last updated on 21 Jul 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc