MCPcopy Index your code
hub / github.com/terinjokes/gulp-uglify

github.com/terinjokes/gulp-uglify @v3.0.2

Chat with this repo
repository ↗ · DeepWiki ↗ · release v3.0.2 ↗ · + Follow
4 symbols 9 edges 13 files 0 documented · 0% 118 cross-repo links updated 5y agov3.0.2 · 2019-03-01★ 1,21514 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

gulp-uglify

Minify JavaScript with UglifyJS3.

Installation

Install package with NPM and add it to your development dependencies:

npm install --save-dev gulp-uglify

Usage

var gulp = require('gulp');
var uglify = require('gulp-uglify');
var pipeline = require('readable-stream').pipeline;

gulp.task('compress', function () {
  return pipeline(
        gulp.src('lib/*.js'),
        uglify(),
        gulp.dest('dist')
  );
});

To help properly handle error conditions with Node streams, this project recommends the use of pipeline, from readable-stream.

Options

Most of the minify options from the UglifyJS API are supported. There are a few exceptions:

  1. The sourceMap option must not be set, as it will be automatically configured based on your Gulp configuration. See the documentation for Gulp sourcemaps.

Errors

gulp-uglify emits an 'error' event if it is unable to minify a specific file. The GulpUglifyError constructor is exported by this plugin for instanceof checks. It contains the following properties:

  • fileName: The full file path for the file being minified.
  • cause: The original UglifyJS error, if available.

Most UglifyJS error messages have the following properties:

  • message (or msg)
  • filename
  • line

To see useful error messages, see Why Use Pipeline?.

Using a Different UglifyJS

By default, gulp-uglify uses the version of UglifyJS installed as a dependency. It's possible to configure the use of a different version using the "composer" entry point.

var uglifyjs = require('uglify-js'); // can be a git checkout
                                     // or another module (such as `uglify-es` for ES6 support)
var composer = require('gulp-uglify/composer');
var pump = require('pump');

var minify = composer(uglifyjs, console);

gulp.task('compress', function (cb) {
  // the same options as described above
  var options = {};

  pump([
      gulp.src('lib/*.js'),
      minify(options),
      gulp.dest('dist')
    ],
    cb
  );
});

Core symbols most depended-on inside this repo

createError
called by 4
lib/create-error.js
createTestFile
called by 2
test/minify.js
createTestFile
called by 2
test/create-error.js
setup
called by 1
lib/minify.js

Shape

Function 4

Languages

TypeScript100%

Modules by API surface

test/minify.js1 symbols
test/create-error.js1 symbols
lib/minify.js1 symbols
lib/create-error.js1 symbols

For agents

$ claude mcp add gulp-uglify \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact