/docpad-plugin-uglifyes

Minify JavaScript files with the uglify-es: true meta data

Primary LanguageCoffeeScriptOtherNOASSERTION

docpad-plugin-uglify

Travis CI Build Status NPM version NPM downloads Dependency Status Dev Dependency Status
Patreon donate button Open Collective donate button Gratipay donate button Flattr donate button PayPal donate button Bitcoin donate button Wishlist browse button
Slack community badge

Minify JavaScript files with the uglify: true meta data, using UglifyJS.

Install

Install this DocPad plugin by entering docpad install uglify into your terminal.

Usage

Create a JavaScript file with the uglify option:

/***
uglify: true
***/

var hello = "Hello World!";

Configure

Defaults

The default configuration for this plugin is the equivalent of adding the following UglifyJS options to your DocPad configuration file:

plugins:
	uglify:
		# Disable UglifyJS on the development environment.
		environments:
			development:
				enabled: false

		# Pass false to skip compressing entirely. Pass an object to specify custom
		# compressor options: http://lisperator.net/uglifyjs/compress .
		compress: {}

		# Pass false to skip mangling names.
		mangle: {}

Template Configuration

It is possible to override the default configuration on a per-template basis:

/***
uglify:
	mangle: false
***/

// The "hello" variable name will stay the same.
var hello = "Hello World!";

History

Discover the release history by heading on over to the HISTORY.md file.

Contribute

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

Backers

Maintainers

These amazing people are maintaining this project:

Sponsors

No sponsors yet! Will you be the first?

Patreon donate button Open Collective donate button Gratipay donate button Flattr donate button PayPal donate button Bitcoin donate button Wishlist browse button

Contributors

These amazing people have contributed code to this project:

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

License

Unless stated otherwise all works are:

and licensed under: