uglifyjs 2.4.15-4 source package in Ubuntu

Changelog

uglifyjs (2.4.15-4) unstable; urgency=medium

  * Fix code path.
  * Update copyright info:
    + Use License-Grant and License-Reference fields.
      Thanks to Ben Finney.
  * Add lintian override regarding license in License-Reference field.
    See bug#786450.

 -- Jonas Smedegaard <email address hidden>  Thu, 28 May 2015 20:21:11 +0200

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
web
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
uglifyjs_2.4.15-4.dsc 2.0 KiB 48affc4d306d290dd529de77fe292f8fca97634b97d7cee95a0e1bb947597536
uglifyjs_2.4.15.orig.tar.gz 78.4 KiB adba8023abe9eec879296e2e8363da6a4d5f024ca901d30ba7e33b0c59ac2a06
uglifyjs_2.4.15-4.debian.tar.xz 7.2 KiB 405158fdc5ba7e42b8ec7c9b4ee4634b7f75ef298971c3bbdf0c6affdea10e3d

No changes file available.

Binary packages built by this source

node-uglify: JavaScript parser, mangler/compressor and beautifier toolkit

 UglifyJS is a JavaScript compressor/minifier written in JavaScript. It
 also contains tools that allow one to automate working with JavaScript
 code:
 .
  * A parser which produces an abstract syntax tree (AST) from
    JavaScript code.
  * A code generator which outputs JavaScript code from an AST, also
    providing the option to get a source map.
  * A compressor (optimizer) - it uses the transformer API to optimize
    an AST into a smaller one.
  * A mangler - reduce names of local variables to (usually)
    single-letters.
  * A scope analyzer, which is a tool that augments the AST with
    information about where variables are defined/referenced etc.
  * A tree walker - a simple API allowing you to do something on every
    node in the AST.
  * A tree transformer - another API intended to transform the tree.
 .
 All the above utilities and APIs are defined in ~6500 lines of code
 (except for the effective generation of the source-map, which is
 handled by the source-map module). Compared to alternatives, UglifyJS
 is pretty small.