JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 44992
  • Score
    100M100P100Q155147F
  • License MIT

gulp stream to uglify with 'terser' (es6 supported).

Package Exports

  • gulp-uglify-es

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-uglify-es) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gulp-uglify-es

gulp stream to uglify with 'terser' (es6 supported).

terser is the new 'uglify-es'. uglify-es is no longer maintained.

Install

npm install --save-dev gulp-uglify-es

Usage

gulpfile.js

let gulp = require("gulp");
let rename = require("gulp-rename");
let uglify = require('gulp-uglify-es').default;

gulp.task("uglify", function () {
    return gulp.src("lib/bundle.js")
        .pipe(rename("bundle.min.js"))
        .pipe(uglify(/* options */))
        .pipe(gulp.dest("lib/"));
});

For documentation about the options-object, See the Uglify API Reference.

Source maps

To generate source maps, use gulp-sourcemaps.
Example:

let gulp = require("gulp");
let rename = require("gulp-rename");
var sourcemaps = require('gulp-sourcemaps');
let uglify = require('gulp-uglify-es').default;

gulp.task("uglify", function () {
    return gulp.src("lib/bundle.js")
        .pipe(rename("bundle.min.js"))
        .pipe(sourcemaps.init())
        .pipe(uglify())
        .pipe(sourcemaps.write()) // Inline source maps.
        // For external source map file:
        //.pipe(sourcemaps.write("./maps")) // In this case: lib/maps/bundle.min.js.map
        .pipe(gulp.dest("lib/"));
});