terser 1.1.19 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/lib/terser.rb CHANGED
@@ -79,6 +79,7 @@ class Terser
79
79
  :negate_iife => true, # Negate immediately invoked function expressions to avoid extra parens
80
80
  :pure_getters => false, # Assume that object property access does not have any side-effects
81
81
  :pure_funcs => nil, # List of functions without side-effects. Can safely discard function calls when the result value is not used
82
+ :pure_new => false, # List of functions without side-effects. Can safely discard function calls when the result value is not used
82
83
  :drop_console => false, # Drop calls to console.* functions
83
84
  :keep_fargs => false, # Preserve unused function arguments
84
85
  :keep_classnames => false, # Prevents discarding or mangling of class names. Pass a regular expression to only keep class names matching that regex.
@@ -1,6 +1,8 @@
1
1
  // Set source-map.js sourceMap to terser.js MOZ_SourceMap
2
2
  MOZ_SourceMap = sourceMap;
3
3
 
4
+ var global = global || {};
5
+
4
6
  function comments(option) {
5
7
  if (Object.prototype.toString.call(option) === '[object Array]') {
6
8
  return new RegExp(option[0], option[1]);
@@ -47,7 +49,7 @@ function terser_wrapper(options) {
47
49
  inputs[inputFilename] = source;
48
50
 
49
51
  try {
50
- return Terser.minifySync(inputs, options, null);
52
+ return Terser.minify_sync(inputs, options, null);
51
53
  } catch (error) {
52
54
  const { message, filename, line, col, pos } = error;
53
55
  return {error: {message: message, filename: filename, line: line, col: col, pos: pos}}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terser
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.19
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Rosicky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-19 00:00:00.000000000 Z
11
+ date: 2024-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: execjs
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
139
  - !ruby/object:Gem::Version
140
140
  version: '0'
141
141
  requirements: []
142
- rubygems_version: 3.3.22
142
+ rubygems_version: 3.6.0.dev
143
143
  signing_key:
144
144
  specification_version: 4
145
145
  summary: Ruby wrapper for Terser JavaScript compressor