syncpack 14.0.0-alpha.13 → 14.0.0-alpha.15
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.
- package/index.cjs +0 -1
- package/package.json +8 -9
- package/schema.json +59 -51
- package/syncpack.d.ts +20 -16
package/index.cjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "syncpack",
|
|
3
3
|
"description": "Consistent dependency versions in large JavaScript Monorepos",
|
|
4
|
-
"version": "14.0.0-alpha.
|
|
4
|
+
"version": "14.0.0-alpha.15",
|
|
5
5
|
"author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
|
|
6
6
|
"bugs": "https://github.com/JamieMason/syncpack/issues",
|
|
7
7
|
"contributors": [
|
|
@@ -35,8 +35,7 @@
|
|
|
35
35
|
"Tom Fletcher (https://github.com/tom-fletcher)"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"
|
|
39
|
-
"typescript": "^5.8.3"
|
|
38
|
+
"tsx": "^4.20.3"
|
|
40
39
|
},
|
|
41
40
|
"engines": {
|
|
42
41
|
"node": ">=14.17.0"
|
|
@@ -69,12 +68,12 @@
|
|
|
69
68
|
"syncpack": "./index.cjs"
|
|
70
69
|
},
|
|
71
70
|
"optionalDependencies": {
|
|
72
|
-
"syncpack-linux-x64": "14.0.0-alpha.
|
|
73
|
-
"syncpack-linux-arm64": "14.0.0-alpha.
|
|
74
|
-
"syncpack-darwin-x64": "14.0.0-alpha.
|
|
75
|
-
"syncpack-darwin-arm64": "14.0.0-alpha.
|
|
76
|
-
"syncpack-windows-x64": "14.0.0-alpha.
|
|
77
|
-
"syncpack-windows-arm64": "14.0.0-alpha.
|
|
71
|
+
"syncpack-linux-x64": "14.0.0-alpha.15",
|
|
72
|
+
"syncpack-linux-arm64": "14.0.0-alpha.15",
|
|
73
|
+
"syncpack-darwin-x64": "14.0.0-alpha.15",
|
|
74
|
+
"syncpack-darwin-arm64": "14.0.0-alpha.15",
|
|
75
|
+
"syncpack-windows-x64": "14.0.0-alpha.15",
|
|
76
|
+
"syncpack-windows-arm64": "14.0.0-alpha.15"
|
|
78
77
|
},
|
|
79
78
|
"types": "./syncpack.d.ts"
|
|
80
79
|
}
|
package/schema.json
CHANGED
|
@@ -185,7 +185,7 @@
|
|
|
185
185
|
"additionalProperties": false,
|
|
186
186
|
"properties": {
|
|
187
187
|
"$schema": {
|
|
188
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
188
|
+
"see": "https://jamiemason.github.io/syncpack/config/syncpackrc/#json",
|
|
189
189
|
"type": "string"
|
|
190
190
|
},
|
|
191
191
|
"customTypes": {
|
|
@@ -214,11 +214,15 @@
|
|
|
214
214
|
"see": "https://jamiemason.github.io/syncpack/config/indent",
|
|
215
215
|
"type": "string"
|
|
216
216
|
},
|
|
217
|
+
"maxConcurrentRequests": {
|
|
218
|
+
"see": "https://jamiemason.github.io/syncpack/config/max-concurrent-requests",
|
|
219
|
+
"type": "number"
|
|
220
|
+
},
|
|
217
221
|
"semverGroups": {
|
|
218
222
|
"items": {
|
|
219
223
|
"$ref": "#/definitions/SemverGroup.Any"
|
|
220
224
|
},
|
|
221
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
225
|
+
"see": "https://jamiemason.github.io/syncpack/semver-groups",
|
|
222
226
|
"type": "array"
|
|
223
227
|
},
|
|
224
228
|
"sortAz": {
|
|
@@ -253,11 +257,15 @@
|
|
|
253
257
|
"see": "https://jamiemason.github.io/syncpack/config/source",
|
|
254
258
|
"type": "array"
|
|
255
259
|
},
|
|
260
|
+
"strict": {
|
|
261
|
+
"see": "https://jamiemason.github.io/syncpack/config/strict",
|
|
262
|
+
"type": "boolean"
|
|
263
|
+
},
|
|
256
264
|
"versionGroups": {
|
|
257
265
|
"items": {
|
|
258
266
|
"$ref": "#/definitions/VersionGroup.Any"
|
|
259
267
|
},
|
|
260
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
268
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups",
|
|
261
269
|
"type": "array"
|
|
262
270
|
}
|
|
263
271
|
},
|
|
@@ -280,7 +288,7 @@
|
|
|
280
288
|
"items": {
|
|
281
289
|
"type": "string"
|
|
282
290
|
},
|
|
283
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
291
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
|
|
284
292
|
"type": "array"
|
|
285
293
|
},
|
|
286
294
|
"dependencyTypes": {
|
|
@@ -303,23 +311,23 @@
|
|
|
303
311
|
}
|
|
304
312
|
]
|
|
305
313
|
},
|
|
306
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
314
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
|
|
307
315
|
"type": "array"
|
|
308
316
|
},
|
|
309
317
|
"isIgnored": {
|
|
310
318
|
"const": true,
|
|
311
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
319
|
+
"see": "https://jamiemason.github.io/syncpack/semver-groups/ignored/#isignored",
|
|
312
320
|
"type": "boolean"
|
|
313
321
|
},
|
|
314
322
|
"label": {
|
|
315
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
323
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
|
|
316
324
|
"type": "string"
|
|
317
325
|
},
|
|
318
326
|
"packages": {
|
|
319
327
|
"items": {
|
|
320
328
|
"type": "string"
|
|
321
329
|
},
|
|
322
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
330
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
|
|
323
331
|
"type": "array"
|
|
324
332
|
},
|
|
325
333
|
"specifierTypes": {
|
|
@@ -351,7 +359,7 @@
|
|
|
351
359
|
}
|
|
352
360
|
]
|
|
353
361
|
},
|
|
354
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
362
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
|
|
355
363
|
"type": "array"
|
|
356
364
|
}
|
|
357
365
|
},
|
|
@@ -367,7 +375,7 @@
|
|
|
367
375
|
"items": {
|
|
368
376
|
"type": "string"
|
|
369
377
|
},
|
|
370
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
378
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
|
|
371
379
|
"type": "array"
|
|
372
380
|
},
|
|
373
381
|
"dependencyTypes": {
|
|
@@ -390,18 +398,18 @@
|
|
|
390
398
|
}
|
|
391
399
|
]
|
|
392
400
|
},
|
|
393
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
401
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
|
|
394
402
|
"type": "array"
|
|
395
403
|
},
|
|
396
404
|
"label": {
|
|
397
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
405
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
|
|
398
406
|
"type": "string"
|
|
399
407
|
},
|
|
400
408
|
"packages": {
|
|
401
409
|
"items": {
|
|
402
410
|
"type": "string"
|
|
403
411
|
},
|
|
404
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
412
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
|
|
405
413
|
"type": "array"
|
|
406
414
|
},
|
|
407
415
|
"range": {
|
|
@@ -416,7 +424,7 @@
|
|
|
416
424
|
"^",
|
|
417
425
|
"~"
|
|
418
426
|
],
|
|
419
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
427
|
+
"see": "https://jamiemason.github.io/syncpack/semver-groups/with-range/#range",
|
|
420
428
|
"type": "string"
|
|
421
429
|
},
|
|
422
430
|
"specifierTypes": {
|
|
@@ -448,7 +456,7 @@
|
|
|
448
456
|
}
|
|
449
457
|
]
|
|
450
458
|
},
|
|
451
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
459
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
|
|
452
460
|
"type": "array"
|
|
453
461
|
}
|
|
454
462
|
},
|
|
@@ -486,7 +494,7 @@
|
|
|
486
494
|
"items": {
|
|
487
495
|
"type": "string"
|
|
488
496
|
},
|
|
489
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
497
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
|
|
490
498
|
"type": "array"
|
|
491
499
|
},
|
|
492
500
|
"dependencyTypes": {
|
|
@@ -509,23 +517,23 @@
|
|
|
509
517
|
}
|
|
510
518
|
]
|
|
511
519
|
},
|
|
512
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
520
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
|
|
513
521
|
"type": "array"
|
|
514
522
|
},
|
|
515
523
|
"isBanned": {
|
|
516
524
|
"const": true,
|
|
517
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
525
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/banned/#isbanned",
|
|
518
526
|
"type": "boolean"
|
|
519
527
|
},
|
|
520
528
|
"label": {
|
|
521
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
529
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
|
|
522
530
|
"type": "string"
|
|
523
531
|
},
|
|
524
532
|
"packages": {
|
|
525
533
|
"items": {
|
|
526
534
|
"type": "string"
|
|
527
535
|
},
|
|
528
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
536
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
|
|
529
537
|
"type": "array"
|
|
530
538
|
},
|
|
531
539
|
"specifierTypes": {
|
|
@@ -557,7 +565,7 @@
|
|
|
557
565
|
}
|
|
558
566
|
]
|
|
559
567
|
},
|
|
560
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
568
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
|
|
561
569
|
"type": "array"
|
|
562
570
|
}
|
|
563
571
|
},
|
|
@@ -573,7 +581,7 @@
|
|
|
573
581
|
"items": {
|
|
574
582
|
"type": "string"
|
|
575
583
|
},
|
|
576
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
584
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
|
|
577
585
|
"type": "array"
|
|
578
586
|
},
|
|
579
587
|
"dependencyTypes": {
|
|
@@ -596,23 +604,23 @@
|
|
|
596
604
|
}
|
|
597
605
|
]
|
|
598
606
|
},
|
|
599
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
607
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
|
|
600
608
|
"type": "array"
|
|
601
609
|
},
|
|
602
610
|
"isIgnored": {
|
|
603
611
|
"const": true,
|
|
604
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
612
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/ignored/#isignored",
|
|
605
613
|
"type": "boolean"
|
|
606
614
|
},
|
|
607
615
|
"label": {
|
|
608
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
616
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
|
|
609
617
|
"type": "string"
|
|
610
618
|
},
|
|
611
619
|
"packages": {
|
|
612
620
|
"items": {
|
|
613
621
|
"type": "string"
|
|
614
622
|
},
|
|
615
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
623
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
|
|
616
624
|
"type": "array"
|
|
617
625
|
},
|
|
618
626
|
"specifierTypes": {
|
|
@@ -644,7 +652,7 @@
|
|
|
644
652
|
}
|
|
645
653
|
]
|
|
646
654
|
},
|
|
647
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
655
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
|
|
648
656
|
"type": "array"
|
|
649
657
|
}
|
|
650
658
|
},
|
|
@@ -660,7 +668,7 @@
|
|
|
660
668
|
"items": {
|
|
661
669
|
"type": "string"
|
|
662
670
|
},
|
|
663
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
671
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
|
|
664
672
|
"type": "array"
|
|
665
673
|
},
|
|
666
674
|
"dependencyTypes": {
|
|
@@ -683,22 +691,22 @@
|
|
|
683
691
|
}
|
|
684
692
|
]
|
|
685
693
|
},
|
|
686
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
694
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
|
|
687
695
|
"type": "array"
|
|
688
696
|
},
|
|
689
697
|
"label": {
|
|
690
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
698
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
|
|
691
699
|
"type": "string"
|
|
692
700
|
},
|
|
693
701
|
"packages": {
|
|
694
702
|
"items": {
|
|
695
703
|
"type": "string"
|
|
696
704
|
},
|
|
697
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
705
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
|
|
698
706
|
"type": "array"
|
|
699
707
|
},
|
|
700
708
|
"pinVersion": {
|
|
701
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
709
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/pinned/#pinversion",
|
|
702
710
|
"type": "string"
|
|
703
711
|
},
|
|
704
712
|
"specifierTypes": {
|
|
@@ -730,7 +738,7 @@
|
|
|
730
738
|
}
|
|
731
739
|
]
|
|
732
740
|
},
|
|
733
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
741
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
|
|
734
742
|
"type": "array"
|
|
735
743
|
}
|
|
736
744
|
},
|
|
@@ -746,7 +754,7 @@
|
|
|
746
754
|
"items": {
|
|
747
755
|
"type": "string"
|
|
748
756
|
},
|
|
749
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
757
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
|
|
750
758
|
"type": "array"
|
|
751
759
|
},
|
|
752
760
|
"dependencyTypes": {
|
|
@@ -769,23 +777,23 @@
|
|
|
769
777
|
}
|
|
770
778
|
]
|
|
771
779
|
},
|
|
772
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
780
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
|
|
773
781
|
"type": "array"
|
|
774
782
|
},
|
|
775
783
|
"label": {
|
|
776
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
784
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
|
|
777
785
|
"type": "string"
|
|
778
786
|
},
|
|
779
787
|
"packages": {
|
|
780
788
|
"items": {
|
|
781
789
|
"type": "string"
|
|
782
790
|
},
|
|
783
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
791
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
|
|
784
792
|
"type": "array"
|
|
785
793
|
},
|
|
786
794
|
"policy": {
|
|
787
795
|
"const": "sameRange",
|
|
788
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
796
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/same-range/#policy",
|
|
789
797
|
"type": "string"
|
|
790
798
|
},
|
|
791
799
|
"specifierTypes": {
|
|
@@ -817,7 +825,7 @@
|
|
|
817
825
|
}
|
|
818
826
|
]
|
|
819
827
|
},
|
|
820
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
828
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
|
|
821
829
|
"type": "array"
|
|
822
830
|
}
|
|
823
831
|
},
|
|
@@ -833,7 +841,7 @@
|
|
|
833
841
|
"items": {
|
|
834
842
|
"type": "string"
|
|
835
843
|
},
|
|
836
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
844
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
|
|
837
845
|
"type": "array"
|
|
838
846
|
},
|
|
839
847
|
"dependencyTypes": {
|
|
@@ -856,25 +864,25 @@
|
|
|
856
864
|
}
|
|
857
865
|
]
|
|
858
866
|
},
|
|
859
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
867
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
|
|
860
868
|
"type": "array"
|
|
861
869
|
},
|
|
862
870
|
"label": {
|
|
863
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
871
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
|
|
864
872
|
"type": "string"
|
|
865
873
|
},
|
|
866
874
|
"packages": {
|
|
867
875
|
"items": {
|
|
868
876
|
"type": "string"
|
|
869
877
|
},
|
|
870
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
878
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
|
|
871
879
|
"type": "array"
|
|
872
880
|
},
|
|
873
881
|
"snapTo": {
|
|
874
882
|
"items": {
|
|
875
883
|
"type": "string"
|
|
876
884
|
},
|
|
877
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
885
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/snapped-to/#snapto",
|
|
878
886
|
"type": "array"
|
|
879
887
|
},
|
|
880
888
|
"specifierTypes": {
|
|
@@ -906,7 +914,7 @@
|
|
|
906
914
|
}
|
|
907
915
|
]
|
|
908
916
|
},
|
|
909
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
917
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
|
|
910
918
|
"type": "array"
|
|
911
919
|
}
|
|
912
920
|
},
|
|
@@ -922,7 +930,7 @@
|
|
|
922
930
|
"items": {
|
|
923
931
|
"type": "string"
|
|
924
932
|
},
|
|
925
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
933
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies",
|
|
926
934
|
"type": "array"
|
|
927
935
|
},
|
|
928
936
|
"dependencyTypes": {
|
|
@@ -945,18 +953,18 @@
|
|
|
945
953
|
}
|
|
946
954
|
]
|
|
947
955
|
},
|
|
948
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
956
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes",
|
|
949
957
|
"type": "array"
|
|
950
958
|
},
|
|
951
959
|
"label": {
|
|
952
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
960
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label",
|
|
953
961
|
"type": "string"
|
|
954
962
|
},
|
|
955
963
|
"packages": {
|
|
956
964
|
"items": {
|
|
957
965
|
"type": "string"
|
|
958
966
|
},
|
|
959
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
967
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages",
|
|
960
968
|
"type": "array"
|
|
961
969
|
},
|
|
962
970
|
"preferVersion": {
|
|
@@ -964,7 +972,7 @@
|
|
|
964
972
|
"highestSemver",
|
|
965
973
|
"lowestSemver"
|
|
966
974
|
],
|
|
967
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
975
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/lowest-semver/#preferversion",
|
|
968
976
|
"type": "string"
|
|
969
977
|
},
|
|
970
978
|
"specifierTypes": {
|
|
@@ -996,7 +1004,7 @@
|
|
|
996
1004
|
}
|
|
997
1005
|
]
|
|
998
1006
|
},
|
|
999
|
-
"see": "https://jamiemason.github.io/syncpack/
|
|
1007
|
+
"see": "https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes",
|
|
1000
1008
|
"type": "array"
|
|
1001
1009
|
}
|
|
1002
1010
|
},
|
package/syncpack.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export interface RcFile {
|
|
2
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
2
|
+
/** @see https://jamiemason.github.io/syncpack/config/syncpackrc/#json */
|
|
3
3
|
$schema?: string;
|
|
4
4
|
/** @see https://jamiemason.github.io/syncpack/config/custom-types */
|
|
5
5
|
customTypes?: {
|
|
@@ -13,7 +13,9 @@ export interface RcFile {
|
|
|
13
13
|
formatRepository?: boolean;
|
|
14
14
|
/** @see https://jamiemason.github.io/syncpack/config/indent */
|
|
15
15
|
indent?: string;
|
|
16
|
-
/** @see https://jamiemason.github.io/syncpack/config/
|
|
16
|
+
/** @see https://jamiemason.github.io/syncpack/config/max-concurrent-requests */
|
|
17
|
+
maxConcurrentRequests?: number;
|
|
18
|
+
/** @see https://jamiemason.github.io/syncpack/semver-groups */
|
|
17
19
|
semverGroups?: SemverGroup.Any[];
|
|
18
20
|
/** @see https://jamiemason.github.io/syncpack/config/sort-az */
|
|
19
21
|
sortAz?: string[];
|
|
@@ -25,7 +27,9 @@ export interface RcFile {
|
|
|
25
27
|
sortPackages?: boolean;
|
|
26
28
|
/** @see https://jamiemason.github.io/syncpack/config/source */
|
|
27
29
|
source?: string[];
|
|
28
|
-
/** @see https://jamiemason.github.io/syncpack/config/
|
|
30
|
+
/** @see https://jamiemason.github.io/syncpack/config/strict */
|
|
31
|
+
strict?: boolean;
|
|
32
|
+
/** @see https://jamiemason.github.io/syncpack/version-groups */
|
|
29
33
|
versionGroups?: VersionGroup.Any[];
|
|
30
34
|
/** @deprecated */
|
|
31
35
|
dependencyTypes?: never;
|
|
@@ -41,15 +45,15 @@ export interface RcFile {
|
|
|
41
45
|
specifierTypes?: never;
|
|
42
46
|
}
|
|
43
47
|
export interface GroupSelector {
|
|
44
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
48
|
+
/** @see https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencies */
|
|
45
49
|
dependencies?: string[];
|
|
46
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
50
|
+
/** @see https://jamiemason.github.io/syncpack/version-groups/highest-semver/#dependencytypes */
|
|
47
51
|
dependencyTypes?: DependencyType[];
|
|
48
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
52
|
+
/** @see https://jamiemason.github.io/syncpack/version-groups/highest-semver/#label */
|
|
49
53
|
label?: string;
|
|
50
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
54
|
+
/** @see https://jamiemason.github.io/syncpack/version-groups/highest-semver/#packages */
|
|
51
55
|
packages?: string[];
|
|
52
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
56
|
+
/** @see https://jamiemason.github.io/syncpack/version-groups/highest-semver/#specifiertypes */
|
|
53
57
|
specifierTypes?: SpecifierType[];
|
|
54
58
|
}
|
|
55
59
|
export interface DependencyGroup {
|
|
@@ -66,38 +70,38 @@ export interface DependencyGroup {
|
|
|
66
70
|
}
|
|
67
71
|
declare namespace SemverGroup {
|
|
68
72
|
interface Ignored extends GroupSelector {
|
|
69
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
73
|
+
/** @see https://jamiemason.github.io/syncpack/semver-groups/ignored/#isignored */
|
|
70
74
|
isIgnored: true;
|
|
71
75
|
}
|
|
72
76
|
interface WithRange extends GroupSelector {
|
|
73
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
77
|
+
/** @see https://jamiemason.github.io/syncpack/semver-groups/with-range/#range */
|
|
74
78
|
range: SemverRange;
|
|
75
79
|
}
|
|
76
80
|
type Any = Ignored | WithRange;
|
|
77
81
|
}
|
|
78
82
|
declare namespace VersionGroup {
|
|
79
83
|
interface Banned extends GroupSelector {
|
|
80
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
84
|
+
/** @see https://jamiemason.github.io/syncpack/version-groups/banned/#isbanned */
|
|
81
85
|
isBanned: true;
|
|
82
86
|
}
|
|
83
87
|
interface Ignored extends GroupSelector {
|
|
84
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
88
|
+
/** @see https://jamiemason.github.io/syncpack/version-groups/ignored/#isignored */
|
|
85
89
|
isIgnored: true;
|
|
86
90
|
}
|
|
87
91
|
interface Pinned extends GroupSelector {
|
|
88
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
92
|
+
/** @see https://jamiemason.github.io/syncpack/version-groups/pinned/#pinversion */
|
|
89
93
|
pinVersion: string;
|
|
90
94
|
}
|
|
91
95
|
interface SnappedTo extends GroupSelector {
|
|
92
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
96
|
+
/** @see https://jamiemason.github.io/syncpack/version-groups/snapped-to/#snapto */
|
|
93
97
|
snapTo: string[];
|
|
94
98
|
}
|
|
95
99
|
interface SameRange extends GroupSelector {
|
|
96
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
100
|
+
/** @see https://jamiemason.github.io/syncpack/version-groups/same-range/#policy */
|
|
97
101
|
policy: 'sameRange';
|
|
98
102
|
}
|
|
99
103
|
interface Standard extends GroupSelector {
|
|
100
|
-
/** @see https://jamiemason.github.io/syncpack/
|
|
104
|
+
/** @see https://jamiemason.github.io/syncpack/version-groups/lowest-semver/#preferversion */
|
|
101
105
|
preferVersion?: 'highestSemver' | 'lowestSemver';
|
|
102
106
|
}
|
|
103
107
|
type Any = Banned | Ignored | Pinned | SameRange | SnappedTo | Standard;
|