-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
976 lines (569 loc) Β· 13.8 KB
/
ChangeLog
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
2024.03.19, v11.0.5
fix:
- cd6711b redrun: mjs -> js
2024.03.19, v11.0.4
feature:
- aa0f963 redrun: coupole npm -s
2024.03.19, v11.0.3
fix:
- 69e90f3 redrun: c8: dependencies -> devDependencies
2024.03.19, v11.0.2
feature:
- 34ab881 convert to ESM
- b4ba7c2 redrun: add support of `npm run -s`
- b1a6fca redrun: string-replace-async v3.0.2
2024.02.01, v11.0.1
feature:
- 5a6bef8 redrun: supertape v10.0.0
- 5fc0b7c redrun: madrun v10.0.1
- ff23fa9 redrun: putout v35.0.3
- 25d19df redrun: c8 v9.1.0
2023.12.12, v11.0.0
feature:
- 0333f52 redrun: drop support of node < 18
- f35f965 redrun: madrun v10.0.0
- 5a4235a redrun: parent-directories v3.0.0
- e7ce372 redrun: eslint-plugin-putout v22.1.0
- 49f7bde redrun: putout v34.0.8
- 032c7d9 redrun: supertape v9.0.0
2023.08.13, v10.2.0
feature:
- f7fca52 package: eslint-plugin-putout v19.0.4
- 76072f4 package: putout v31.1.0
- f8d95e3 redrun: exit with 1 when script not found
2023.07.12, v10.1.0
feature:
- b5859d4 package: nodemon v3.0.1
- dfaabe3 package: putout v30.3.1
- 2c3a6a7 package: c8 v8.0.0
- 75e21ee package: eslint-plugin-n v16.0.1
- c1fa1d9 package: eslint-plugin-putout v18.1.0
- 622bec9 package: putout v29.0.2
- 89098e5 package: supertape v8.3.0
- c7e8655 package: eslint-plugin-putout v16.2.1
- 4b5a544 package: putout v27.7.0
2022.08.06, v10.0.2
feature:
- (package) eslint-plugin-n v15.2.4
- (package) coveralls v3.1.1
- (package) madrun v9.0.6
- (package) eslint-plugin-putout v16.0.1
- (package) supertape v7.6.0
- (package) yargs-parser v21.1.1
- (package) putout v27.0.1
- (package) eslint v8.21.0
- (package) eslint-plugin-putout v15.1.1
2022.04.06, v10.0.1
fix:
- (redrun) engines
feature:
- (package) eslint-plugin-putout v14.8.0
2022.02.17, v10.0.0
feature:
- (package) supertape v7.0.1
- (package) putout v25.0.0
- (package) madrun v9.0.0
- (package) yargs-parser v21.0.0
- (package) putout v24.1.0
- (package) eslint-plugin-putout v13.0.1
- (package) eslint-plugin-putout v11.6.0
- (package) putout v22.0.0
- (package) eslint v8.0.0-beta.1
- (package) eslint-plugin-putout v9.3.0
- (package) putout v19.7.1
- (package) supertape v6.1.0
2021.05.09, v9.0.1
feature:
- (package) supertape v5.4.0
- (package) putout v17.1.0
- (package) parent-dirs v2.0.0
- (package) putout v15.1.1
- (package) eslint-plugin-putout v7.1.1
- (package) putout v14.1.3
- (package) supertape v4.6.0
- (package) putout v13.3.0
- (package) putout v12.1.0
- (package) supertape v3.7.3
2020.11.27, v9.0.0
feature:
- (package) madrun v8.0.0
- (redrun) asyncify
- (package) eslint-plugin-putout v6.1.0
- (package) putout v11.0.5
2020.09.11, v8.0.3
feature:
- (package) yargs-parser v20.0.0
2020.08.10, v8.0.2
fix:
- (redrun) replace: madrun: rm useless code
feature:
- (package) yargs-parser v19.0.1
2020.06.26, v8.0.1
feature:
- (package) putout v9.1.0
- (package) supertape v2.0.1
- (package) eslint v7.3.1
- (package) eslint-plugin-putout v5.0.1
- (package) @cloudcmd/stub v3.1.0
- (package) madrun v7.0.0
2020.05.04, v8.0.0
feature:
- (package) madrun v6.0.0
- (package) eslint-plugin-putout v4.0.0
- (package) putout v8.0.0
- (redrun) drop support of node < 10
2020.03.25, v7.1.20
feature:
- (package) fullstore v3.0.0
2020.03.08, v7.1.19
feature:
- (package) yargs-parser v18.1.0
- (package) readjson v2.0.1
2020.02.24, v7.1.18
feature:
- (package) try-catch v3.0.0
2020.02.10, v7.1.17
feature:
- (package) yargs-parser v17.0.0
- (package) eslint-plugin-node v11.0.0
- (package) nyc v15.0.0
2019.12.21, v7.1.16
feature:
- (package) for-each-key v2.0.0
2019.12.21, v7.1.15
feature:
- (package) rm unused jessy
2019.11.21, v7.1.14
feature:
- (package) envir v2.0.0
2019.11.21, v7.1.13
feature:
- (package) rm unused all-object-keys
- (package) nodemon v2.0.0
2019.11.06, v7.1.12
feature:
- (package) putout v7.0.0
- (package) eslint-plugin-putout v3.0.0
- (package) madrun v5.0.0
2019.10.27, v7.1.11
feature:
- (package) yargs-parser v16.0.0
2019.10.25, v7.1.10
feature:
- (package) madrun v4.0.0
2019.10.07, v7.1.9
feature:
- (package) putout v6.12.1
- (package) yargs-parser v15.0.0
- (package) currify v4.0.0
2019.09.12, v7.1.8
feature:
- (package) somefilter v3.0.0
- (package) fullstore v2.0.2
2019.09.07, v7.1.7
feature:
- (package) yargs-parser v14.0.0
- (package) eslint-plugin-node v10.0.0
2019.08.30, v7.1.6
feature:
- (package) madrun v3.0.1
- (package) putout v5.10.2
- (package) eslint-plugin-putout v2.0.0
- (package) eslint v6.1.0
- (package) eslint-plugin-node v9.0.1
- (package) nyc v14.1.1
- (package) putout v4.2.2
2019.02.15, v7.1.5
feature:
- (package) madrun v2.0.0
2019.02.04, v7.1.4
feature:
- (package) yargs-parser v13.0.0
2019.02.01, v7.1.3
fix:
- (redrun) madrun.js support
2019.02.01, v7.1.2
feature:
- (package) yargs-parser v12.0.0
2019.01.25, v7.1.1
fix:
- (replace) rm unused
2019.01.25, v7.1.0
feature:
- (redrun) add support of madrun
2018.11.12, v7.0.3
feature:
- (package) eslint-plugin-node v8.0.0
- (package) yargs-parser v11.1.0
2018.10.09, v7.0.2
fix:
- (package) back to working yargs-parser v10
- (redrun) rm console.log
2018.10.09, v7.0.1
feature:
- (package) currify v3.0.0
2018.09.27, v7.0.0
feature:
- (package) debug v4.0.1
- (redrun) drop support of node < 8
2018.09.24, v6.0.7
feature:
- (package) squad v3.0.0
- (package) nyc v13.0.1
- (package) add eslint-plugin-node
- (package) eslint v5.1.0
2018.06.07, v6.0.6
feature:
- (package) debug v3.1.0: regular expression ddos
2018.06.04, v6.0.5
fix:
- (redrun) one-line infinite loop detect
feature:
- (package) nyc v12.0.2
2018.04.18, v6.0.4
fix:
- (quote-args) do not add quotes when there is one of different type
2018.04.17, v6.0.3
fix:
- (redrun) parse: quotes after --
2018.04.05, v6.0.2
feature:
- (package) yargs-parser v10.0.0
- (package) for-each-key
2018.03.09, v6.0.1
fix:
- (redrun) infinite -> Infinite
2018.03.07, v6.0.0
feature:
- (redrun) drop support of node < 4, legacy
- (redrun) add ability to determine infinite loop
2018.02.22, v5.10.5
fix:
- (redrun) somefilter: node v4 support
2018.02.22, v5.10.4
fix:
- (redrun) npm run script not found: null -> not found
feature:
- (package) somefilter v2.0.0
2018.02.16, v5.10.3
feature:
- (package) squad v2.0.0
2018.02.08, v5.10.2
fix:
- (package) babel-preset-env: dependencies -> devDependencies
2018.02.08, v5.10.1
feature:
- (package) yargs-parser v9.0.2
- (package) babel-preset-env v1.6.1
- (package) try-catch v2.0.0
2017.11.08, v5.10.0
feature:
- (redrun) add support of npx (#8)
2017.10.05, v5.9.18
feature:
- (package) yargs-parser v8.0.0
- (package) coveralls v3.0.0
2017.09.01, v5.9.17
feature:
- (package) env -> envir
2017.08.09, v5.9.16
feature:
- (package) debug v3.0.0
2017.06.12, v5.9.15
fix:
- (redrun) exit before all scripts done in mac os when curl used (#7)
feature:
- (package) eslint v4.0.0
- (package) scripts: prewisdom: rm package-lock.json
- (package) nyc v11.0.1
2017.05.24, v5.9.14
fix:
- (redrun) inner args
- (env) no config
feature:
- (get-body) rm unused code
- (gitignore) add swp
2017.05.24, v5.9.13
feature:
- (redrun) storage -> fullstore
2017.05.10, v5.9.12
feature:
- (package) yargs-parser v7.0.0
2017.03.20, v5.9.11
fix:
- (redrun) currify -> currify/legacy
2017.03.07, v5.9.10
fix:
- (get-body) pre + post + symbols: regexp
feature:
- (package) watch:lint
2017.02.21, v5.9.9
feature:
- (package) includes -> indexOf
- (travis) node: rm 4, 5
2017.02.20, v5.9.8
fix:
- (package) array.includes in node <= 6
2017.02.20, v5.9.7
feature:
- (package) yargs-parser v5.0.0
2017.02.01, v5.9.6
feature:
- (redrun) Object.assign polyfill -> babel transform
2017.01.12, v5.9.5
feature:
- (package) description
- (package) npm-run-all v4.0.0
- (package) nyc v10.0.0
2016.11.23, v5.9.4
feature:
- (package) currify v2.0.0
- (package) nyc v9.0.1
2016.11.02, v5.9.3
feature:
- (package) jessy v2.0.0
2016.10.20, v5.9.2
fix:
- (env) $npm_package_config: name with "_"
2016.10.06, v5.9.1
fix:
- (bin) redrun: bring back node v4.0 support
2016.10.04, v5.9.0
feature:
- (redrun) add Object.assign polyfill for legacy node versions
- (package) redrun-legacy -> redrun_
2016.09.28, v5.8.4
fix:
- (redrun) mapsome -> mapsome/legacy
feature:
- (redrun) includes -> indexOf: add support of old versions of node
- (package) parent-dirs: put in bin/redrun.js: es2015 only
2016.09.28, v5.8.3
fix:
- (redrun) drop every "--"
- (redrun) "npm install" -> "null"
2016.09.26, v5.8.2
feature:
- (package) yargs-parser v4.0.0
2016.09.20, v5.8.1
feature:
- (quote-args) rm unused
2016.09.19, v5.8.0
feature:
- (keys) keys -> all-object-keys
- (redrun) improve arguments quots support in deep npm run
- (eslint) rules: indent: 4
2016.09.16, v5.7.0
fix:
- (redrun) prevent quotes duplication
feature:
- (redrun) scripts args: quotes to word sequence -> quotes to every word
2016.09.09, v5.6.1
fix:
- (redrun) args parsing: expand of inner redrun
2016.09.06, v5.6.0
feature:
- (redrun) quote arguments after "--"
2016.09.06, v5.5.2
fix:
- (package) redrun-completion-legacy
- (redrun) support of scripts that contains "." in name
feature:
- (package) add redrun-completion-legacy
2016.09.02, v5.5.1
feature:
- (redrun-completion) add compdef support
2016.09.02, v5.5.0
feature:
- (redrun) add redrun-completion: tab-completion of npm-scripts
2016.09.01, v5.4.0
feature:
- (redrun) add $npm_package_version support
- (package) npm-run-all v3.0.0
2016.08.15, v5.3.4
fix:
- (env) globally installed modules first then node_modules/.bin -> node_modules/.bin and then global
feature:
- (package) nyc v8.1.0
2016.08.12, v5.3.3
feature:
- (package) yargs-parser v3.1.0
- (package) add postpublish
2016.08.11, v5.3.2
fix:
- (redrun) ignore empty deep scripts
2016.08.09, v5.3.1
feature:
- (cli-parse) parseArgs: simplify aliases
2016.08.01, v5.3.0
feature:
- (cli-parse) speed up: yargs -> yargs-parser
2016.07.27, v5.2.0
feature:
- (cli-parse) put commands without --parallel, --series to begin
2016.07.26, v5.1.2
fix:
- (redrun) crash when no scripts section in package.json
2016.07.19, v5.1.1
fix:
- (redrun) {message} -> message
2016.07.19, v5.1.0
feature:
- (redrun) add more information about json parsing errors
- (package) nyc v7.0.0
2016.07.11, v5.0.1
fix:
- (redrun) prevent built-in behaviour of "npm publish"
- (redrun) prevent built-in behaviour of "npm version"
2016.07.08, v5.0.0
feature:
- (redrun) --parallel, --series --: add params to every script, not only to last
2016.07.08, v4.2.1
fix:
- chore(test) fixlint
- feature(package) add fixlint
- (redrun) parsing unrecognized option from package.json
feature:
- (redrun) let -> const
- (package) add fixlint
- (jscs) add validateQuoteMarks, requireSemicolons
2016.07.06, v4.2.0
feature:
- (redrun) add support of node.js < 4 with
- (redrun) let -> const
- (redrun) getEnv: traverseForInfo -> Info
2016.07.05, v4.1.1
fix:
- (redrun) mapsome path
2016.07.05, v4.1.0
feature:
- (redrun) rm deprecation message
- (redrun) add ability to run scripts with redrun from any directory
- (package) eslint v3.0.0
- (package) add tap-min
- (redrun) add -q, --quiet
2016.06.22, v4.0.0
feature:
- (package) add tap-min
- (redrun) add -q, --quiet
2016.05.16, v3.0.1
fix:
- (redrun) -v, -h when no package.json in curren directory
feature:
- (package) npm-run-all v2.0.0
- (package) keywords: add
- (package) scripts: rm "-"
2016.05.06, v3.0.0
fix:
- (redrun) parse redrun args with ENV set
feature:
- (redrun) add --calm, --series-calm, --parallel-calm
- (cli-parse) help: add args
2016.05.05, v2.1.0
fix:
- (cli-parse) script-not-found: message
- (redrun) throw on similar name
feature:
- (redrun) add script arguments support
- (redrun) add tryOrExit
- (redrun) preserve colors: spawnify -> child_process.execSync
2016.05.04, v2.0.0
feature:
- (redrun) add support of "&&"
2016.05.04, v1.12.0
fix:
- (regexp) (un?)install -> (un)?install
feature:
- (redrun) add support of multylevel $npm_package_config variables
2016.04.29, v1.11.1
feature:
- (package) rm npcp
2016.04.29, v1.11.0
feature:
- (redrun) add npm_package_config support
2016.04.28, v1.10.1
fix:
- (redrun) env: child process has no parent env
feature:
- (redrun) preserve colors
2016.04.28, v1.10.0
feature:
- (redrun) add $npm_package_config support
2016.04.27, v1.9.1
fix:
- (redrun) parse names with "-"
2016.04.27, v1.9.0
feature:
- (redrun) add node_modules/.bin to env PATH
- (package) lint: rm --parallel
2016.04.27, v1.8.3
fix:
- (redrun) names with "."
2016.04.27, v1.8.2
fix:
- (redrun) --loud: undefined
- (regexp) redrunName, scriptName: ":"
2016.04.27, v1.8.1
fix:
- (redrun) wildcards support in inner parse
2016.04.27, v1.8.0
feature:
- (redrun) add self-parsing
2016.04.27, v1.7.1
fix:
- (redrun) cli-parse: no args: no script found -> help
feature:
- (travis) add node v6
2016.04.26, v1.7.0
feature:
- (redrun) add cli-parse
- (redrun) cli-parse -> group-parse
- (redrun) add regexp
- (redrun) regexp -> wildcard
2016.04.23, v1.6.0
feature:
- (redrun) add t, tst support
- (redrun) add ai
2016.04.23, v1.5.0
feature:
- (redrun) scripts:{} -> {}
2016.04.22, v1.4.1
feature:
- (redrun) add node 4 support
2016.04.22, v1.4.0
feature:
- (redrun) loud: "redrun: cmd" -> "cmd"
- (package) lint -> slowlint
2016.04.22, v1.3.0
feature:
- (redrun) add support of reserved script names (like "npm test")
- (package) add watch:test/coverage
- (cli-parse) add
2016.04.22, v1.2.1
feature:
- (redrun) script1 script2 -> tasks
2016.04.22, v1.2.0
fix:
- (redrun) process.stderr -> console.error
feature:
- (redrun) add logo
- (redurn) add -l, --loud
- (redrun) add parallel, series
2016.04.21, v1.1.4
feature:
- (redrun) series: rm console.log
2016.04.21, v1.1.3
fix:
- (redrun) array
2016.04.21, v1.1.2
fix:
- (redrun) seriesScripts
2016.04.21, v1.1.1
fix:
- (redrun) series, parallel
2016.04.21, v1.1.0
fix:
- (travis) codestyle -> lint
feature:
- (package) add multi args support
- (package) add coveralls