oclif 4.15.24 → 4.15.26
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/oclif.manifest.json +173 -173
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -652,14 +652,32 @@
|
|
|
652
652
|
"hook.js"
|
|
653
653
|
]
|
|
654
654
|
},
|
|
655
|
-
"
|
|
655
|
+
"pack:deb": {
|
|
656
656
|
"aliases": [],
|
|
657
657
|
"args": {},
|
|
658
|
-
"description": "
|
|
658
|
+
"description": "Add a pretarball script to your package.json if you need to run any scripts before the tarball is created.",
|
|
659
659
|
"flags": {
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"
|
|
660
|
+
"compression": {
|
|
661
|
+
"char": "z",
|
|
662
|
+
"description": "For more details see the `-Zcompress-type` section at https://man7.org/linux/man-pages/man1/dpkg-deb.1.html",
|
|
663
|
+
"name": "compression",
|
|
664
|
+
"summary": "Override the default compression used by dpkg-deb.",
|
|
665
|
+
"hasDynamicHelp": false,
|
|
666
|
+
"multiple": false,
|
|
667
|
+
"options": [
|
|
668
|
+
"gzip",
|
|
669
|
+
"none",
|
|
670
|
+
"xz",
|
|
671
|
+
"zstd"
|
|
672
|
+
],
|
|
673
|
+
"type": "option"
|
|
674
|
+
},
|
|
675
|
+
"prune-lockfiles": {
|
|
676
|
+
"description": "remove lockfiles in the tarball.",
|
|
677
|
+
"exclusive": [
|
|
678
|
+
"tarball"
|
|
679
|
+
],
|
|
680
|
+
"name": "prune-lockfiles",
|
|
663
681
|
"allowNo": false,
|
|
664
682
|
"type": "boolean"
|
|
665
683
|
},
|
|
@@ -672,32 +690,56 @@
|
|
|
672
690
|
"hasDynamicHelp": false,
|
|
673
691
|
"multiple": false,
|
|
674
692
|
"type": "option"
|
|
693
|
+
},
|
|
694
|
+
"tarball": {
|
|
695
|
+
"char": "t",
|
|
696
|
+
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
697
|
+
"exclusive": [
|
|
698
|
+
"prune-lockfiles"
|
|
699
|
+
],
|
|
700
|
+
"name": "tarball",
|
|
701
|
+
"required": false,
|
|
702
|
+
"hasDynamicHelp": false,
|
|
703
|
+
"multiple": false,
|
|
704
|
+
"type": "option"
|
|
675
705
|
}
|
|
676
706
|
},
|
|
677
707
|
"hasDynamicHelp": false,
|
|
678
708
|
"hiddenAliases": [],
|
|
679
|
-
"id": "
|
|
709
|
+
"id": "pack:deb",
|
|
680
710
|
"pluginAlias": "oclif",
|
|
681
711
|
"pluginName": "oclif",
|
|
682
712
|
"pluginType": "core",
|
|
683
713
|
"strict": true,
|
|
714
|
+
"summary": "Pack CLI into debian package.",
|
|
684
715
|
"enableJsonFlag": false,
|
|
685
716
|
"isESM": false,
|
|
686
717
|
"relativePath": [
|
|
687
718
|
"lib",
|
|
688
719
|
"commands",
|
|
689
|
-
"
|
|
720
|
+
"pack",
|
|
690
721
|
"deb.js"
|
|
691
722
|
]
|
|
692
723
|
},
|
|
693
|
-
"
|
|
724
|
+
"pack:macos": {
|
|
694
725
|
"aliases": [],
|
|
695
726
|
"args": {},
|
|
696
|
-
"description": "
|
|
727
|
+
"description": "Add a pretarball script to your package.json if you need to run any scripts before the tarball is created.",
|
|
697
728
|
"flags": {
|
|
698
|
-
"
|
|
699
|
-
"description": "
|
|
700
|
-
"
|
|
729
|
+
"additional-cli": {
|
|
730
|
+
"description": "An Oclif CLI other than the one listed in config.bin that should be made available to the user\nthe CLI should already exist in a directory named after the CLI that is the root of the tarball produced by \"oclif pack:tarballs\"",
|
|
731
|
+
"hidden": true,
|
|
732
|
+
"name": "additional-cli",
|
|
733
|
+
"hasDynamicHelp": false,
|
|
734
|
+
"multiple": false,
|
|
735
|
+
"type": "option"
|
|
736
|
+
},
|
|
737
|
+
"prune-lockfiles": {
|
|
738
|
+
"description": "remove lockfiles in the tarball.",
|
|
739
|
+
"exclusive": [
|
|
740
|
+
"tarball"
|
|
741
|
+
],
|
|
742
|
+
"name": "prune-lockfiles",
|
|
701
743
|
"allowNo": false,
|
|
702
744
|
"type": "boolean"
|
|
703
745
|
},
|
|
@@ -711,9 +753,20 @@
|
|
|
711
753
|
"multiple": false,
|
|
712
754
|
"type": "option"
|
|
713
755
|
},
|
|
714
|
-
"
|
|
756
|
+
"tarball": {
|
|
715
757
|
"char": "t",
|
|
716
|
-
"description": "
|
|
758
|
+
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
759
|
+
"exclusive": [
|
|
760
|
+
"prune-lockfiles"
|
|
761
|
+
],
|
|
762
|
+
"name": "tarball",
|
|
763
|
+
"required": false,
|
|
764
|
+
"hasDynamicHelp": false,
|
|
765
|
+
"multiple": false,
|
|
766
|
+
"type": "option"
|
|
767
|
+
},
|
|
768
|
+
"targets": {
|
|
769
|
+
"description": "Comma-separated targets to pack (e.g.: darwin-x64,darwin-arm64).",
|
|
717
770
|
"name": "targets",
|
|
718
771
|
"hasDynamicHelp": false,
|
|
719
772
|
"multiple": false,
|
|
@@ -722,28 +775,35 @@
|
|
|
722
775
|
},
|
|
723
776
|
"hasDynamicHelp": false,
|
|
724
777
|
"hiddenAliases": [],
|
|
725
|
-
"id": "
|
|
778
|
+
"id": "pack:macos",
|
|
726
779
|
"pluginAlias": "oclif",
|
|
727
780
|
"pluginName": "oclif",
|
|
728
781
|
"pluginType": "core",
|
|
729
782
|
"strict": true,
|
|
783
|
+
"summary": "Pack CLI into macOS .pkg",
|
|
730
784
|
"enableJsonFlag": false,
|
|
731
785
|
"isESM": false,
|
|
732
786
|
"relativePath": [
|
|
733
787
|
"lib",
|
|
734
788
|
"commands",
|
|
735
|
-
"
|
|
789
|
+
"pack",
|
|
736
790
|
"macos.js"
|
|
737
791
|
]
|
|
738
792
|
},
|
|
739
|
-
"
|
|
793
|
+
"pack:tarballs": {
|
|
740
794
|
"aliases": [],
|
|
741
795
|
"args": {},
|
|
742
|
-
"description": "
|
|
796
|
+
"description": "This can be used to create oclif CLIs that use the system node or that come preloaded with a node binary.\n\nAdd a pretarball script to your package.json if you need to run any scripts before the tarball is created.",
|
|
743
797
|
"flags": {
|
|
744
|
-
"
|
|
745
|
-
"description": "
|
|
746
|
-
"name": "
|
|
798
|
+
"parallel": {
|
|
799
|
+
"description": "Build tarballs in parallel.",
|
|
800
|
+
"name": "parallel",
|
|
801
|
+
"allowNo": false,
|
|
802
|
+
"type": "boolean"
|
|
803
|
+
},
|
|
804
|
+
"prune-lockfiles": {
|
|
805
|
+
"description": "remove lockfiles in the tarball.",
|
|
806
|
+
"name": "prune-lockfiles",
|
|
747
807
|
"allowNo": false,
|
|
748
808
|
"type": "boolean"
|
|
749
809
|
},
|
|
@@ -757,16 +817,25 @@
|
|
|
757
817
|
"multiple": false,
|
|
758
818
|
"type": "option"
|
|
759
819
|
},
|
|
820
|
+
"tarball": {
|
|
821
|
+
"char": "l",
|
|
822
|
+
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
823
|
+
"name": "tarball",
|
|
824
|
+
"required": false,
|
|
825
|
+
"hasDynamicHelp": false,
|
|
826
|
+
"multiple": false,
|
|
827
|
+
"type": "option"
|
|
828
|
+
},
|
|
760
829
|
"targets": {
|
|
761
830
|
"char": "t",
|
|
762
|
-
"description": "Comma-separated targets to
|
|
831
|
+
"description": "Comma-separated targets to pack (e.g.: linux-arm,win32-x64).",
|
|
763
832
|
"name": "targets",
|
|
764
833
|
"hasDynamicHelp": false,
|
|
765
834
|
"multiple": false,
|
|
766
835
|
"type": "option"
|
|
767
836
|
},
|
|
768
837
|
"xz": {
|
|
769
|
-
"description": "Also
|
|
838
|
+
"description": "Also build xz.",
|
|
770
839
|
"name": "xz",
|
|
771
840
|
"allowNo": true,
|
|
772
841
|
"type": "boolean"
|
|
@@ -774,28 +843,54 @@
|
|
|
774
843
|
},
|
|
775
844
|
"hasDynamicHelp": false,
|
|
776
845
|
"hiddenAliases": [],
|
|
777
|
-
"id": "
|
|
846
|
+
"id": "pack:tarballs",
|
|
778
847
|
"pluginAlias": "oclif",
|
|
779
848
|
"pluginName": "oclif",
|
|
780
849
|
"pluginType": "core",
|
|
781
850
|
"strict": true,
|
|
851
|
+
"summary": "Package oclif CLI into tarballs.",
|
|
782
852
|
"enableJsonFlag": false,
|
|
783
853
|
"isESM": false,
|
|
784
854
|
"relativePath": [
|
|
785
855
|
"lib",
|
|
786
856
|
"commands",
|
|
787
|
-
"
|
|
857
|
+
"pack",
|
|
788
858
|
"tarballs.js"
|
|
789
859
|
]
|
|
790
860
|
},
|
|
791
|
-
"
|
|
861
|
+
"pack:win": {
|
|
792
862
|
"aliases": [],
|
|
793
863
|
"args": {},
|
|
794
|
-
"description": "
|
|
864
|
+
"description": "You need to have 7zip, nsis (makensis), and grep installed on your machine in order to run this command.\n\nThis command will produce unsigned installers unless you supply WINDOWS_SIGNING_PASS (prefixed with the name of your executable, e.g. OCLIF_WINDOWS_SIGNING_PASS) in the environment and have set the windows.name and windows.keypath properties in your package.json's oclif property.\n\nAdd a pretarball script to your package.json if you need to run any scripts before the tarball is created.",
|
|
795
865
|
"flags": {
|
|
796
|
-
"
|
|
797
|
-
"description": "
|
|
798
|
-
"
|
|
866
|
+
"additional-cli": {
|
|
867
|
+
"description": "An Oclif CLI other than the one listed in config.bin that should be made available to the user\nthe CLI should already exist in a directory named after the CLI that is the root of the tarball produced by \"oclif pack:tarballs\".",
|
|
868
|
+
"hidden": true,
|
|
869
|
+
"name": "additional-cli",
|
|
870
|
+
"hasDynamicHelp": false,
|
|
871
|
+
"multiple": false,
|
|
872
|
+
"type": "option"
|
|
873
|
+
},
|
|
874
|
+
"defender-exclusion": {
|
|
875
|
+
"description": "There is no way to set a hidden checkbox with \"true\" as a default...the user can always allow full security",
|
|
876
|
+
"name": "defender-exclusion",
|
|
877
|
+
"summary": "Set to \"checked\" or \"unchecked\" to set the default value for the checkbox. Set to \"hidden\" to hide the option (will let defender do its thing).",
|
|
878
|
+
"default": "checked",
|
|
879
|
+
"hasDynamicHelp": false,
|
|
880
|
+
"multiple": false,
|
|
881
|
+
"options": [
|
|
882
|
+
"checked",
|
|
883
|
+
"unchecked",
|
|
884
|
+
"hidden"
|
|
885
|
+
],
|
|
886
|
+
"type": "option"
|
|
887
|
+
},
|
|
888
|
+
"prune-lockfiles": {
|
|
889
|
+
"description": "remove lockfiles in the tarball.",
|
|
890
|
+
"exclusive": [
|
|
891
|
+
"tarball"
|
|
892
|
+
],
|
|
893
|
+
"name": "prune-lockfiles",
|
|
799
894
|
"allowNo": false,
|
|
800
895
|
"type": "boolean"
|
|
801
896
|
},
|
|
@@ -809,6 +904,18 @@
|
|
|
809
904
|
"multiple": false,
|
|
810
905
|
"type": "option"
|
|
811
906
|
},
|
|
907
|
+
"tarball": {
|
|
908
|
+
"char": "t",
|
|
909
|
+
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
910
|
+
"exclusive": [
|
|
911
|
+
"prune-lockfiles"
|
|
912
|
+
],
|
|
913
|
+
"name": "tarball",
|
|
914
|
+
"required": false,
|
|
915
|
+
"hasDynamicHelp": false,
|
|
916
|
+
"multiple": false,
|
|
917
|
+
"type": "option"
|
|
918
|
+
},
|
|
812
919
|
"targets": {
|
|
813
920
|
"description": "Comma-separated targets to pack (e.g.: win32-x64,win32-x86,win32-arm64).",
|
|
814
921
|
"name": "targets",
|
|
@@ -819,46 +926,29 @@
|
|
|
819
926
|
},
|
|
820
927
|
"hasDynamicHelp": false,
|
|
821
928
|
"hiddenAliases": [],
|
|
822
|
-
"id": "
|
|
929
|
+
"id": "pack:win",
|
|
823
930
|
"pluginAlias": "oclif",
|
|
824
931
|
"pluginName": "oclif",
|
|
825
932
|
"pluginType": "core",
|
|
826
933
|
"strict": true,
|
|
934
|
+
"summary": "Create windows installer from oclif CLI",
|
|
827
935
|
"enableJsonFlag": false,
|
|
828
936
|
"isESM": false,
|
|
829
937
|
"relativePath": [
|
|
830
938
|
"lib",
|
|
831
939
|
"commands",
|
|
832
|
-
"
|
|
940
|
+
"pack",
|
|
833
941
|
"win.js"
|
|
834
942
|
]
|
|
835
943
|
},
|
|
836
|
-
"
|
|
944
|
+
"upload:deb": {
|
|
837
945
|
"aliases": [],
|
|
838
946
|
"args": {},
|
|
839
|
-
"description": "
|
|
947
|
+
"description": "Upload deb package built with `pack deb`.",
|
|
840
948
|
"flags": {
|
|
841
|
-
"
|
|
842
|
-
"
|
|
843
|
-
"
|
|
844
|
-
"name": "compression",
|
|
845
|
-
"summary": "Override the default compression used by dpkg-deb.",
|
|
846
|
-
"hasDynamicHelp": false,
|
|
847
|
-
"multiple": false,
|
|
848
|
-
"options": [
|
|
849
|
-
"gzip",
|
|
850
|
-
"none",
|
|
851
|
-
"xz",
|
|
852
|
-
"zstd"
|
|
853
|
-
],
|
|
854
|
-
"type": "option"
|
|
855
|
-
},
|
|
856
|
-
"prune-lockfiles": {
|
|
857
|
-
"description": "remove lockfiles in the tarball.",
|
|
858
|
-
"exclusive": [
|
|
859
|
-
"tarball"
|
|
860
|
-
],
|
|
861
|
-
"name": "prune-lockfiles",
|
|
949
|
+
"dry-run": {
|
|
950
|
+
"description": "Run the command without uploading to S3.",
|
|
951
|
+
"name": "dry-run",
|
|
862
952
|
"allowNo": false,
|
|
863
953
|
"type": "boolean"
|
|
864
954
|
},
|
|
@@ -871,56 +961,32 @@
|
|
|
871
961
|
"hasDynamicHelp": false,
|
|
872
962
|
"multiple": false,
|
|
873
963
|
"type": "option"
|
|
874
|
-
},
|
|
875
|
-
"tarball": {
|
|
876
|
-
"char": "t",
|
|
877
|
-
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
878
|
-
"exclusive": [
|
|
879
|
-
"prune-lockfiles"
|
|
880
|
-
],
|
|
881
|
-
"name": "tarball",
|
|
882
|
-
"required": false,
|
|
883
|
-
"hasDynamicHelp": false,
|
|
884
|
-
"multiple": false,
|
|
885
|
-
"type": "option"
|
|
886
964
|
}
|
|
887
965
|
},
|
|
888
966
|
"hasDynamicHelp": false,
|
|
889
967
|
"hiddenAliases": [],
|
|
890
|
-
"id": "
|
|
968
|
+
"id": "upload:deb",
|
|
891
969
|
"pluginAlias": "oclif",
|
|
892
970
|
"pluginName": "oclif",
|
|
893
971
|
"pluginType": "core",
|
|
894
972
|
"strict": true,
|
|
895
|
-
"summary": "Pack CLI into debian package.",
|
|
896
973
|
"enableJsonFlag": false,
|
|
897
974
|
"isESM": false,
|
|
898
975
|
"relativePath": [
|
|
899
976
|
"lib",
|
|
900
977
|
"commands",
|
|
901
|
-
"
|
|
978
|
+
"upload",
|
|
902
979
|
"deb.js"
|
|
903
980
|
]
|
|
904
981
|
},
|
|
905
|
-
"
|
|
982
|
+
"upload:macos": {
|
|
906
983
|
"aliases": [],
|
|
907
984
|
"args": {},
|
|
908
|
-
"description": "
|
|
985
|
+
"description": "Upload macos installers built with `pack macos`.",
|
|
909
986
|
"flags": {
|
|
910
|
-
"
|
|
911
|
-
"description": "
|
|
912
|
-
"
|
|
913
|
-
"name": "additional-cli",
|
|
914
|
-
"hasDynamicHelp": false,
|
|
915
|
-
"multiple": false,
|
|
916
|
-
"type": "option"
|
|
917
|
-
},
|
|
918
|
-
"prune-lockfiles": {
|
|
919
|
-
"description": "remove lockfiles in the tarball.",
|
|
920
|
-
"exclusive": [
|
|
921
|
-
"tarball"
|
|
922
|
-
],
|
|
923
|
-
"name": "prune-lockfiles",
|
|
987
|
+
"dry-run": {
|
|
988
|
+
"description": "Run the command without uploading to S3.",
|
|
989
|
+
"name": "dry-run",
|
|
924
990
|
"allowNo": false,
|
|
925
991
|
"type": "boolean"
|
|
926
992
|
},
|
|
@@ -934,20 +1000,9 @@
|
|
|
934
1000
|
"multiple": false,
|
|
935
1001
|
"type": "option"
|
|
936
1002
|
},
|
|
937
|
-
"tarball": {
|
|
938
|
-
"char": "t",
|
|
939
|
-
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
940
|
-
"exclusive": [
|
|
941
|
-
"prune-lockfiles"
|
|
942
|
-
],
|
|
943
|
-
"name": "tarball",
|
|
944
|
-
"required": false,
|
|
945
|
-
"hasDynamicHelp": false,
|
|
946
|
-
"multiple": false,
|
|
947
|
-
"type": "option"
|
|
948
|
-
},
|
|
949
1003
|
"targets": {
|
|
950
|
-
"
|
|
1004
|
+
"char": "t",
|
|
1005
|
+
"description": "Comma-separated targets to upload (e.g.: darwin-x64,darwin-arm64).",
|
|
951
1006
|
"name": "targets",
|
|
952
1007
|
"hasDynamicHelp": false,
|
|
953
1008
|
"multiple": false,
|
|
@@ -956,35 +1011,28 @@
|
|
|
956
1011
|
},
|
|
957
1012
|
"hasDynamicHelp": false,
|
|
958
1013
|
"hiddenAliases": [],
|
|
959
|
-
"id": "
|
|
1014
|
+
"id": "upload:macos",
|
|
960
1015
|
"pluginAlias": "oclif",
|
|
961
1016
|
"pluginName": "oclif",
|
|
962
1017
|
"pluginType": "core",
|
|
963
1018
|
"strict": true,
|
|
964
|
-
"summary": "Pack CLI into macOS .pkg",
|
|
965
1019
|
"enableJsonFlag": false,
|
|
966
1020
|
"isESM": false,
|
|
967
1021
|
"relativePath": [
|
|
968
1022
|
"lib",
|
|
969
1023
|
"commands",
|
|
970
|
-
"
|
|
1024
|
+
"upload",
|
|
971
1025
|
"macos.js"
|
|
972
1026
|
]
|
|
973
1027
|
},
|
|
974
|
-
"
|
|
1028
|
+
"upload:tarballs": {
|
|
975
1029
|
"aliases": [],
|
|
976
1030
|
"args": {},
|
|
977
|
-
"description": "
|
|
1031
|
+
"description": "Upload an oclif CLI to S3.",
|
|
978
1032
|
"flags": {
|
|
979
|
-
"
|
|
980
|
-
"description": "
|
|
981
|
-
"name": "
|
|
982
|
-
"allowNo": false,
|
|
983
|
-
"type": "boolean"
|
|
984
|
-
},
|
|
985
|
-
"prune-lockfiles": {
|
|
986
|
-
"description": "remove lockfiles in the tarball.",
|
|
987
|
-
"name": "prune-lockfiles",
|
|
1033
|
+
"dry-run": {
|
|
1034
|
+
"description": "Run the command without uploading to S3.",
|
|
1035
|
+
"name": "dry-run",
|
|
988
1036
|
"allowNo": false,
|
|
989
1037
|
"type": "boolean"
|
|
990
1038
|
},
|
|
@@ -998,25 +1046,16 @@
|
|
|
998
1046
|
"multiple": false,
|
|
999
1047
|
"type": "option"
|
|
1000
1048
|
},
|
|
1001
|
-
"tarball": {
|
|
1002
|
-
"char": "l",
|
|
1003
|
-
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
1004
|
-
"name": "tarball",
|
|
1005
|
-
"required": false,
|
|
1006
|
-
"hasDynamicHelp": false,
|
|
1007
|
-
"multiple": false,
|
|
1008
|
-
"type": "option"
|
|
1009
|
-
},
|
|
1010
1049
|
"targets": {
|
|
1011
1050
|
"char": "t",
|
|
1012
|
-
"description": "Comma-separated targets to
|
|
1051
|
+
"description": "Comma-separated targets to upload (e.g.: linux-arm,win32-x64).",
|
|
1013
1052
|
"name": "targets",
|
|
1014
1053
|
"hasDynamicHelp": false,
|
|
1015
1054
|
"multiple": false,
|
|
1016
1055
|
"type": "option"
|
|
1017
1056
|
},
|
|
1018
1057
|
"xz": {
|
|
1019
|
-
"description": "Also
|
|
1058
|
+
"description": "Also upload xz.",
|
|
1020
1059
|
"name": "xz",
|
|
1021
1060
|
"allowNo": true,
|
|
1022
1061
|
"type": "boolean"
|
|
@@ -1024,54 +1063,28 @@
|
|
|
1024
1063
|
},
|
|
1025
1064
|
"hasDynamicHelp": false,
|
|
1026
1065
|
"hiddenAliases": [],
|
|
1027
|
-
"id": "
|
|
1066
|
+
"id": "upload:tarballs",
|
|
1028
1067
|
"pluginAlias": "oclif",
|
|
1029
1068
|
"pluginName": "oclif",
|
|
1030
1069
|
"pluginType": "core",
|
|
1031
1070
|
"strict": true,
|
|
1032
|
-
"summary": "Package oclif CLI into tarballs.",
|
|
1033
1071
|
"enableJsonFlag": false,
|
|
1034
1072
|
"isESM": false,
|
|
1035
1073
|
"relativePath": [
|
|
1036
1074
|
"lib",
|
|
1037
1075
|
"commands",
|
|
1038
|
-
"
|
|
1076
|
+
"upload",
|
|
1039
1077
|
"tarballs.js"
|
|
1040
1078
|
]
|
|
1041
1079
|
},
|
|
1042
|
-
"
|
|
1080
|
+
"upload:win": {
|
|
1043
1081
|
"aliases": [],
|
|
1044
1082
|
"args": {},
|
|
1045
|
-
"description": "
|
|
1083
|
+
"description": "Upload windows installers built with `pack win`.",
|
|
1046
1084
|
"flags": {
|
|
1047
|
-
"
|
|
1048
|
-
"description": "
|
|
1049
|
-
"
|
|
1050
|
-
"name": "additional-cli",
|
|
1051
|
-
"hasDynamicHelp": false,
|
|
1052
|
-
"multiple": false,
|
|
1053
|
-
"type": "option"
|
|
1054
|
-
},
|
|
1055
|
-
"defender-exclusion": {
|
|
1056
|
-
"description": "There is no way to set a hidden checkbox with \"true\" as a default...the user can always allow full security",
|
|
1057
|
-
"name": "defender-exclusion",
|
|
1058
|
-
"summary": "Set to \"checked\" or \"unchecked\" to set the default value for the checkbox. Set to \"hidden\" to hide the option (will let defender do its thing).",
|
|
1059
|
-
"default": "checked",
|
|
1060
|
-
"hasDynamicHelp": false,
|
|
1061
|
-
"multiple": false,
|
|
1062
|
-
"options": [
|
|
1063
|
-
"checked",
|
|
1064
|
-
"unchecked",
|
|
1065
|
-
"hidden"
|
|
1066
|
-
],
|
|
1067
|
-
"type": "option"
|
|
1068
|
-
},
|
|
1069
|
-
"prune-lockfiles": {
|
|
1070
|
-
"description": "remove lockfiles in the tarball.",
|
|
1071
|
-
"exclusive": [
|
|
1072
|
-
"tarball"
|
|
1073
|
-
],
|
|
1074
|
-
"name": "prune-lockfiles",
|
|
1085
|
+
"dry-run": {
|
|
1086
|
+
"description": "Run the command without uploading to S3.",
|
|
1087
|
+
"name": "dry-run",
|
|
1075
1088
|
"allowNo": false,
|
|
1076
1089
|
"type": "boolean"
|
|
1077
1090
|
},
|
|
@@ -1085,18 +1098,6 @@
|
|
|
1085
1098
|
"multiple": false,
|
|
1086
1099
|
"type": "option"
|
|
1087
1100
|
},
|
|
1088
|
-
"tarball": {
|
|
1089
|
-
"char": "t",
|
|
1090
|
-
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
1091
|
-
"exclusive": [
|
|
1092
|
-
"prune-lockfiles"
|
|
1093
|
-
],
|
|
1094
|
-
"name": "tarball",
|
|
1095
|
-
"required": false,
|
|
1096
|
-
"hasDynamicHelp": false,
|
|
1097
|
-
"multiple": false,
|
|
1098
|
-
"type": "option"
|
|
1099
|
-
},
|
|
1100
1101
|
"targets": {
|
|
1101
1102
|
"description": "Comma-separated targets to pack (e.g.: win32-x64,win32-x86,win32-arm64).",
|
|
1102
1103
|
"name": "targets",
|
|
@@ -1107,21 +1108,20 @@
|
|
|
1107
1108
|
},
|
|
1108
1109
|
"hasDynamicHelp": false,
|
|
1109
1110
|
"hiddenAliases": [],
|
|
1110
|
-
"id": "
|
|
1111
|
+
"id": "upload:win",
|
|
1111
1112
|
"pluginAlias": "oclif",
|
|
1112
1113
|
"pluginName": "oclif",
|
|
1113
1114
|
"pluginType": "core",
|
|
1114
1115
|
"strict": true,
|
|
1115
|
-
"summary": "Create windows installer from oclif CLI",
|
|
1116
1116
|
"enableJsonFlag": false,
|
|
1117
1117
|
"isESM": false,
|
|
1118
1118
|
"relativePath": [
|
|
1119
1119
|
"lib",
|
|
1120
1120
|
"commands",
|
|
1121
|
-
"
|
|
1121
|
+
"upload",
|
|
1122
1122
|
"win.js"
|
|
1123
1123
|
]
|
|
1124
1124
|
}
|
|
1125
1125
|
},
|
|
1126
|
-
"version": "4.15.
|
|
1126
|
+
"version": "4.15.26"
|
|
1127
1127
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oclif",
|
|
3
3
|
"description": "oclif: create your own CLI",
|
|
4
|
-
"version": "4.15.
|
|
4
|
+
"version": "4.15.26",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"oclif": "bin/run.js"
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"bugs": "https://github.com/oclif/oclif/issues",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@aws-sdk/client-cloudfront": "^3.687.0",
|
|
12
|
-
"@aws-sdk/client-s3": "^3.
|
|
12
|
+
"@aws-sdk/client-s3": "^3.693.0",
|
|
13
13
|
"@inquirer/confirm": "^3.1.22",
|
|
14
14
|
"@inquirer/input": "^2.2.4",
|
|
15
15
|
"@inquirer/select": "^2.5.0",
|