@salesforce/plugin-release-management 5.7.100 → 5.7.102

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.
@@ -460,11 +460,12 @@
460
460
  "index.js"
461
461
  ]
462
462
  },
463
- "cli:artifacts:compare": {
463
+ "cli:release:automerge": {
464
464
  "aliases": [],
465
465
  "args": {},
466
+ "description": "Attempt to automerge nightly PR",
466
467
  "examples": [
467
- "<%= config.bin %> <%= command.id %>"
468
+ "<%= config.bin %> <%= command.id %> --owner salesforcecli --repo sfdx-cli --pul-number 1049"
468
469
  ],
469
470
  "flags": {
470
471
  "json": {
@@ -482,55 +483,87 @@
482
483
  "multiple": false,
483
484
  "type": "option"
484
485
  },
485
- "plugin": {
486
- "char": "p",
487
- "name": "plugin",
488
- "summary": "List of plugins to check for breaking changes.",
486
+ "owner": {
487
+ "aliases": [
488
+ "org"
489
+ ],
490
+ "dependsOn": [
491
+ "repo"
492
+ ],
493
+ "name": "owner",
494
+ "required": true,
495
+ "summary": "Github owner (org), example: salesforcecli",
489
496
  "hasDynamicHelp": false,
490
- "multiple": true,
497
+ "multiple": false,
491
498
  "type": "option"
492
499
  },
493
- "previous": {
494
- "char": "r",
495
- "name": "previous",
496
- "summary": "Previous CLI version to compare against. Defaults to the last published version.",
500
+ "repo": {
501
+ "dependsOn": [
502
+ "owner"
503
+ ],
504
+ "name": "repo",
505
+ "required": true,
506
+ "summary": "Github repo, example: sfdx-cli",
497
507
  "hasDynamicHelp": false,
498
508
  "multiple": false,
499
509
  "type": "option"
500
510
  },
501
- "current": {
502
- "char": "c",
503
- "name": "current",
504
- "summary": "Current CLI version to compare against. Defaults to the version on the CLI in the current directory.",
511
+ "pull-number": {
512
+ "name": "pull-number",
513
+ "required": true,
514
+ "summary": "Github pull request number to merge",
505
515
  "hasDynamicHelp": false,
506
516
  "multiple": false,
507
517
  "type": "option"
518
+ },
519
+ "dry-run": {
520
+ "char": "d",
521
+ "name": "dry-run",
522
+ "summary": "Run all checks, but do not merge PR",
523
+ "allowNo": false,
524
+ "type": "boolean"
525
+ },
526
+ "verbose": {
527
+ "name": "verbose",
528
+ "summary": "Show additional debug output",
529
+ "allowNo": false,
530
+ "type": "boolean"
508
531
  }
509
532
  },
510
533
  "hasDynamicHelp": false,
511
534
  "hiddenAliases": [],
512
- "id": "cli:artifacts:compare",
535
+ "id": "cli:release:automerge",
513
536
  "pluginAlias": "@salesforce/plugin-release-management",
514
537
  "pluginName": "@salesforce/plugin-release-management",
515
538
  "pluginType": "core",
516
539
  "strict": true,
517
- "summary": "Look for breaking changes in artifacts (schemas and snapshots) from plugins. Must be run in CLI directory.",
540
+ "summary": "Attempt to automerge nightly PR",
518
541
  "enableJsonFlag": true,
519
542
  "isESM": true,
520
543
  "relativePath": [
521
544
  "lib",
522
545
  "commands",
523
546
  "cli",
524
- "artifacts",
525
- "compare.js"
547
+ "release",
548
+ "automerge.js"
526
549
  ]
527
550
  },
528
- "cli:tarballs:prepare": {
529
- "aliases": [],
551
+ "cli:release:build": {
552
+ "aliases": [
553
+ "cli:latestrc:build"
554
+ ],
530
555
  "args": {},
531
- "description": "remove unnecessary files from node_modules",
556
+ "description": "builds a new release from a designated starting point and optionally creates PR in Github",
532
557
  "examples": [
533
- "<%= config.bin %> <%= command.id %>"
558
+ "<%= config.bin %> <%= command.id %>",
559
+ "<%= config.bin %> <%= command.id %> --patch",
560
+ "<%= config.bin %> <%= command.id %> --start-from-npm-dist-tag latest-rc --patch",
561
+ "<%= config.bin %> <%= command.id %> --start-from-github-ref 7.144.0",
562
+ "<%= config.bin %> <%= command.id %> --start-from-github-ref main",
563
+ "<%= config.bin %> <%= command.id %> --start-from-github-ref f476e8e",
564
+ "<%= config.bin %> <%= command.id %> --start-from-github-ref main --prerelease beta",
565
+ "<%= config.bin %> <%= command.id %> --build-only",
566
+ "<%= config.bin %> <%= command.id %> --only @salesforce/plugin-source,@salesforce/plugin-info@1.2.3"
534
567
  ],
535
568
  "flags": {
536
569
  "json": {
@@ -548,51 +581,116 @@
548
581
  "multiple": false,
549
582
  "type": "option"
550
583
  },
551
- "dryrun": {
584
+ "start-from-npm-dist-tag": {
585
+ "aliases": [
586
+ "rctag"
587
+ ],
552
588
  "char": "d",
553
- "name": "dryrun",
554
- "summary": "only show what would be removed from node_modules",
589
+ "deprecateAliases": true,
590
+ "name": "start-from-npm-dist-tag",
591
+ "summary": "the npm dist-tag to start the release from, examples: nightly, latest-rc",
592
+ "hasDynamicHelp": false,
593
+ "multiple": false,
594
+ "type": "option"
595
+ },
596
+ "start-from-github-ref": {
597
+ "char": "g",
598
+ "name": "start-from-github-ref",
599
+ "summary": "a Github ref to start the release from, examples: main, 7.144.0, f476e8e",
600
+ "hasDynamicHelp": false,
601
+ "multiple": false,
602
+ "type": "option"
603
+ },
604
+ "release-channel": {
605
+ "char": "c",
606
+ "name": "release-channel",
607
+ "required": true,
608
+ "summary": "the channel intended for this release, examples: nightly, latest-rc, latest, dev, beta, etc...",
609
+ "hasDynamicHelp": false,
610
+ "multiple": false,
611
+ "type": "option"
612
+ },
613
+ "build-only": {
614
+ "name": "build-only",
615
+ "summary": "only build the release, do not git add/commit/push",
555
616
  "allowNo": false,
556
617
  "type": "boolean"
557
618
  },
558
- "types": {
559
- "char": "t",
560
- "name": "types",
561
- "summary": "remove all types (.d.ts) files from node_modules",
619
+ "resolutions": {
620
+ "name": "resolutions",
621
+ "summary": "bump the versions of packages listed in the resolutions section",
622
+ "allowNo": true,
623
+ "type": "boolean"
624
+ },
625
+ "only": {
626
+ "name": "only",
627
+ "summary": "only bump the version of the packages passed in, uses latest if version is not provided",
628
+ "delimiter": ",",
629
+ "hasDynamicHelp": false,
630
+ "multiple": true,
631
+ "type": "option"
632
+ },
633
+ "pinned-deps": {
634
+ "name": "pinned-deps",
635
+ "summary": "bump the versions of the packages listed in the pinnedDependencies section",
636
+ "allowNo": true,
637
+ "type": "boolean"
638
+ },
639
+ "jit": {
640
+ "name": "jit",
641
+ "summary": "bump the versions of the packages listed in the jitPlugins (just-in-time) section",
642
+ "allowNo": true,
643
+ "type": "boolean"
644
+ },
645
+ "label": {
646
+ "name": "label",
647
+ "summary": "add one or more labels to the Github PR",
648
+ "hasDynamicHelp": false,
649
+ "multiple": true,
650
+ "type": "option"
651
+ },
652
+ "patch": {
653
+ "name": "patch",
654
+ "summary": "bump the release as a patch of an existing version, not a new minor version",
562
655
  "allowNo": false,
563
656
  "type": "boolean"
564
657
  },
565
- "verbose": {
566
- "name": "verbose",
567
- "summary": "show all files paths being removed",
658
+ "empty": {
659
+ "name": "empty",
660
+ "summary": "create an empty release PR for pushing changes to later (version will still be bumped)",
568
661
  "allowNo": false,
569
662
  "type": "boolean"
663
+ },
664
+ "pr-base-branch": {
665
+ "name": "pr-base-branch",
666
+ "summary": "base branch to create the PR against; if not specified, the build determines the branch for you",
667
+ "hasDynamicHelp": false,
668
+ "multiple": false,
669
+ "type": "option"
570
670
  }
571
671
  },
572
672
  "hasDynamicHelp": false,
573
673
  "hiddenAliases": [],
574
- "id": "cli:tarballs:prepare",
674
+ "id": "cli:release:build",
575
675
  "pluginAlias": "@salesforce/plugin-release-management",
576
676
  "pluginName": "@salesforce/plugin-release-management",
577
677
  "pluginType": "core",
578
678
  "strict": true,
579
- "summary": "remove unnecessary files from node_modules",
679
+ "summary": "builds a new release from a designated starting point and optionally creates PR in Github",
580
680
  "enableJsonFlag": true,
581
681
  "isESM": true,
582
682
  "relativePath": [
583
683
  "lib",
584
684
  "commands",
585
685
  "cli",
586
- "tarballs",
587
- "prepare.js"
686
+ "release",
687
+ "build.js"
588
688
  ]
589
689
  },
590
- "cli:tarballs:smoke": {
690
+ "cli:artifacts:compare": {
591
691
  "aliases": [],
592
692
  "args": {},
593
- "description": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
594
693
  "examples": [
595
- "<%= config.bin %> <%= command.id %>",
596
694
  "<%= config.bin %> <%= command.id %>"
597
695
  ],
598
696
  "flags": {
@@ -611,39 +709,59 @@
611
709
  "multiple": false,
612
710
  "type": "option"
613
711
  },
614
- "verbose": {
615
- "name": "verbose",
616
- "summary": "show the --help output for each command",
617
- "allowNo": false,
618
- "type": "boolean"
712
+ "plugin": {
713
+ "char": "p",
714
+ "name": "plugin",
715
+ "summary": "List of plugins to check for breaking changes.",
716
+ "hasDynamicHelp": false,
717
+ "multiple": true,
718
+ "type": "option"
719
+ },
720
+ "previous": {
721
+ "char": "r",
722
+ "name": "previous",
723
+ "summary": "Previous CLI version to compare against. Defaults to the last published version.",
724
+ "hasDynamicHelp": false,
725
+ "multiple": false,
726
+ "type": "option"
727
+ },
728
+ "current": {
729
+ "char": "c",
730
+ "name": "current",
731
+ "summary": "Current CLI version to compare against. Defaults to the version on the CLI in the current directory.",
732
+ "hasDynamicHelp": false,
733
+ "multiple": false,
734
+ "type": "option"
619
735
  }
620
736
  },
621
737
  "hasDynamicHelp": false,
622
738
  "hiddenAliases": [],
623
- "id": "cli:tarballs:smoke",
739
+ "id": "cli:artifacts:compare",
624
740
  "pluginAlias": "@salesforce/plugin-release-management",
625
741
  "pluginName": "@salesforce/plugin-release-management",
626
742
  "pluginType": "core",
627
743
  "strict": true,
628
- "summary": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
744
+ "summary": "Look for breaking changes in artifacts (schemas and snapshots) from plugins. Must be run in CLI directory.",
629
745
  "enableJsonFlag": true,
630
746
  "isESM": true,
631
747
  "relativePath": [
632
748
  "lib",
633
749
  "commands",
634
750
  "cli",
635
- "tarballs",
636
- "smoke.js"
751
+ "artifacts",
752
+ "compare.js"
637
753
  ]
638
754
  },
639
- "cli:tarballs:verify": {
755
+ "cli:install:test": {
640
756
  "aliases": [],
641
757
  "args": {},
642
- "description": "verify that tarballs are ready to be uploaded",
758
+ "description": "install sf or sfdx",
643
759
  "examples": [
644
- "<%= config.bin %> <%= command.id %>",
645
- "<%= config.bin %> <%= command.id %> --cli sfdx",
646
- "<%= config.bin %> <%= command.id %> --cli sf"
760
+ "<%= config.bin %> <%= command.id %> --cli sfdx --method installer",
761
+ "<%= config.bin %> <%= command.id %> --cli sfdx --method npm",
762
+ "<%= config.bin %> <%= command.id %> --cli sfdx --method tarball",
763
+ "<%= config.bin %> <%= command.id %> --cli sf --method tarball",
764
+ "<%= config.bin %> <%= command.id %> --cli sf --method tarball --channel stable-rc"
647
765
  ],
648
766
  "flags": {
649
767
  "json": {
@@ -664,8 +782,8 @@
664
782
  "cli": {
665
783
  "char": "c",
666
784
  "name": "cli",
667
- "summary": "the cli to verify",
668
- "default": "sfdx",
785
+ "required": true,
786
+ "summary": "the cli to install",
669
787
  "hasDynamicHelp": false,
670
788
  "multiple": false,
671
789
  "options": [
@@ -674,86 +792,18 @@
674
792
  ],
675
793
  "type": "option"
676
794
  },
677
- "windows-username-buffer": {
678
- "char": "w",
679
- "name": "windows-username-buffer",
680
- "summary": "the number of characters to allow for windows usernames",
681
- "default": 41,
795
+ "method": {
796
+ "char": "m",
797
+ "name": "method",
798
+ "required": true,
799
+ "summary": "the installation method to use",
682
800
  "hasDynamicHelp": false,
683
801
  "multiple": false,
684
- "type": "option"
685
- }
686
- },
687
- "hasDynamicHelp": false,
688
- "hiddenAliases": [],
689
- "id": "cli:tarballs:verify",
690
- "pluginAlias": "@salesforce/plugin-release-management",
691
- "pluginName": "@salesforce/plugin-release-management",
692
- "pluginType": "core",
693
- "strict": true,
694
- "summary": "verify that tarballs are ready to be uploaded",
695
- "enableJsonFlag": true,
696
- "isESM": true,
697
- "relativePath": [
698
- "lib",
699
- "commands",
700
- "cli",
701
- "tarballs",
702
- "verify.js"
703
- ]
704
- },
705
- "cli:install:test": {
706
- "aliases": [],
707
- "args": {},
708
- "description": "install sf or sfdx",
709
- "examples": [
710
- "<%= config.bin %> <%= command.id %> --cli sfdx --method installer",
711
- "<%= config.bin %> <%= command.id %> --cli sfdx --method npm",
712
- "<%= config.bin %> <%= command.id %> --cli sfdx --method tarball",
713
- "<%= config.bin %> <%= command.id %> --cli sf --method tarball",
714
- "<%= config.bin %> <%= command.id %> --cli sf --method tarball --channel stable-rc"
715
- ],
716
- "flags": {
717
- "json": {
718
- "description": "Format output as json.",
719
- "helpGroup": "GLOBAL",
720
- "name": "json",
721
- "allowNo": false,
722
- "type": "boolean"
723
- },
724
- "flags-dir": {
725
- "helpGroup": "GLOBAL",
726
- "name": "flags-dir",
727
- "summary": "Import flag values from a directory.",
728
- "hasDynamicHelp": false,
729
- "multiple": false,
730
- "type": "option"
731
- },
732
- "cli": {
733
- "char": "c",
734
- "name": "cli",
735
- "required": true,
736
- "summary": "the cli to install",
737
- "hasDynamicHelp": false,
738
- "multiple": false,
739
- "options": [
740
- "sf",
741
- "sfdx"
742
- ],
743
- "type": "option"
744
- },
745
- "method": {
746
- "char": "m",
747
- "name": "method",
748
- "required": true,
749
- "summary": "the installation method to use",
750
- "hasDynamicHelp": false,
751
- "multiple": false,
752
- "options": [
753
- "installer",
754
- "npm",
755
- "tarball"
756
- ],
802
+ "options": [
803
+ "installer",
804
+ "npm",
805
+ "tarball"
806
+ ],
757
807
  "type": "option"
758
808
  },
759
809
  "channel": {
@@ -798,12 +848,21 @@
798
848
  "test.js"
799
849
  ]
800
850
  },
801
- "cli:release:automerge": {
851
+ "cli:versions:inspect": {
802
852
  "aliases": [],
803
853
  "args": {},
804
- "description": "Attempt to automerge nightly PR",
854
+ "description": "inspect the CLI version across all install paths",
805
855
  "examples": [
806
- "<%= config.bin %> <%= command.id %> --owner salesforcecli --repo sfdx-cli --pul-number 1049"
856
+ "<%= config.bin %> <%= command.id %> -l archive -c stable",
857
+ "<%= config.bin %> <%= command.id %> -l archive -c stable-rc",
858
+ "<%= config.bin %> <%= command.id %> -l archive npm -c stable",
859
+ "<%= config.bin %> <%= command.id %> -l archive npm -c latest",
860
+ "<%= config.bin %> <%= command.id %> -l archive npm -c latest latest-rc",
861
+ "<%= config.bin %> <%= command.id %> -l archive npm -c stable stable-rc",
862
+ "<%= config.bin %> <%= command.id %> -l npm -c latest --salesforce",
863
+ "<%= config.bin %> <%= command.id %> -l npm -c latest -d @salesforce/core",
864
+ "<%= config.bin %> <%= command.id %> -l npm -c latest -d @salesforce/\\*\\*/ salesforce-alm",
865
+ "<%= config.bin %> <%= command.id %> -l npm -c latest -d chalk -s"
807
866
  ],
808
867
  "flags": {
809
868
  "json": {
@@ -821,87 +880,81 @@
821
880
  "multiple": false,
822
881
  "type": "option"
823
882
  },
824
- "owner": {
825
- "aliases": [
826
- "org"
827
- ],
828
- "dependsOn": [
829
- "repo"
830
- ],
831
- "name": "owner",
832
- "required": true,
833
- "summary": "Github owner (org), example: salesforcecli",
883
+ "dependencies": {
884
+ "char": "d",
885
+ "name": "dependencies",
886
+ "summary": "glob pattern of dependencies you want to see the version of",
834
887
  "hasDynamicHelp": false,
835
- "multiple": false,
888
+ "multiple": true,
836
889
  "type": "option"
837
890
  },
838
- "repo": {
839
- "dependsOn": [
840
- "owner"
841
- ],
842
- "name": "repo",
891
+ "salesforce": {
892
+ "char": "s",
893
+ "name": "salesforce",
894
+ "summary": "show versions of salesforce owned dependencies",
895
+ "allowNo": false,
896
+ "type": "boolean"
897
+ },
898
+ "channels": {
899
+ "char": "c",
900
+ "name": "channels",
843
901
  "required": true,
844
- "summary": "Github repo, example: sfdx-cli",
902
+ "summary": "the channel you want to inspect (for achives, latest and latest-rc are translated to stable and stable-rc. And vice-versa for npm)",
845
903
  "hasDynamicHelp": false,
846
- "multiple": false,
904
+ "multiple": true,
905
+ "options": [
906
+ "stable",
907
+ "stable-rc",
908
+ "latest",
909
+ "latest-rc",
910
+ "nightly"
911
+ ],
847
912
  "type": "option"
848
913
  },
849
- "pull-number": {
850
- "name": "pull-number",
914
+ "locations": {
915
+ "char": "l",
916
+ "name": "locations",
851
917
  "required": true,
852
- "summary": "Github pull request number to merge",
918
+ "summary": "the location you want to inspect",
853
919
  "hasDynamicHelp": false,
854
- "multiple": false,
920
+ "multiple": true,
921
+ "options": [
922
+ "archive",
923
+ "npm"
924
+ ],
855
925
  "type": "option"
856
926
  },
857
- "dry-run": {
858
- "char": "d",
859
- "name": "dry-run",
860
- "summary": "Run all checks, but do not merge PR",
861
- "allowNo": false,
862
- "type": "boolean"
863
- },
864
- "verbose": {
865
- "name": "verbose",
866
- "summary": "Show additional debug output",
927
+ "ignore-missing": {
928
+ "name": "ignore-missing",
929
+ "summary": "skip missing archives. Useful when supporting new architectures in oclif",
867
930
  "allowNo": false,
868
931
  "type": "boolean"
869
932
  }
870
933
  },
871
934
  "hasDynamicHelp": false,
872
935
  "hiddenAliases": [],
873
- "id": "cli:release:automerge",
936
+ "id": "cli:versions:inspect",
874
937
  "pluginAlias": "@salesforce/plugin-release-management",
875
938
  "pluginName": "@salesforce/plugin-release-management",
876
939
  "pluginType": "core",
877
940
  "strict": true,
878
- "summary": "Attempt to automerge nightly PR",
941
+ "summary": "inspect the CLI version across all install paths",
879
942
  "enableJsonFlag": true,
880
943
  "isESM": true,
881
944
  "relativePath": [
882
945
  "lib",
883
946
  "commands",
884
947
  "cli",
885
- "release",
886
- "automerge.js"
948
+ "versions",
949
+ "inspect.js"
887
950
  ]
888
951
  },
889
- "cli:release:build": {
890
- "aliases": [
891
- "cli:latestrc:build"
892
- ],
952
+ "cli:tarballs:prepare": {
953
+ "aliases": [],
893
954
  "args": {},
894
- "description": "builds a new release from a designated starting point and optionally creates PR in Github",
955
+ "description": "remove unnecessary files from node_modules",
895
956
  "examples": [
896
- "<%= config.bin %> <%= command.id %>",
897
- "<%= config.bin %> <%= command.id %> --patch",
898
- "<%= config.bin %> <%= command.id %> --start-from-npm-dist-tag latest-rc --patch",
899
- "<%= config.bin %> <%= command.id %> --start-from-github-ref 7.144.0",
900
- "<%= config.bin %> <%= command.id %> --start-from-github-ref main",
901
- "<%= config.bin %> <%= command.id %> --start-from-github-ref f476e8e",
902
- "<%= config.bin %> <%= command.id %> --start-from-github-ref main --prerelease beta",
903
- "<%= config.bin %> <%= command.id %> --build-only",
904
- "<%= config.bin %> <%= command.id %> --only @salesforce/plugin-source,@salesforce/plugin-info@1.2.3"
957
+ "<%= config.bin %> <%= command.id %>"
905
958
  ],
906
959
  "flags": {
907
960
  "json": {
@@ -919,127 +972,102 @@
919
972
  "multiple": false,
920
973
  "type": "option"
921
974
  },
922
- "start-from-npm-dist-tag": {
923
- "aliases": [
924
- "rctag"
925
- ],
975
+ "dryrun": {
926
976
  "char": "d",
927
- "deprecateAliases": true,
928
- "name": "start-from-npm-dist-tag",
929
- "summary": "the npm dist-tag to start the release from, examples: nightly, latest-rc",
930
- "hasDynamicHelp": false,
931
- "multiple": false,
932
- "type": "option"
933
- },
934
- "start-from-github-ref": {
935
- "char": "g",
936
- "name": "start-from-github-ref",
937
- "summary": "a Github ref to start the release from, examples: main, 7.144.0, f476e8e",
938
- "hasDynamicHelp": false,
939
- "multiple": false,
940
- "type": "option"
941
- },
942
- "release-channel": {
943
- "char": "c",
944
- "name": "release-channel",
945
- "required": true,
946
- "summary": "the channel intended for this release, examples: nightly, latest-rc, latest, dev, beta, etc...",
947
- "hasDynamicHelp": false,
948
- "multiple": false,
949
- "type": "option"
950
- },
951
- "build-only": {
952
- "name": "build-only",
953
- "summary": "only build the release, do not git add/commit/push",
977
+ "name": "dryrun",
978
+ "summary": "only show what would be removed from node_modules",
954
979
  "allowNo": false,
955
980
  "type": "boolean"
956
981
  },
957
- "resolutions": {
958
- "name": "resolutions",
959
- "summary": "bump the versions of packages listed in the resolutions section",
960
- "allowNo": true,
961
- "type": "boolean"
962
- },
963
- "only": {
964
- "name": "only",
965
- "summary": "only bump the version of the packages passed in, uses latest if version is not provided",
966
- "delimiter": ",",
967
- "hasDynamicHelp": false,
968
- "multiple": true,
969
- "type": "option"
970
- },
971
- "pinned-deps": {
972
- "name": "pinned-deps",
973
- "summary": "bump the versions of the packages listed in the pinnedDependencies section",
974
- "allowNo": true,
975
- "type": "boolean"
976
- },
977
- "jit": {
978
- "name": "jit",
979
- "summary": "bump the versions of the packages listed in the jitPlugins (just-in-time) section",
980
- "allowNo": true,
982
+ "types": {
983
+ "char": "t",
984
+ "name": "types",
985
+ "summary": "remove all types (.d.ts) files from node_modules",
986
+ "allowNo": false,
981
987
  "type": "boolean"
982
988
  },
983
- "label": {
984
- "name": "label",
985
- "summary": "add one or more labels to the Github PR",
986
- "hasDynamicHelp": false,
987
- "multiple": true,
988
- "type": "option"
989
- },
990
- "patch": {
991
- "name": "patch",
992
- "summary": "bump the release as a patch of an existing version, not a new minor version",
989
+ "verbose": {
990
+ "name": "verbose",
991
+ "summary": "show all files paths being removed",
993
992
  "allowNo": false,
994
993
  "type": "boolean"
995
- },
996
- "empty": {
997
- "name": "empty",
998
- "summary": "create an empty release PR for pushing changes to later (version will still be bumped)",
994
+ }
995
+ },
996
+ "hasDynamicHelp": false,
997
+ "hiddenAliases": [],
998
+ "id": "cli:tarballs:prepare",
999
+ "pluginAlias": "@salesforce/plugin-release-management",
1000
+ "pluginName": "@salesforce/plugin-release-management",
1001
+ "pluginType": "core",
1002
+ "strict": true,
1003
+ "summary": "remove unnecessary files from node_modules",
1004
+ "enableJsonFlag": true,
1005
+ "isESM": true,
1006
+ "relativePath": [
1007
+ "lib",
1008
+ "commands",
1009
+ "cli",
1010
+ "tarballs",
1011
+ "prepare.js"
1012
+ ]
1013
+ },
1014
+ "cli:tarballs:smoke": {
1015
+ "aliases": [],
1016
+ "args": {},
1017
+ "description": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
1018
+ "examples": [
1019
+ "<%= config.bin %> <%= command.id %>",
1020
+ "<%= config.bin %> <%= command.id %>"
1021
+ ],
1022
+ "flags": {
1023
+ "json": {
1024
+ "description": "Format output as json.",
1025
+ "helpGroup": "GLOBAL",
1026
+ "name": "json",
999
1027
  "allowNo": false,
1000
1028
  "type": "boolean"
1001
1029
  },
1002
- "pr-base-branch": {
1003
- "name": "pr-base-branch",
1004
- "summary": "base branch to create the PR against; if not specified, the build determines the branch for you",
1030
+ "flags-dir": {
1031
+ "helpGroup": "GLOBAL",
1032
+ "name": "flags-dir",
1033
+ "summary": "Import flag values from a directory.",
1005
1034
  "hasDynamicHelp": false,
1006
1035
  "multiple": false,
1007
1036
  "type": "option"
1037
+ },
1038
+ "verbose": {
1039
+ "name": "verbose",
1040
+ "summary": "show the --help output for each command",
1041
+ "allowNo": false,
1042
+ "type": "boolean"
1008
1043
  }
1009
1044
  },
1010
1045
  "hasDynamicHelp": false,
1011
1046
  "hiddenAliases": [],
1012
- "id": "cli:release:build",
1047
+ "id": "cli:tarballs:smoke",
1013
1048
  "pluginAlias": "@salesforce/plugin-release-management",
1014
1049
  "pluginName": "@salesforce/plugin-release-management",
1015
1050
  "pluginType": "core",
1016
1051
  "strict": true,
1017
- "summary": "builds a new release from a designated starting point and optionally creates PR in Github",
1052
+ "summary": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
1018
1053
  "enableJsonFlag": true,
1019
1054
  "isESM": true,
1020
1055
  "relativePath": [
1021
1056
  "lib",
1022
1057
  "commands",
1023
1058
  "cli",
1024
- "release",
1025
- "build.js"
1059
+ "tarballs",
1060
+ "smoke.js"
1026
1061
  ]
1027
1062
  },
1028
- "cli:versions:inspect": {
1063
+ "cli:tarballs:verify": {
1029
1064
  "aliases": [],
1030
1065
  "args": {},
1031
- "description": "inspect the CLI version across all install paths",
1066
+ "description": "verify that tarballs are ready to be uploaded",
1032
1067
  "examples": [
1033
- "<%= config.bin %> <%= command.id %> -l archive -c stable",
1034
- "<%= config.bin %> <%= command.id %> -l archive -c stable-rc",
1035
- "<%= config.bin %> <%= command.id %> -l archive npm -c stable",
1036
- "<%= config.bin %> <%= command.id %> -l archive npm -c latest",
1037
- "<%= config.bin %> <%= command.id %> -l archive npm -c latest latest-rc",
1038
- "<%= config.bin %> <%= command.id %> -l archive npm -c stable stable-rc",
1039
- "<%= config.bin %> <%= command.id %> -l npm -c latest --salesforce",
1040
- "<%= config.bin %> <%= command.id %> -l npm -c latest -d @salesforce/core",
1041
- "<%= config.bin %> <%= command.id %> -l npm -c latest -d @salesforce/\\*\\*/ salesforce-alm",
1042
- "<%= config.bin %> <%= command.id %> -l npm -c latest -d chalk -s"
1068
+ "<%= config.bin %> <%= command.id %>",
1069
+ "<%= config.bin %> <%= command.id %> --cli sfdx",
1070
+ "<%= config.bin %> <%= command.id %> --cli sf"
1043
1071
  ],
1044
1072
  "flags": {
1045
1073
  "json": {
@@ -1057,73 +1085,45 @@
1057
1085
  "multiple": false,
1058
1086
  "type": "option"
1059
1087
  },
1060
- "dependencies": {
1061
- "char": "d",
1062
- "name": "dependencies",
1063
- "summary": "glob pattern of dependencies you want to see the version of",
1064
- "hasDynamicHelp": false,
1065
- "multiple": true,
1066
- "type": "option"
1067
- },
1068
- "salesforce": {
1069
- "char": "s",
1070
- "name": "salesforce",
1071
- "summary": "show versions of salesforce owned dependencies",
1072
- "allowNo": false,
1073
- "type": "boolean"
1074
- },
1075
- "channels": {
1088
+ "cli": {
1076
1089
  "char": "c",
1077
- "name": "channels",
1078
- "required": true,
1079
- "summary": "the channel you want to inspect (for achives, latest and latest-rc are translated to stable and stable-rc. And vice-versa for npm)",
1090
+ "name": "cli",
1091
+ "summary": "the cli to verify",
1092
+ "default": "sfdx",
1080
1093
  "hasDynamicHelp": false,
1081
- "multiple": true,
1094
+ "multiple": false,
1082
1095
  "options": [
1083
- "stable",
1084
- "stable-rc",
1085
- "latest",
1086
- "latest-rc",
1087
- "nightly"
1096
+ "sf",
1097
+ "sfdx"
1088
1098
  ],
1089
1099
  "type": "option"
1090
1100
  },
1091
- "locations": {
1092
- "char": "l",
1093
- "name": "locations",
1094
- "required": true,
1095
- "summary": "the location you want to inspect",
1101
+ "windows-username-buffer": {
1102
+ "char": "w",
1103
+ "name": "windows-username-buffer",
1104
+ "summary": "the number of characters to allow for windows usernames",
1105
+ "default": 41,
1096
1106
  "hasDynamicHelp": false,
1097
- "multiple": true,
1098
- "options": [
1099
- "archive",
1100
- "npm"
1101
- ],
1107
+ "multiple": false,
1102
1108
  "type": "option"
1103
- },
1104
- "ignore-missing": {
1105
- "name": "ignore-missing",
1106
- "summary": "skip missing archives. Useful when supporting new architectures in oclif",
1107
- "allowNo": false,
1108
- "type": "boolean"
1109
1109
  }
1110
1110
  },
1111
1111
  "hasDynamicHelp": false,
1112
1112
  "hiddenAliases": [],
1113
- "id": "cli:versions:inspect",
1113
+ "id": "cli:tarballs:verify",
1114
1114
  "pluginAlias": "@salesforce/plugin-release-management",
1115
1115
  "pluginName": "@salesforce/plugin-release-management",
1116
1116
  "pluginType": "core",
1117
1117
  "strict": true,
1118
- "summary": "inspect the CLI version across all install paths",
1118
+ "summary": "verify that tarballs are ready to be uploaded",
1119
1119
  "enableJsonFlag": true,
1120
1120
  "isESM": true,
1121
1121
  "relativePath": [
1122
1122
  "lib",
1123
1123
  "commands",
1124
1124
  "cli",
1125
- "versions",
1126
- "inspect.js"
1125
+ "tarballs",
1126
+ "verify.js"
1127
1127
  ]
1128
1128
  },
1129
1129
  "github:check:closed": {
@@ -1390,5 +1390,5 @@
1390
1390
  ]
1391
1391
  }
1392
1392
  },
1393
- "version": "5.7.100"
1393
+ "version": "5.7.102"
1394
1394
  }