-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathChangeLog
More file actions
1286 lines (867 loc) · 31.6 KB
/
ChangeLog
File metadata and controls
1286 lines (867 loc) · 31.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2026.03.14, v6.0.7
feature:
- 2a9d750 @putout/minify: @putout/printer v18.7.0: switch: space
2026.03.13, v6.0.6
feature:
- 3b7fd0a @putout/minify: remove-useless-spread: exclude querySelectorAll (#30)
- c615a96 @putout/minify: @putout/plugin-return v4.0.0
- c054b74 @putout/minify: @putout/plugin-regexp v14.0.0
2026.03.08, v6.0.5
feature:
- 3b3fe0e @putout/minify: merge-variables: exclude AssignmentExpression (coderaiser/minify#146)
- e56182a @putout/minify: @putout/plugin-minify v12.0.0
2026.03.04, v6.0.4
feature:
- 49bfbbc @putout/minify: @putout/plugin-variables v2.2.0
- 642381e @putout/minify: @putout/plugin-for-of v12.0.0
- b90eb82 @putout/minify: @putout/plugin-destructuring v2.0.0
- 174fa4a @putout/minify: @putout/plugin-conditions v9.0.2
- d459bad @putout/minify: superc8 v12.2.4
2026.02.19, v6.0.3
feature:
- 0f7457f @putout/minify: rendy v5.0.0
- 4bb1d54 @putout/minify: redlint v6.1.0
- de7e08f @putout/minify: putout v42.0.8
- c4e04c9 @putout/minify: madrun v13.0.0
- 73fa395 @putout/minify: eslint-plugin-putout v31.0.0
- 1508add @putout/minify: eslint v10.0.0
- 8f94dc0 @putout/minify: @putout/plugin-types v10.0.0
- 43b2efa @putout/minify: @putout/plugin-spread v3.0.0
- 00d7f85 @putout/minify: @putout/plugin-promises v19.0.0
- b63aae1 @putout/minify: @putout/plugin-esm v10.0.0
- 9905bc4 @putout/minify: @putout/plugin-declare v8.0.0
- 21c5b65 @putout/minify: @putout/plugin-remove-debugger v8.0.0
- fb5751b @putout/minify: @putout/plugin-remove-console v7.0.0
- 91eb545 @putout/minify: @putout/plugin-convert-to-arrow-function v5.0.1
- f722b67 @putout/minify: @putout/plugin-apply-template-literals v5.0.0
2026.01.28, v6.0.2
feature:
- e377809 @putout/minify: fullstore v4.0.0
- 3d1a76b @putout/minify: eslint-plugin-putout v30.0.1
- 926acf0 @putout/minify: @putout/plugin-types v9.0.0
- 222e9f1 @putout/minify: @putout/plugin-spread v2.0.0
- 2042c4a @putout/minify: @putout/plugin-esm v8.0.1
- 2f1a889 @putout/minify: @putout/plugin-declare v7.2.0
- 4d544c2 @putout/minify: @putout/eslint-flat v4.0.0
2026.01.11, v6.0.1
feature:
- 5328c44 @putout/minify: @putout/bundle v5.2.1
- e70f622 @putout/minify: @putout/plugin-simplify-ternary v9.0.0
- f1ff510 @putout/minify: minify v15.0.0
2026.01.04, v6.0.0
fix:
- 0a008c3 minify: obug
feature:
- ffc0b8c drop support of node < 22
- 60e1cc8 @putout/minify: supertape v12.0.0
- 8f67e88 @putout/minify: redlint v5.0.2
- e8a6b45 @putout/minify: madrun v12.1.0
2025.12.31, v5.7.1
feature:
- c268f11 @putout/minify: try-catch v4.0.4
- fb46cb7 @putout/minify: @putout/plugin-new v5.0.0
2025.12.31, v5.7.0
feature:
- ef85d15 @putout/minify: @putout/plugin-return v3.0.0
2025.12.27, v5.6.2
feature:
- 501d4f4 @putout/minify: @putout/plugin-regexp v13.1.0
- 66d0ada @putout/minify: @putout/plugin-for-of v11.0.0
2025.12.05, v5.6.1
fix:
- 1550713 @putout/minify: @putout/bundle/slim
2025.12.05, v5.6.0
feature:
- fcdebd9 @putout/minify: @putout/bundle v5.0.0
- abf3456 @putout/plugin-minify: 🐊Putout v411
- 0a08232 @putout/minify: putout v41.0.0
- f576fc5 @putout/minify: eslint-plugin-putout v29.0.2
- 95af934 @putout/minify: @putout/plugin-esm v6.0.0
- 5817905 @putout/minify-benchmark: esbuild v0.27.0
2025.11.24, v5.5.2
feature:
- 6d84cb0 @putout/minify: @putout/plugin-apply-shorthand-properties v7.2.0
2025.11.12, v5.5.1
feature:
- 6257b58 @putout/minify: @putout/plugin-for-of v10.0.0
2025.11.05, v5.5.0
feature:
- c58d04f @putout/minify: use printer from putout (coderaiser/minify#144)
2025.11.04, v5.4.0
feature:
- cad45ea @putout/minify: @rollup/plugin-commonjs v29.0.0
- 5ccb0df @putout/minify: @rollup/plugin-alias v6.0.0
- 97b57e3 @putout/minify: decrease bundle size (coderaiser/minify#144)
2025.09.23, v5.3.0
feature:
- d2e6172 @putout/minify: rollup: commonjs (coderaiser/minify#142)
- e8ea52f @putout/minify: @putout/plugin-declare v6.0.0
2025.08.25, v5.2.0
feature:
- d769d7f @putout/minify: @putout/plugin-convert-arguments-to-rest v4.0.0
- 72a71cb @putout/minify: update dependencies (coderaiser/minify#141)
- 46c7b86 @putout/minify: @putout/printer v15.20.0
- 49b2903 @putout/minify: @putout/plugin-remove-unused-variables v14.1.0
- a28b485 @putout/minify: @putout/plugin-remove-unreferenced-variables v6.0.0
- e810f3b @putout/minify: @putout/plugin-remove-unreachable-code v3.0.0
- 0e88740 @putout/minify: @putout/plugin-remove-empty v15.0.0
- 604791e @putout/minify: @putout/plugin-regexp v12.2.2
- 5fa07ee @putout/minify: @putout/plugin-promises v18.3.0
- 93ec52d @putout/minify: @putout/plugin-minify v11.0.0
- 7b8778f @putout/minify: @putout/plugin-merge-destructuring-properties v12.3.0
- 5ec57af @putout/minify: @putout/plugin-logical-expressions v8.0.0
- 2d6fac1 @putout/minify: @putout/plugin-esm v5.0.0
- b74712e @putout/minify: @putout/plugin-conditions v8.1.0
- 3b8959b @putout/minify: eslint-plugin-putout v28.0.4
2025.05.26, v5.1.2
fix:
- 3a86b6d minify: rm replace
2025.05.26, v5.1.1
fix:
- abba7a5 bundle
2025.05.26, v5.1.0
feature:
- 42433b9 @putout/minify: @putout/printer v14.8.0 (coderaiser/minify#137)
- 5880057 @putout/minify: eslint-plugin-putout v27.0.0
- 8244643 @putout/minify: @putout/plugin-simplify-ternary v8.0.0
- 62f7636 @putout/minify: @putout/plugin-reuse-duplicate-init v8.0.0
- b5a322e @putout/minify: @putout/plugin-remove-useless-variables v14.0.0
- b1a17e4 @putout/minify: @putout/plugin-remove-useless-spread v13.0.0
- 0d19c5a @putout/minify: @putout/plugin-remove-useless-arguments v12.0.0
- 202b4dc @putout/minify: @putout/plugin-remove-unused-variables v13.0.0
- 0de609f @putout/minify: @putout/plugin-remove-unused-expressions v12.0.0
- d583801 @putout/minify: @putout/plugin-remove-nested-blocks v9.0.0
- e3bcafc @putout/minify: @putout/plugin-merge-duplicate-functions v4.0.0
2025.04.18, v5.0.1
feature:
- de16e19 @putout/minify: putout v40.0.9
- 80fd948 @putout/minify: @putout/plugin-types v8.0.0
- 3b96431 @putout/minify: @putout/plugin-return v2.0.0
- 2dbc754 @putout/minify: @putout/plugin-regexp v11.0.0
- d933e36 @putout/minify: @putout/plugin-promises v17.0.0
- cd85293 @putout/minify: @putout/plugin-new v4.0.0
- 51d91a7 @putout/minify: @putout/plugin-merge-duplicate-functions v3.0.0
- 307dc26 @putout/minify: @putout/plugin-merge-destructuring-properties v11.0.0
- 758a5eb @putout/minify: @putout/plugin-esm v4.2.2
- 3aea02b @putout/minify: minify v14.0.0
2025.03.24, v5.0.0
feature:
- 226d386 @putout/minify: drop support of node < 20
- 498c3a6 @putout/minify: supertape v11.0.3
- 5b1b01b @putout/minify: redlint v4.0.0
- 323a299 @putout/minify: putout v39.0.11
- 62dfd1b @putout/minify: madrun v11.0.0
- 5bf66b9 @putout/minify: eslint-plugin-putout v26.1.0
- 62d8c40 @putout/minify: @putout/printer v14.1.1
- 459bdec @putout/minify: @putout/plugin-reuse-duplicate-init v7.0.0
- cfdb84a @putout/minify: @putout/plugin-remove-useless-variables v13.0.2
- f76f24c @putout/minify: @putout/plugin-remove-unreferenced-variables v5.0.0
- 50a7225 @putout/minify: @putout/plugin-regexp v10.0.0
- acfa07c @putout/minify: @putout/plugin-for-of v9.0.0
- fb17a08 @putout/minify: @putout/eslint-flat v3.0.0
2025.02.27, v4.12.3
feature:
- a026dd0 @putout/minify: @putout/plugin-minify v10.0.0
- f67f780 @putout/minify: eslint-plugin-putout v25.0.2
2025.02.17, v4.12.2
feature:
- a987c3b @putout/minify: @putout/printer v13.0.0
- eef1edf @putout/minify: @putout/plugin-remove-useless-arguments v11.0.0
- cc744b1 @putout/minify: @putout/plugin-remove-nested-blocks v8.0.0
- efe7b33 @putout/minify: @putout/plugin-declare v5.0.0
- 98684ba @putout/minify: @putout/plugin-for-of v8.0.0
- 8600ffb @putout/minify: @putout/plugin-types v7.0.0
2025.02.11, v4.12.1
feature:
- 7448925 @putout/minify: @putout/plugin-apply-template-literals v4.2.0
2025.02.11, v4.12.0
feature:
- bd28642 @putout/minify: minify v13.0.0
- ea5dca5 @putout/minify: @putout/plugin-remove-unused-expressions v11.0.0
- 97b9366 @putout/minify: @putout/plugin-remove-empty v14.0.0
- 879cd5c @putout/minify: @putout/plugin-apply-template-literals v4.0.0
- bcff09a @putout/minify: @putout/plugin-esm v2.0.0
- a7a230b @putout/minify: @putout/plugin-remove-unused-variables v12.0.0
- 70ffaba @putout/minify: @putout/plugin-remove-useless-spread v12.0.0
2025.01.29, v4.11.0
feature:
- feab63e @putout/minify: @putout/plugin-return v1.1.2
- 51631d8 @putout/minify: eslint-plugin-putout v24.0.0
- dd21173 @putout/minify: putout v38.0.0
2025.01.23, v4.10.0
feature:
- 415c3a7 @putout/minify: @putout/plugin-remove-unused-expressions v10.0.0
- e42af03 @putout/minify: @putout/plugin-remove-unused-variables v11.0.0
- f53d321 @putout/minify: @putout/plugin-remove-unreachable-code v2.0.0
- c9728d7 @putout/minify: @putout/plugin-remove-nested-blocks v7.0.0
- 9a18c48 @putout/minify: @putout/plugin-conditions v7.1.0
2025.01.14, v4.9.1
feature:
- fa58bb7 @putout/minify: @putout/printer v12.2.0
2025.01.10, v4.9.0
feature:
- 21407d1 @putout/minify: @putout/plugin-remove-useless-arguments v10.1.0
- 699d026 @putout/minify: @putout/plugin-types v6.1.0
- 8717a75 @putout/minify: @putout/plugin-for-of v7.1.0
- 30da16f @putout/minify: @putout/plugin-conditions v6.6.0
2024.12.24, v4.8.4
fix:
- 9321477 @putout/plugin-esm: merge-duplicate-imports (#29)
2024.12.21, v4.8.3
feature:
- 20191a4 @putout/minify: merge-duplicate-imports -> esm/merge-duplicate-imports
2024.12.19, v4.8.2
feature:
- cef224a @putout/minify: @putout/plugin-promises v16.0.0
2024.12.15, v4.8.1
feature:
- bba3521 @putout/minify: @rollup/plugin-node-resolve v16.0.0
- 979ce05 @putout/minify: putout v37.1.1
- 4b1ded4 @putout/minify: rollup-plugin-node-externals v8.0.0
2024.12.10, v4.8.0
feature:
- c0f2a69 @putout/minify: @putout/plugin-merge-destructuring-properties v10.0.0
- f29c277 @putout/minify: @putout/printer v11.0.0
- 4c82b28 @putout/minify: @putout/plugin-reuse-duplicate-init v6.0.0
- d1dea59 @putout/minify: @putout/plugin-logical-expressions v7.0.0
- ecccfff @putout/minify: minify v12.0.0
- 4003476 @putout/minify: @putout/plugin-remove-unused-variables v10.1.0
- 8c0b8ea @putout/minify: @putout/plugin-minify v9.0.0 (coderaiser/minify#132)
2024.09.29, v4.7.2
fix:
- d9737c9 @putout/minify: call-expression: parens (#28)
feature:
- 18012b5 @putout/minify: @putout/plugin-convert-arguments-to-rest v3.1.0 (#28)
- 25f253d @putout/minify: @putout/plugin-nodejs v12.0.0
- 0e593b9 @putout/minify: convert-arguments-to-rest: improve support (#28)
2024.09.27, v4.7.1
feature:
- 1d8e67c @putout/minify: @putout/plugin-convert-arguments-to-rest v3.1.0 (#28)
- 787cf00 @putout/minify: @putout/plugin-nodejs v12.0.0
2024.09.27, v4.7.0
feature:
- b2eacc9 @putout/minify: convert-arguments-to-reset: improve support (#28)
- a92ab77 @putout/minify: @putout/plugin-convert-arguments-to-rest v3.0.0
2024.09.26, v4.6.1
feature:
- 0619c7c @putout/minify: @putout/plugin-remove-useless-variables v12.5.0 (coderaiser/minify#128)
- 6d73c7e @putout/minify: @rollup/plugin-commonjs v28.0.0
- 614be7c @putout/minify: @rollup/plugin-replace v6.0.1
2024.09.16, v4.6.0
feature:
- e9fcd9a @putout/minify: quotes: add ability to override (coderaiser/minify#127)
2024.09.12, v4.5.2
fix:
- 777c0f4 disable BABEL_TYPES_8_BREAKING (#126, babel/babel#16829)
2024.09.12, v4.5.1
feature:
- cd6bf82 @putout/minify: eslint-plugin-putout v23.1.0
- 089c5c4 @putout/minify: @putout/plugin-remove-useless-arguments v9.0.0
- 008d73b @putout/minify: @putout/plugin-types v5.0.0
- a96c8ba @putout/minify: @putout/plugin-conditions v5.0.0
2024.07.18, v4.5.0
feature:
- f0f3d00 @putout/minify: swap (coderiaser/minify#125)
- 0e98f4c @putout/minify: @putout/plugin-remove-useless-variables v12.0.0
- 864ffa4 @putout/minify: putout v36.0.0
2024.07.11, v4.4.0
feature:
- 7105176 @putout/minify: @putout/printer v9.6.0 (coderaiser/minify#124)
- 77689ae minify: esbuild
2024.06.27, v4.3.1
feature:
- fbe26eb @putout/minify: @putout/plugin-remove-unused-expressions v9.0.0
- 6d32113 @putout/minify: @putout/plugin-remove-useless-return v7.0.0
2024.06.20, v4.3.0
feature:
- faa5bee @putout/minify: add fixCount
- 2990f0b get back mangle
- eccc805 @putout/minify: speed up, disable mangle, mergeVariables
2024.06.19, v4.2.0
feature:
- 29009d5 @putout/minify: speed up, disable mangle, mergeVariables
- 53241b8 @putout/minify: @putout/plugin-regexp v9.0.0
- b314369 @putout/minify: @putout/plugin-merge-destructuring-properties v9.0.0
- 8d1855a @putout/minify: get rid of couple passes
- b2c0190 add benchmark (#27)
2024.06.16, v4.1.0
feature:
- da367bd @putout/minify: add support of merge-assignment-expressions
- 55457b8 @putout/minify: @putout/eslint-flat v2.0.0
2024.06.13, v4.0.1
fix:
- 80b6aff @putout/minify: merge-variables: for-of
feature:
- fec011a @putout/minify: c8 v10.1.2
2024.06.13, v4.0.0
feature:
- ae2dc32 @putout/minify: disable: convertStrictEqualToEqual: turn of
- bcf5e5a convertStrictEqualToEqual: disabled (#26)
2024.06.12, v3.20.0
feature:
- 8e2431e @putout/minify: duplicate declaration (putout/minify#24)
- f28692a @putout/minify: extension: add
2024.06.12, v3.19.7
feature:
- 7852690 @putout/minify: merge-variables (#18, #21)
2024.06.10, v3.19.6
feature:
- 4a093ed @putout/minify: remove-unused-variables, const (#20, #22)
2024.06.10, v3.19.5
feature:
- d5dae16 @putout/minify: @putout/plugin-remove-unreferenced-variables v4.0.0 (putoutjs/minify#23)
2024.06.10, v3.19.4
feature:
- e862ca5 @putout/minify: @rollup/plugin-commonjs v26.0.1
- 1cdbec7 @putout/minify: @putout/plugin-apply-optional-chaining v6.0.0 (#19)
2024.06.09, v3.19.3
fix:
- be6c4ea @putout/minify: ternary, assign (#15)
2024.06.09, v3.19.2
feature:
- 233ff51 @putout/minify: merge-variables: void 0 (#17)
2024.06.09, v3.19.1
feature:
- b4440a7 @putout/minify: @putout/printer v9.0.3 (#15)
2024.06.07, v3.19.0
feature:
- f1b3a82 @putout/minify: get rid of extract-sequence-expressions (#15)
2024.06.07, v3.18.0
feature:
- a7d1f28 @putout/minify: options: mergeVariables (#18)
2024.06.07, v3.17.1
feature:
- 78daa88 @putout/minify: @putout/plugin-minify v8.9.1 (#13)
2024.06.07, v3.17.0
feature:
- a8210ab @putout/minify: @putout/printer v9.0.0 (#15)
- 7053bad @putout/minify: convert-return-to-sequence-expression (#15)
- b7d0f44 @putout/minify: @putout/printer v8.47.0 (#15)
2024.06.07, v3.16.0
feature:
- ef4c058 @putout/minify: convertStrictEqualToEqual: add option (#16)
2024.06.07, v3.15.0
feature:
- ae5220a @putout/minify: @putout/plugin-minify v8.8.1 (#17)
2024.06.06, v3.14.0
feature:
- 1ef8f21 @putout/minify: @putout/plugin-minify v8.7.0 (#13)
2024.06.05, v3.13.0
feature:
- dde4a35 @putout/minify: expand-bindings: add support of re-assign (#14)
- 5c1d145 @putout/plugin-minify: if logical nested (putoutjs/minify#12)
2024.06.05, v3.12.1
feature:
- 069710f @putout/plugin-minify: if logical nested (coderaiser/minify#12)
2024.06.05, v3.12.0
feature:
- 2ab4111 @putout/minify: improve support of converting if to logical (#12)
- 404c63a @putout/minify: @putout/plugin-remove-useless-variables v11.1.1
2024.05.28, v3.11.2
feature:
- 58caf38 @putout/minify: simplify
2024.05.28, v3.11.1
feature:
- 3561a0a minify: move promises to first transform
2024.05.28, v3.11.0
feature:
- 4dd3ea5 @putout/minify: @putout/plugin-logical-expressions v6.0.0
2024.05.21, v3.10.3
fix:
- 26e08b0 @putout/minify: node prefixes
2024.05.21, v3.10.2
feature:
- 39d969d @putout/plugin-minify: VariableDeclaration: LabeledStatement
2024.05.21, v3.10.1
feature:
- 1bdf816 @putout/minify: @putout/plugin-for-of v6.0.0
2024.05.21, v3.10.0
feature:
- a2d8ba1 @putout/minify: @putout/plugin-promises v15.0.0
2024.05.05, v3.9.0
feature:
- e2f2e78 @putout/minify: eslint v9.2.0
- faed80c @putout/minify: (coderaiser/minifyfor-each: improve support ConditionalExpression (coderaiser/minify#122)
- 6877de1 @putout/minify: @putout/plugin-remove-useless-spread v11.0.0
- b2be291 @putout/minify: @putout/plugin-for-of v5.0.0
- e74a8ad @putout/minify: @putout/plugin-declare v4.0.0
- f396fad @putout/minify: eslint-plugin-n v17.4.0
- 325b1c7 @putout/minify: @putout/plugin-types v4.0.0
- 81fe0d9 @putout/minify: @putout/plugin-remove-unused-variables v9.0.0
- cf5c0ca @putout/minify: @putout/plugin-remove-empty v12.1.0
- b04aacf @putout/minify: @putout/plugin-remove-debugger v7.0.0
2024.03.04, v3.8.5
fix:
- 6cf3c1d @putout/minify: bundle
2024.03.04, v3.8.4
fix:
- 2227a1f @putout/minify: exports
2024.03.04, v3.8.3
feature:
- 2accb6a keywords: printer
2024.03.04, v3.8.2
feature:
- 24a4e1f @putout/minify: @putout/printer v8.8.0
- 97ded07 @putout/minify: minify v11.1.0
2024.02.26, v3.8.1
feature:
- c22ee2b @putout/minify: @putout/plugin-minify v8.2.0 (coderaiser/minify#120)
2024.02.14, v3.8.0
feature:
- ea89537 @putout/minify: improve support of SwitchCase, ClassDeclaration (coderaiser/minify#119)
- e41a47c @putout/minify: rollup-plugin-node-externals v7.0.1
- 9379f46 @putout/minify: @putout/plugin-declare v3.0.0
- cd8389c @putout/minify: supertape v10.0.0
- e149f2b @putout/minify: @putout/plugin-apply-template-literals v3.0.0
2024.01.25, v3.7.0
feature:
- 3fe73f2 @putout/minify: @putout/plugin-minify v8.0.0 (coderaiser/minify#118)
2024.01.19, v3.6.1
fix:
- f83af84 get rid of build warning: (!) Plugin alias: rewrote acorn-stage3 to ./stub/acorn-stage3.js but was not an abolute path and was not handled by other plugins. This will lead to duplicated modules for the same path. To avoid duplicating modules, you should resolve to an absolute path.
- 44e614d increment (#8)
feature:
- 12a961a @putout/minify: putout v35.0.0
- d94d1b7 @putout/minify: add applyTemplateLiterals option (#10)
- d55f400 @putout/minify: @putout/plugin-merge-duplicate-imports v11.0.0
- eaa559b @putout/minify: @putout/printer v8.0.0
- 765c2ea @putout/minify: @putout/plugin-remove-unused-expressions v8.0.0
- d44e94a @putout/minify: @putout/plugin-remove-debugger v6.0.0
- 2167a2a @putout/plugin-extract-sequence-expressions: add (#196)
- ee06547 @putout/minify: @putout/plugin-extract-sequence-expressions v3.5.0
- b4761dc @putout/minify: @putout/plugin-remove-useless-spread v10.0.1
- 0b7520c @putout/minify: add simpmlify-ternary
2024.01.09, v3.6.0
feature:
- f21110d @putout/minify: add applyTemplateLiterals option (#10)
2024.01.09, v3.5.0
feature:
- 7498546 @putout/minify: @putout/plugin-merge-duplicate-imports v11.0.0
2024.01.09, v3.4.0
feature:
- 03a8058 @putout/minify: @putout/printer v8.0.0
- f9b7460 @putout/minify: @putout/plugin-remove-unused-expressions v8.0.0
2024.01.09, v3.3.0
feature:
- 337768f @putout/minify: @putout/plugin-remove-debugger v6.0.0
2024.01.09, v3.2.0
feature:
- b772844 @putout/plugin-extract-sequence-expressions: add (#196)
- cb1fa3b @putout/minify: @putout/plugin-extract-sequence-expressions v3.5.0
2024.01.08, v3.1.2
feature:
- 1c3ee33 @putout/minify: @putout/plugin-remove-useless-spread v10.0.1
2024.01.08, v3.1.1
fix:
- 28d15ea get rid of build warning: (!) Plugin alias: rewrote acorn-stage3 to ./stub/acorn-stage3.js but was not an abolute path and was not handled by other plugins. This will lead to duplicated modules for the same path. To avoid duplicating modules, you should resolve to an absolute path.
2024.01.08, v3.1.0
fix:
- 8619311 increment (#8)
feature:
- 289ae4a @putout/minify: add simpmlify-ternary
2024.01.08, v3.0.1
feature:
- 3aca048 @putout/minify: c8 v9.0.0
- 0444c21 @putout/minify: @putout/plugin-remove-unused-variables v8.1.0
- d28ccd4 @putout/minify: @putout/plugin-for-of v4.0.0
- 5fb5121 @putout/minify: @putout/plugin-promises v14.0.0
- 54de228 @putout/minify: @putout/printer v7.4.0
- 0747497 @putout/minify: eslint-plugin-putout v22.2.1
- c4379a6 @putout/minify: supertape v9.0.0
2023.12.10, v3.0.0
feature:
- 80a18bc drop support of node < 18
- ff882d8 @putout/minify: madrun v10.0.0
- 2e44adf @putout/minify: putout v34.0.0
2023.12.05, v2.11.0
feature:
- 2c82a4f @putout/minify: @putout/plugin-minify v6.2.0 (#6)
2023.12.05, v2.10.2
feature:
- d62d3d8 @putout/minify: @putout/plugin-minify v6.1.2
2023.12.04, v2.10.1
feature:
- e25d858 @putout/minify: simplify mangle-names
2023.12.04, v2.10.0
feature:
- a702856 @putout/minify: mangle-names (#6)
2023.12.03, v2.9.0
feature:
- c38a63c package: @putout/plugin-minify v6.0.0 (putoutjs/minify#6)
2023.11.21, v2.8.0
fix:
- d519b69 @putout/minify: single quotes escape (#117)
feature:
- 6ddd198 @putout/minify: rollup-plugin-polyfill-node v0.13.0
- 48fd00b @putout/minify: rollup v4.5.0
- 315c204 @putout/minify: @putout/plugin-remove-useless-return v6.0.0
- 6de62df @putout/minify: @putout/plugin-conditions v4.0.1
- 177ff87 @putout/minify: @putout/printer v6.4.1
2023.11.12, v2.7.0
feature:
- 152edc3 @putout/minify: @putout/plugin-remove-empty v11.0.0
- 5594fd4 @putout/minify: @putout/plugin-new v3.0.1
- 57eead5 @putout/minify: putout v33.0.0
2023.10.28, v2.6.1
feature:
- f1fa351 package: @putout/plugin-logical-expressions v5.0.0
2023.10.28, v2.6.0
feature:
- e10afca package: @putout/plugin-regexp v8.0.0
- 4d00faa package: @putout/printer v6.0.0
- 8b8d9e4 package: eslint-plugin-putout v21.0.1
2023.10.20, v2.5.0
feature:
- efda1d2 package: @putout/plugin-minify v5.1.0 (putoutjs/minify#5)
2023.10.17, v2.4.1
fix:
- ed0eef1 @putout/minify: mangle (coderaiser/minify#114)
feature:
- 369e39b package: rollup v4.1.4
- 2d8d902 package: rendy v4.1.3
2023.10.11, v2.4.0
feature:
- f12c1e0 @putout/minify: add ability to disable mangle (coderaiser/minify#114)
2023.10.11, v2.3.0
feature:
- df03b71 package: @putout/plugin-remove-useless-spread v9.0.0
- e24609c package: @putout/plugin-apply-optional-chaining v5.0.1
- e15a528 package: @putout/plugin-minify v5.0.0 (coderaiser/minify#114)
2023.09.27, v2.2.2
feature:
- a959154 package: @putout/printer v5.12.0
- 27afc84 package: eslint-plugin-putout v20.0.0
2023.09.15, v2.2.1
feature:
- 195015d package: @putout/plugin-apply-shorthand-properties v5.1.0
- a2d39d6 package: @putout/plugin-promises v13.0.0
- 9712268 package: @putout/plugin-merge-duplicate-functions v2.0.0
- 8178867 package: @putout/plugin-remove-useless-variables v10.0.0
2023.09.14, v2.2.0
feature:
- 94672a3 package: @putout/plugin-remove-unused-variables v7.0.0
- ae3bcfb package: putout v32.0.1
- 2086a40 package: @putout/plugin-conditions v3.0.0
2023.09.13, v2.1.1
feature:
- ab3a8c7 package: @putout/printer v4.1.0
2023.09.12, v2.1.0
feature:
- fc3e8ac package: @putout/plugin-minify v4.1.0 (coderaiser/minify#111)
- 4c809a2 package: @putout/plugin-apply-shorthand-properties v4.0.0
- 08e4458 package: @putout/plugin-for-of v3.0.0
- f5847b3 package: @putout/plugin-remove-useless-arguments v8.0.0
2023.08.29, v2.0.1
feature:
- dc10b4e @putout/minify: get back sync
2023.08.28, v2.0.0
feature:
- 0a9b934 @putout/minify: async
- 7acabad package: @putout/plugin-minify v4.0.0
2023.08.22, v1.50.2
feature:
- b8da22a package: @putout/plugin-types v3.0.0
2023.08.22, v1.50.1
feature:
- b5ebf45 package: @putout/plugin-promises v12.0.0
2023.08.21, v1.50.0
feature:
- 3018f9a package: eslint-plugin-putout v19.1.0
- 062cc96 package: @putout/plugin-logical-expressions v4.0.0
- 2cc7952 package: @putout/plugin-remove-unused-variables v6.0.2
- 211072a package: @putout/plugin-apply-optional-chaining v4.0.0
- 2aeaa1d package: @putout/plugin-declare v2.0.1
- 18332ca package: @putout/printer v3.6.0
- 12b0ea9 package: putout v31.2.2
- dc7c768 package: @putout/plugin-minify v3.0.0
2023.08.03, v1.49.0
feature:
- bac0226 package: @putout/plugin-minify v2.4.0 (coderaiser/minify#111)
2023.08.03, v1.48.0
feature:
- bf49789 package: @putout/printer v2.96.0 (coderaiser/minify#112)
2023.07.28, v1.47.0
feature:
- e244c70 @putout/plugin-minify: add @putout/plugin-remove-useless-variables
- 474968d package: @putout/plugin-remove-useless-variables v9.0.0
2023.07.25, v1.46.0
feature:
- b8221bd package: @putout/plugin-remove-useless-spread v8.0.1
- a1c3f75 package: @putout/plugin-logical-expressions v3.1.0
- 5d0126d package: @putout/plugin-conditions v2.2.0
- 0608d8a package: eslint-plugin-putout v18.2.0
- 802b9ee package: @putout/plugin-minify v2.0.0
2023.07.13, v1.45.0
feature:
- 94c9900 package: @putout/plugin-types v2.0.0
- fe8d64e package: @putout/plugin-remove-unused-expressions v7.0.0
- 166623a package: @putout/plugin-for-of v2.0.0
- b9a163e package: @putout/plugin-remove-unreferenced-variables v3.0.0
- e4a6285 package: nodemon v3.0.1
- 68bfe2f package: putout v30.4.0
2023.07.03, v1.44.1
feature:
- a94d71e package: @putout/printer v2.42.1 (coderaiser/minify#109)
2023.06.20, v1.44.0
feature:
- 06c0154 package: @putout/plugin-minify v1.40.0 (coderaiser/minify#107)
2023.06.19, v1.43.0
feature:
- a4d6ed7 package: @putout/printer v2.27.0 (coderaiser/minify#106)
2023.06.19, v1.42.0
feature:
- 8d09a93 package: @putout/plugin-minify v1.39.0 (coderaiser/minify#108)
- 1c63ebe package: @putout/printer v2.25.0 (coderaiser/minify#108)
2023.06.19, v1.41.0
feature:
- f6f3681 @putout/plugin-minify: shorten names (coderaiser/minify#109)
- fb6539f package: @rollup/plugin-commonjs v25.0.1
- 13dd48e package: c8 v8.0.0
2023.06.16, v1.40.0
feature:
- a3b3f4c package: @putout/printer v2.21.0 (coderaiser/minify#106)
2023.06.16, v1.39.1
feature:
- f25bbc2 package: @putout/printer v2.20.0
2023.06.16, v1.39.0
feature:
- 63f4009 @putout/minify: add ability to disable removeUselessSpread (coderaiser/minify#107)
2023.06.16, v1.38.0
feature:
- f2f0a1a package: @putout/plugin-remove-useless-spread v7.0.0
- 17ed136 package: @putout/plugin-reuse-duplicate-init v5.0.0
- 1e5d8a7 package: eslint-plugin-n v16.0.0
- d29a632 package: rollup-plugin-node-externals v6.1.1
- 6675c28 package: @putout/plugin-merge-destructuring-properties v8.0.0
2023.06.12, v1.37.1
feature:
- 8747987 package: @putout/printer v2.0.0
2023.06.05, v1.37.0
feature:
- acd7780 @putout/minify: add support of mangleClassNames (coderaiser/minify#104)
- da8b113 package: @putout/plugin-remove-useless-arguments v7.0.0
2023.06.05, v1.36.1
feature:
- 6e2cc03 package: @putout/plugin-apply-shorthand-properties v3.0.2
- 1fa3d13 package: @putout/plugin-minify v1.37.0
2023.06.05, v1.36.0
feature:
- 93b3cf8 package: @putout/plugin-minify v1.36.0
2023.06.04, v1.35.3
feature:
- be06a34 package: @putout/plugin-minify v1.35.1
2023.06.04, v1.35.2
feature:
- 83513ed package: @putout/plugin-minify v1.35.0
2023.06.04, v1.35.1
feature:
- d6a5d62 package: @putout/plugin-minify v1.34.0
2023.06.04, v1.35.0
feature:
- 5b1b020 package: @putout/plugin-minify v1.33.0
2023.06.02, v1.34.1
feature:
- 0c7575c package: @putout/plugin-minify v1.31.1
2023.06.02, v1.34.0
feature:
- 86991ce package: @putout/plugin-minify v1.31.0
2023.06.01, v1.33.0
feature:
- 0142edd package: @putout/plugin-minify v1.30.0
2023.06.01, v1.32.1
feature:
- 83b23a1 package: @putout/printer v1.128.1
2023.06.01, v1.32.0
feature:
- 4f21e6a package: @putout/plugin-reuse-duplicate-init v4.0.0
2023.06.01, v1.31.0
feature:
- 7b4ea06 package: @putout/plugin-merge-destructuring-properties v7.0.0
2023.06.01, v1.30.0
feature:
- c6a44f7 package: @putout/plugin-minify v1.28.0
2023.06.01, v1.29.1
feature:
- ad95da6 @putout/minify: drop tenko
2023.06.01, v1.29.0
feature:
- 64461b0 package: @putout/printer v1.128.0
2023.06.01, v1.28.1
feature:
- 9a24be6 package: @putout/plugin-minify v1.26.0