1.0.2 • Published 8 years ago

elixir-uglify v1.0.2

Weekly downloads
10
License
-
Repository
github
Last release
8 years ago

elixir-uglify

Installation


$ npm install elixir-uglify

Usage


Require the extension and call it using mix.uglify(). It will output a new file with the extension '.min.js' as well as source maps.

var elixir = require('laravel-elixir');
require('elixir-uglify');

elixir(function(mix)
{
	mix.scriptsIn("public/js")
		.uglify(
			"public/js/all.js", 		// File to uglify
			"public/js/"				// Output path
		);	
});

Run gulp.

$ gulp