terser 1.1.18 → 1.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a5c3db93636a1f7a85d4fdea22d18a66cbe9f87f9af75a7fc56bb40a1d4d9a9
4
- data.tar.gz: 75b6c49f0cd54dbc001e6c7280bb4769252c8f8e715037fdb14f08461955c821
3
+ metadata.gz: 7185d1e264312605c30f6a7db59bdabd6c89381127b6ac8828ad644fe197cd10
4
+ data.tar.gz: cabd1e6d541a5ea97c3cc06fa9bb0310fb2a8379cd4049b1e02bafeab5b321b7
5
5
  SHA512:
6
- metadata.gz: c8293a32dc7993feaeda83f9c527a6ef52948561505504568dd069c339361f8d269550fba4d6bdcf8ec7c6ead484e914f3eba18225c245b07dcbfde76281b00d
7
- data.tar.gz: fbcc52316a528e354b0b20b5c5667118fc2988fd7d6129f7c84931e92d6d75bee03164e86bdc42122a8a24e738e0cb807ae79631d2f1786666f524bbf9c61a82
6
+ metadata.gz: d341f559c2453e97b8815ecbdfd976607e7ff6aaa94f2cedbdbbb9b9b253cc92481370233d178600becdb1c1b452fa16890de3b88c62d2a5f6f30fa3064c3ff5
7
+ data.tar.gz: 75eb897e01aae9f0613b59abc4c09c8c17b75b134ca8cbf829cd36629e792643263683526e1513069027bb0efb6bdf9e0cf20ac928540240ca374bbcb840ee68
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
1
  ## Unreleased
2
+ ## 1.1.19 (19 October 2023)
3
+ - update TerserJS to [5.22.0]
4
+ - enable passing terser options with Rails directly
5
+
2
6
  ## 1.1.18 (5 September 2023)
3
7
  - update TerserJS to [5.19.4]
4
8
 
data/README.md CHANGED
@@ -18,6 +18,15 @@ Rails.application.configure do
18
18
  config.assets.js_compressor = :terser
19
19
  end
20
20
  ```
21
+
22
+ Passing terser options
23
+
24
+ ```ruby
25
+ Rails.application.configure do
26
+ config.assets.terser = { compress: { drop_console: true } }
27
+ end
28
+ ```
29
+
21
30
  in `config/environments/production.rb`.
22
31
 
23
32
  ## Installation
@@ -80,8 +89,8 @@ Available options and their defaults are
80
89
  :indent_start => 0, # Starting indent level
81
90
  :width => 80, # Specify line width when beautifier is used (only with beautifier)
82
91
  :preamble => nil, # Preamble for the generated JS file. Can be used to insert any code or comment.
83
- :wrap_iife => false # Wrap IIFEs in parenthesis. Note: this disables the negate_iife compression option.
84
- :shebang => true # Preserve shebang (#!) in preamble (shell scripts)
92
+ :wrap_iife => false, # Wrap IIFEs in parenthesis. Note: this disables the negate_iife compression option.
93
+ :shebang => true, # Preserve shebang (#!) in preamble (shell scripts)
85
94
  :quote_style => 0, # Quote style, possible values :auto (default), :single, :double, :original
86
95
  :keep_quoted_props => false # Keep quotes property names
87
96
  },
@@ -97,7 +106,7 @@ Available options and their defaults are
97
106
  :regex => nil, # A regular expression to filter property names to be mangled
98
107
  :ignore_quoted => false, # Only mangle unquoted property names
99
108
  :debug => false, # Mangle names with the original name still present
100
- } # Mangle property names, disabled by default
109
+ }, # Mangle property names, disabled by default
101
110
  :compress => {
102
111
  :sequences => true, # Allow statements to be joined by commas
103
112
  :properties => true, # Rewrite property access using the dot notation
@@ -10,7 +10,7 @@ class Terser
10
10
 
11
11
  def initialize(options = {})
12
12
  options[:comments] ||= :none
13
- @options = options
13
+ @options = options.merge(Rails.application.config.assets.terser.to_h)
14
14
  @cache_key = -"Terser:#{::Terser::VERSION}:#{VERSION}:#{::Sprockets::DigestUtils.digest(options)}"
15
15
  @terser = ::Terser.new(@options)
16
16
  end
@@ -2,5 +2,5 @@
2
2
 
3
3
  class Terser
4
4
  # Current version of Terser.
5
- VERSION = "1.1.18"
5
+ VERSION = "1.1.19"
6
6
  end