uglify-js 3.17.0-1 source package in Ubuntu

Changelog

uglify-js (3.17.0-1) unstable; urgency=medium

  [ upstream ]
  * new release

  [ Jonas Smedegaard ]
  * update copyright info:
    + update coverage
    + drop superfluous alternate Source URI
  * update lintian overrides

 -- Jonas Smedegaard <email address hidden>  Wed, 24 Aug 2022 19:52:21 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
uglify-js_3.17.0-1.dsc 2.3 KiB 3717429c456b94ff78399a8cc3d559800a6711c913c9c76077abf20c9f82110e
uglify-js_3.17.0.orig.tar.gz 519.4 KiB 0ad6f637fba82e8b9173b3e5bb036da3d7cb9eeaaac9effcd6ce91c603ff7a44
uglify-js_3.17.0-1.debian.tar.xz 11.6 KiB 45e3183ac908671dfb416992609edc815e7618240d1fbeda5ffef48e33ec3a53

Available diffs

No changes file available.

Binary packages built by this source

libjs-uglify-js: JavaScript parser, mangler/compressor and beautifier - browser library

 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.
 .
 This package provides UglifyJS library
 directly usable in web browsers.

node-uglify-js: No summary available for node-uglify-js in ubuntu kinetic.

No description available for node-uglify-js in ubuntu kinetic.

uglifyjs: JavaScript parser, mangler/compressor and beautifier - CLI tool

 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.
 .
 This package provides the command-line tool uglifyjs.