Top "Gulp-uglify" questions

gulp-uglify is a gulp plugin for files minification using UglifyJS.

Uglify SyntaxError: Unexpected token: punc ())

I am trying to use gulp in order to minify a folder containing JS files. However, one of the files …

javascript gulp gulp-uglify
GulpUglifyError:Unable to minify JavaScript

I am trying to minify my script files for which i am using gulp task runner And I am trying …

javascript gulp gulp-uglify
Gulp-uglify : throw er; // Unhandled 'error' event

i'm pretty new to gulp , and I follow tutorials in http://leveluptuts.com/tutorials/learning-gulp , I get this error: events.…

gulp-uglify
How to minify ES6 functions with gulp-uglify?

When I run gulp I get the following error: [12:54:14] { [GulpUglifyError: unable to minify JavaScript] cause: { [SyntaxError: Unexpected token: operator (>)] …

javascript node.js ecmascript-6 gulp gulp-uglify
Uglify throws Parse error

When i use gulp-uglify with browserify i get a error events.js:72 throw er; // Unhandled 'error' event ^ Error at new …

gulp gulp-uglify
Gulp uglify output min.js

The js file being compressed is output with the same filename. gulp.task('compressjs', function () { gulp.src('app/**/*.js') .pipe(…

gulp gulp-uglify
Gulp uglify unable to handle arrow functions

I'm trying to compress my project using gulp-uglify, however gulp seems to throw the error Unexpected token: punc () whenever it …

javascript gulp ecmascript-6 gulp-uglify
Uglification failed. Unexpected character '`'

gulp-uglify is unable to uglify this piece of code: var alertString = `<?xml version="1.0" encoding="UTF-8" ?> <document> &…

gulp gulp-uglify tvml tvjs
gulp-uglify events.js unhandled 'error' event

I'm getting this error. Running gulp yesterday worked perfectly fine, but this morning (changed NO code) and I'm getting this …

gulp gulp-uglify
Best way to concat and uglify js in gulp

I am trying to do automation to concat and uglify js in gulp. Here is my gulpfile.js: gulp.task(…

gulp gulp-concat gulp-sourcemaps gulp-uglify