terser 1.1.4 → 1.1.8
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 +4 -4
- data/.rubocop.yml +52 -0
- data/CHANGELOG.md +11 -0
- data/Gemfile +2 -2
- data/lib/terser/version.rb +1 -1
- data/lib/terser.js +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f905b2a5a3da977caa3d769df1315e9e1c34f7d97722a7b1b73011eda3dd7ed2
|
|
4
|
+
data.tar.gz: 258fa0344a32ed8b7579261abdb8cd777c763daf4efd0579d96af3ec03389114
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d56c486079eda6e38878858995c788483c11dc1d0dcde5e92131e60a64e2794d1ac6c5d7613cf697bc850ad071b14fcccf654bbdf64ac69e315893e187d0b083
|
|
7
|
+
data.tar.gz: a3049f45390a5446a2d87ac74e48d64100243d26560e88a14d6d0c1c011ffd2f88de35d55b214c82f3cd2b67ba65c67f3e3dfa41da706b09f74717fff6cc4c12
|
data/.rubocop.yml
CHANGED
|
@@ -174,6 +174,52 @@ Lint/EmptyClass:
|
|
|
174
174
|
Enabled: true
|
|
175
175
|
Style/NilLambda:
|
|
176
176
|
Enabled: true
|
|
177
|
+
Gemspec/DateAssignment: # (new in 1.10)
|
|
178
|
+
Enabled: true
|
|
179
|
+
Layout/LineEndStringConcatenationIndentation: # (new in 1.18)
|
|
180
|
+
Enabled: true
|
|
181
|
+
Layout/SpaceBeforeBrackets: # (new in 1.7)
|
|
182
|
+
Enabled: true
|
|
183
|
+
Lint/AmbiguousAssignment: # (new in 1.7)
|
|
184
|
+
Enabled: true
|
|
185
|
+
Lint/DeprecatedConstants: # (new in 1.8)
|
|
186
|
+
Enabled: true
|
|
187
|
+
Lint/EmptyInPattern: # (new in 1.16)
|
|
188
|
+
Enabled: true
|
|
189
|
+
Lint/LambdaWithoutLiteralBlock: # (new in 1.8)
|
|
190
|
+
Enabled: true
|
|
191
|
+
Lint/NumberedParameterAssignment: # (new in 1.9)
|
|
192
|
+
Enabled: true
|
|
193
|
+
Lint/OrAssignmentToConstant: # (new in 1.9)
|
|
194
|
+
Enabled: true
|
|
195
|
+
Lint/RedundantDirGlobSort: # (new in 1.8)
|
|
196
|
+
Enabled: true
|
|
197
|
+
Lint/SymbolConversion: # (new in 1.9)
|
|
198
|
+
Enabled: true
|
|
199
|
+
Lint/TripleQuotes: # (new in 1.9)
|
|
200
|
+
Enabled: true
|
|
201
|
+
Lint/UnexpectedBlockArity: # (new in 1.5)
|
|
202
|
+
Enabled: true
|
|
203
|
+
Naming/InclusiveLanguage: # (new in 1.18)
|
|
204
|
+
Enabled: true
|
|
205
|
+
Style/EndlessMethod: # (new in 1.8)
|
|
206
|
+
Enabled: true
|
|
207
|
+
Style/HashConversion: # (new in 1.10)
|
|
208
|
+
Enabled: true
|
|
209
|
+
Style/HashExcept: # (new in 1.7)
|
|
210
|
+
Enabled: true
|
|
211
|
+
Style/IfWithBooleanLiteralBranches: # (new in 1.9)
|
|
212
|
+
Enabled: true
|
|
213
|
+
Style/InPatternThen: # (new in 1.16)
|
|
214
|
+
Enabled: true
|
|
215
|
+
Style/MultilineInPatternThen: # (new in 1.16)
|
|
216
|
+
Enabled: true
|
|
217
|
+
Style/QuotedSymbols: # (new in 1.16)
|
|
218
|
+
Enabled: true
|
|
219
|
+
Style/RedundantArgument: # (new in 1.4)
|
|
220
|
+
Enabled: true
|
|
221
|
+
Style/StringChars: # (new in 1.12)
|
|
222
|
+
Enabled: true
|
|
177
223
|
|
|
178
224
|
Performance/AncestorsInclude:
|
|
179
225
|
Enabled: true
|
|
@@ -203,3 +249,9 @@ Performance/StringInclude:
|
|
|
203
249
|
Enabled: true
|
|
204
250
|
Performance/Sum:
|
|
205
251
|
Enabled: true
|
|
252
|
+
Performance/MapCompact: # (new in 1.11)
|
|
253
|
+
Enabled: true
|
|
254
|
+
Performance/RedundantEqualityComparisonBlock: # (new in 1.10)
|
|
255
|
+
Enabled: true
|
|
256
|
+
Performance/RedundantSplitRegexpArgument: # (new in 1.10)
|
|
257
|
+
Enabled: true
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
## Unreleased
|
|
2
|
+
## 1.1.8 (25 November 2021)
|
|
3
|
+
- update TerserJS to [5.10.0]
|
|
4
|
+
|
|
5
|
+
## 1.1.7 (23 September 2021)
|
|
6
|
+
- update TerserJS to [5.9.0]
|
|
7
|
+
|
|
8
|
+
## 1.1.6 (15 September 2021)
|
|
9
|
+
- update TerserJS to [5.8.0]
|
|
10
|
+
|
|
11
|
+
## 1.1.5 (29 June 2021)
|
|
12
|
+
- update TerserJS to [5.7.1]
|
|
2
13
|
|
|
3
14
|
## 1.1.4 (27 June 2021)
|
|
4
15
|
- update TerserJS to [5.7.0]
|
data/Gemfile
CHANGED
data/lib/terser/version.rb
CHANGED