oclif 4.23.4 → 4.23.6
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
|
@@ -666,14 +666,32 @@
|
|
|
666
666
|
"hook.js"
|
|
667
667
|
]
|
|
668
668
|
},
|
|
669
|
-
"
|
|
669
|
+
"pack:deb": {
|
|
670
670
|
"aliases": [],
|
|
671
671
|
"args": {},
|
|
672
|
-
"description": "
|
|
672
|
+
"description": "Add a pretarball script to your package.json if you need to run any scripts before the tarball is created.",
|
|
673
673
|
"flags": {
|
|
674
|
-
"
|
|
675
|
-
"
|
|
676
|
-
"
|
|
674
|
+
"compression": {
|
|
675
|
+
"char": "z",
|
|
676
|
+
"description": "For more details see the `-Zcompress-type` section at https://man7.org/linux/man-pages/man1/dpkg-deb.1.html",
|
|
677
|
+
"name": "compression",
|
|
678
|
+
"summary": "Override the default compression used by dpkg-deb.",
|
|
679
|
+
"hasDynamicHelp": false,
|
|
680
|
+
"multiple": false,
|
|
681
|
+
"options": [
|
|
682
|
+
"gzip",
|
|
683
|
+
"none",
|
|
684
|
+
"xz",
|
|
685
|
+
"zstd"
|
|
686
|
+
],
|
|
687
|
+
"type": "option"
|
|
688
|
+
},
|
|
689
|
+
"prune-lockfiles": {
|
|
690
|
+
"description": "remove lockfiles in the tarball.",
|
|
691
|
+
"exclusive": [
|
|
692
|
+
"tarball"
|
|
693
|
+
],
|
|
694
|
+
"name": "prune-lockfiles",
|
|
677
695
|
"allowNo": false,
|
|
678
696
|
"type": "boolean"
|
|
679
697
|
},
|
|
@@ -694,32 +712,56 @@
|
|
|
694
712
|
"hasDynamicHelp": false,
|
|
695
713
|
"multiple": false,
|
|
696
714
|
"type": "option"
|
|
715
|
+
},
|
|
716
|
+
"tarball": {
|
|
717
|
+
"char": "t",
|
|
718
|
+
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
719
|
+
"exclusive": [
|
|
720
|
+
"prune-lockfiles"
|
|
721
|
+
],
|
|
722
|
+
"name": "tarball",
|
|
723
|
+
"required": false,
|
|
724
|
+
"hasDynamicHelp": false,
|
|
725
|
+
"multiple": false,
|
|
726
|
+
"type": "option"
|
|
697
727
|
}
|
|
698
728
|
},
|
|
699
729
|
"hasDynamicHelp": false,
|
|
700
730
|
"hiddenAliases": [],
|
|
701
|
-
"id": "
|
|
731
|
+
"id": "pack:deb",
|
|
702
732
|
"pluginAlias": "oclif",
|
|
703
733
|
"pluginName": "oclif",
|
|
704
734
|
"pluginType": "core",
|
|
705
735
|
"strict": true,
|
|
736
|
+
"summary": "Pack CLI into debian package.",
|
|
706
737
|
"enableJsonFlag": false,
|
|
707
738
|
"isESM": false,
|
|
708
739
|
"relativePath": [
|
|
709
740
|
"lib",
|
|
710
741
|
"commands",
|
|
711
|
-
"
|
|
742
|
+
"pack",
|
|
712
743
|
"deb.js"
|
|
713
744
|
]
|
|
714
745
|
},
|
|
715
|
-
"
|
|
746
|
+
"pack:macos": {
|
|
716
747
|
"aliases": [],
|
|
717
748
|
"args": {},
|
|
718
|
-
"description": "
|
|
749
|
+
"description": "Add a pretarball script to your package.json if you need to run any scripts before the tarball is created.",
|
|
719
750
|
"flags": {
|
|
720
|
-
"
|
|
721
|
-
"description": "
|
|
722
|
-
"
|
|
751
|
+
"additional-cli": {
|
|
752
|
+
"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\"",
|
|
753
|
+
"hidden": true,
|
|
754
|
+
"name": "additional-cli",
|
|
755
|
+
"hasDynamicHelp": false,
|
|
756
|
+
"multiple": false,
|
|
757
|
+
"type": "option"
|
|
758
|
+
},
|
|
759
|
+
"prune-lockfiles": {
|
|
760
|
+
"description": "remove lockfiles in the tarball.",
|
|
761
|
+
"exclusive": [
|
|
762
|
+
"tarball"
|
|
763
|
+
],
|
|
764
|
+
"name": "prune-lockfiles",
|
|
723
765
|
"allowNo": false,
|
|
724
766
|
"type": "boolean"
|
|
725
767
|
},
|
|
@@ -741,9 +783,20 @@
|
|
|
741
783
|
"multiple": false,
|
|
742
784
|
"type": "option"
|
|
743
785
|
},
|
|
744
|
-
"
|
|
786
|
+
"tarball": {
|
|
745
787
|
"char": "t",
|
|
746
|
-
"description": "
|
|
788
|
+
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
789
|
+
"exclusive": [
|
|
790
|
+
"prune-lockfiles"
|
|
791
|
+
],
|
|
792
|
+
"name": "tarball",
|
|
793
|
+
"required": false,
|
|
794
|
+
"hasDynamicHelp": false,
|
|
795
|
+
"multiple": false,
|
|
796
|
+
"type": "option"
|
|
797
|
+
},
|
|
798
|
+
"targets": {
|
|
799
|
+
"description": "Comma-separated targets to pack (e.g.: darwin-x64,darwin-arm64).",
|
|
747
800
|
"name": "targets",
|
|
748
801
|
"hasDynamicHelp": false,
|
|
749
802
|
"multiple": false,
|
|
@@ -752,28 +805,35 @@
|
|
|
752
805
|
},
|
|
753
806
|
"hasDynamicHelp": false,
|
|
754
807
|
"hiddenAliases": [],
|
|
755
|
-
"id": "
|
|
808
|
+
"id": "pack:macos",
|
|
756
809
|
"pluginAlias": "oclif",
|
|
757
810
|
"pluginName": "oclif",
|
|
758
811
|
"pluginType": "core",
|
|
759
812
|
"strict": true,
|
|
813
|
+
"summary": "Pack CLI into macOS .pkg",
|
|
760
814
|
"enableJsonFlag": false,
|
|
761
815
|
"isESM": false,
|
|
762
816
|
"relativePath": [
|
|
763
817
|
"lib",
|
|
764
818
|
"commands",
|
|
765
|
-
"
|
|
819
|
+
"pack",
|
|
766
820
|
"macos.js"
|
|
767
821
|
]
|
|
768
822
|
},
|
|
769
|
-
"
|
|
823
|
+
"pack:tarballs": {
|
|
770
824
|
"aliases": [],
|
|
771
825
|
"args": {},
|
|
772
|
-
"description": "
|
|
826
|
+
"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.",
|
|
773
827
|
"flags": {
|
|
774
|
-
"
|
|
775
|
-
"description": "
|
|
776
|
-
"name": "
|
|
828
|
+
"parallel": {
|
|
829
|
+
"description": "Build tarballs in parallel.",
|
|
830
|
+
"name": "parallel",
|
|
831
|
+
"allowNo": false,
|
|
832
|
+
"type": "boolean"
|
|
833
|
+
},
|
|
834
|
+
"prune-lockfiles": {
|
|
835
|
+
"description": "remove lockfiles in the tarball.",
|
|
836
|
+
"name": "prune-lockfiles",
|
|
777
837
|
"allowNo": false,
|
|
778
838
|
"type": "boolean"
|
|
779
839
|
},
|
|
@@ -795,16 +855,25 @@
|
|
|
795
855
|
"multiple": false,
|
|
796
856
|
"type": "option"
|
|
797
857
|
},
|
|
858
|
+
"tarball": {
|
|
859
|
+
"char": "l",
|
|
860
|
+
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
861
|
+
"name": "tarball",
|
|
862
|
+
"required": false,
|
|
863
|
+
"hasDynamicHelp": false,
|
|
864
|
+
"multiple": false,
|
|
865
|
+
"type": "option"
|
|
866
|
+
},
|
|
798
867
|
"targets": {
|
|
799
868
|
"char": "t",
|
|
800
|
-
"description": "Comma-separated targets to
|
|
869
|
+
"description": "Comma-separated targets to pack (e.g.: linux-arm,win32-x64).",
|
|
801
870
|
"name": "targets",
|
|
802
871
|
"hasDynamicHelp": false,
|
|
803
872
|
"multiple": false,
|
|
804
873
|
"type": "option"
|
|
805
874
|
},
|
|
806
875
|
"xz": {
|
|
807
|
-
"description": "Also
|
|
876
|
+
"description": "Also build xz.",
|
|
808
877
|
"name": "xz",
|
|
809
878
|
"allowNo": true,
|
|
810
879
|
"type": "boolean"
|
|
@@ -812,28 +881,54 @@
|
|
|
812
881
|
},
|
|
813
882
|
"hasDynamicHelp": false,
|
|
814
883
|
"hiddenAliases": [],
|
|
815
|
-
"id": "
|
|
884
|
+
"id": "pack:tarballs",
|
|
816
885
|
"pluginAlias": "oclif",
|
|
817
886
|
"pluginName": "oclif",
|
|
818
887
|
"pluginType": "core",
|
|
819
888
|
"strict": true,
|
|
889
|
+
"summary": "Package oclif CLI into tarballs.",
|
|
820
890
|
"enableJsonFlag": false,
|
|
821
891
|
"isESM": false,
|
|
822
892
|
"relativePath": [
|
|
823
893
|
"lib",
|
|
824
894
|
"commands",
|
|
825
|
-
"
|
|
895
|
+
"pack",
|
|
826
896
|
"tarballs.js"
|
|
827
897
|
]
|
|
828
898
|
},
|
|
829
|
-
"
|
|
899
|
+
"pack:win": {
|
|
830
900
|
"aliases": [],
|
|
831
901
|
"args": {},
|
|
832
|
-
"description": "
|
|
902
|
+
"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.",
|
|
833
903
|
"flags": {
|
|
834
|
-
"
|
|
835
|
-
"description": "
|
|
836
|
-
"
|
|
904
|
+
"additional-cli": {
|
|
905
|
+
"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\".",
|
|
906
|
+
"hidden": true,
|
|
907
|
+
"name": "additional-cli",
|
|
908
|
+
"hasDynamicHelp": false,
|
|
909
|
+
"multiple": false,
|
|
910
|
+
"type": "option"
|
|
911
|
+
},
|
|
912
|
+
"defender-exclusion": {
|
|
913
|
+
"description": "There is no way to set a hidden checkbox with \"true\" as a default...the user can always allow full security",
|
|
914
|
+
"name": "defender-exclusion",
|
|
915
|
+
"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).",
|
|
916
|
+
"default": "checked",
|
|
917
|
+
"hasDynamicHelp": false,
|
|
918
|
+
"multiple": false,
|
|
919
|
+
"options": [
|
|
920
|
+
"checked",
|
|
921
|
+
"unchecked",
|
|
922
|
+
"hidden"
|
|
923
|
+
],
|
|
924
|
+
"type": "option"
|
|
925
|
+
},
|
|
926
|
+
"prune-lockfiles": {
|
|
927
|
+
"description": "remove lockfiles in the tarball.",
|
|
928
|
+
"exclusive": [
|
|
929
|
+
"tarball"
|
|
930
|
+
],
|
|
931
|
+
"name": "prune-lockfiles",
|
|
837
932
|
"allowNo": false,
|
|
838
933
|
"type": "boolean"
|
|
839
934
|
},
|
|
@@ -855,6 +950,18 @@
|
|
|
855
950
|
"multiple": false,
|
|
856
951
|
"type": "option"
|
|
857
952
|
},
|
|
953
|
+
"tarball": {
|
|
954
|
+
"char": "t",
|
|
955
|
+
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
956
|
+
"exclusive": [
|
|
957
|
+
"prune-lockfiles"
|
|
958
|
+
],
|
|
959
|
+
"name": "tarball",
|
|
960
|
+
"required": false,
|
|
961
|
+
"hasDynamicHelp": false,
|
|
962
|
+
"multiple": false,
|
|
963
|
+
"type": "option"
|
|
964
|
+
},
|
|
858
965
|
"targets": {
|
|
859
966
|
"description": "Comma-separated targets to pack (e.g.: win32-x64,win32-x86,win32-arm64).",
|
|
860
967
|
"name": "targets",
|
|
@@ -865,46 +972,29 @@
|
|
|
865
972
|
},
|
|
866
973
|
"hasDynamicHelp": false,
|
|
867
974
|
"hiddenAliases": [],
|
|
868
|
-
"id": "
|
|
975
|
+
"id": "pack:win",
|
|
869
976
|
"pluginAlias": "oclif",
|
|
870
977
|
"pluginName": "oclif",
|
|
871
978
|
"pluginType": "core",
|
|
872
979
|
"strict": true,
|
|
980
|
+
"summary": "Create windows installer from oclif CLI",
|
|
873
981
|
"enableJsonFlag": false,
|
|
874
982
|
"isESM": false,
|
|
875
983
|
"relativePath": [
|
|
876
984
|
"lib",
|
|
877
985
|
"commands",
|
|
878
|
-
"
|
|
986
|
+
"pack",
|
|
879
987
|
"win.js"
|
|
880
988
|
]
|
|
881
989
|
},
|
|
882
|
-
"
|
|
990
|
+
"upload:deb": {
|
|
883
991
|
"aliases": [],
|
|
884
992
|
"args": {},
|
|
885
|
-
"description": "
|
|
993
|
+
"description": "Upload deb package built with `pack deb`.",
|
|
886
994
|
"flags": {
|
|
887
|
-
"
|
|
888
|
-
"
|
|
889
|
-
"
|
|
890
|
-
"name": "compression",
|
|
891
|
-
"summary": "Override the default compression used by dpkg-deb.",
|
|
892
|
-
"hasDynamicHelp": false,
|
|
893
|
-
"multiple": false,
|
|
894
|
-
"options": [
|
|
895
|
-
"gzip",
|
|
896
|
-
"none",
|
|
897
|
-
"xz",
|
|
898
|
-
"zstd"
|
|
899
|
-
],
|
|
900
|
-
"type": "option"
|
|
901
|
-
},
|
|
902
|
-
"prune-lockfiles": {
|
|
903
|
-
"description": "remove lockfiles in the tarball.",
|
|
904
|
-
"exclusive": [
|
|
905
|
-
"tarball"
|
|
906
|
-
],
|
|
907
|
-
"name": "prune-lockfiles",
|
|
995
|
+
"dry-run": {
|
|
996
|
+
"description": "Run the command without uploading to S3.",
|
|
997
|
+
"name": "dry-run",
|
|
908
998
|
"allowNo": false,
|
|
909
999
|
"type": "boolean"
|
|
910
1000
|
},
|
|
@@ -925,56 +1015,32 @@
|
|
|
925
1015
|
"hasDynamicHelp": false,
|
|
926
1016
|
"multiple": false,
|
|
927
1017
|
"type": "option"
|
|
928
|
-
},
|
|
929
|
-
"tarball": {
|
|
930
|
-
"char": "t",
|
|
931
|
-
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
932
|
-
"exclusive": [
|
|
933
|
-
"prune-lockfiles"
|
|
934
|
-
],
|
|
935
|
-
"name": "tarball",
|
|
936
|
-
"required": false,
|
|
937
|
-
"hasDynamicHelp": false,
|
|
938
|
-
"multiple": false,
|
|
939
|
-
"type": "option"
|
|
940
1018
|
}
|
|
941
1019
|
},
|
|
942
1020
|
"hasDynamicHelp": false,
|
|
943
1021
|
"hiddenAliases": [],
|
|
944
|
-
"id": "
|
|
1022
|
+
"id": "upload:deb",
|
|
945
1023
|
"pluginAlias": "oclif",
|
|
946
1024
|
"pluginName": "oclif",
|
|
947
1025
|
"pluginType": "core",
|
|
948
1026
|
"strict": true,
|
|
949
|
-
"summary": "Pack CLI into debian package.",
|
|
950
1027
|
"enableJsonFlag": false,
|
|
951
1028
|
"isESM": false,
|
|
952
1029
|
"relativePath": [
|
|
953
1030
|
"lib",
|
|
954
1031
|
"commands",
|
|
955
|
-
"
|
|
1032
|
+
"upload",
|
|
956
1033
|
"deb.js"
|
|
957
1034
|
]
|
|
958
1035
|
},
|
|
959
|
-
"
|
|
1036
|
+
"upload:macos": {
|
|
960
1037
|
"aliases": [],
|
|
961
1038
|
"args": {},
|
|
962
|
-
"description": "
|
|
1039
|
+
"description": "Upload macos installers built with `pack macos`.",
|
|
963
1040
|
"flags": {
|
|
964
|
-
"
|
|
965
|
-
"description": "
|
|
966
|
-
"
|
|
967
|
-
"name": "additional-cli",
|
|
968
|
-
"hasDynamicHelp": false,
|
|
969
|
-
"multiple": false,
|
|
970
|
-
"type": "option"
|
|
971
|
-
},
|
|
972
|
-
"prune-lockfiles": {
|
|
973
|
-
"description": "remove lockfiles in the tarball.",
|
|
974
|
-
"exclusive": [
|
|
975
|
-
"tarball"
|
|
976
|
-
],
|
|
977
|
-
"name": "prune-lockfiles",
|
|
1041
|
+
"dry-run": {
|
|
1042
|
+
"description": "Run the command without uploading to S3.",
|
|
1043
|
+
"name": "dry-run",
|
|
978
1044
|
"allowNo": false,
|
|
979
1045
|
"type": "boolean"
|
|
980
1046
|
},
|
|
@@ -996,20 +1062,9 @@
|
|
|
996
1062
|
"multiple": false,
|
|
997
1063
|
"type": "option"
|
|
998
1064
|
},
|
|
999
|
-
"tarball": {
|
|
1000
|
-
"char": "t",
|
|
1001
|
-
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
1002
|
-
"exclusive": [
|
|
1003
|
-
"prune-lockfiles"
|
|
1004
|
-
],
|
|
1005
|
-
"name": "tarball",
|
|
1006
|
-
"required": false,
|
|
1007
|
-
"hasDynamicHelp": false,
|
|
1008
|
-
"multiple": false,
|
|
1009
|
-
"type": "option"
|
|
1010
|
-
},
|
|
1011
1065
|
"targets": {
|
|
1012
|
-
"
|
|
1066
|
+
"char": "t",
|
|
1067
|
+
"description": "Comma-separated targets to upload (e.g.: darwin-x64,darwin-arm64).",
|
|
1013
1068
|
"name": "targets",
|
|
1014
1069
|
"hasDynamicHelp": false,
|
|
1015
1070
|
"multiple": false,
|
|
@@ -1018,35 +1073,28 @@
|
|
|
1018
1073
|
},
|
|
1019
1074
|
"hasDynamicHelp": false,
|
|
1020
1075
|
"hiddenAliases": [],
|
|
1021
|
-
"id": "
|
|
1076
|
+
"id": "upload:macos",
|
|
1022
1077
|
"pluginAlias": "oclif",
|
|
1023
1078
|
"pluginName": "oclif",
|
|
1024
1079
|
"pluginType": "core",
|
|
1025
1080
|
"strict": true,
|
|
1026
|
-
"summary": "Pack CLI into macOS .pkg",
|
|
1027
1081
|
"enableJsonFlag": false,
|
|
1028
1082
|
"isESM": false,
|
|
1029
1083
|
"relativePath": [
|
|
1030
1084
|
"lib",
|
|
1031
1085
|
"commands",
|
|
1032
|
-
"
|
|
1086
|
+
"upload",
|
|
1033
1087
|
"macos.js"
|
|
1034
1088
|
]
|
|
1035
1089
|
},
|
|
1036
|
-
"
|
|
1090
|
+
"upload:tarballs": {
|
|
1037
1091
|
"aliases": [],
|
|
1038
1092
|
"args": {},
|
|
1039
|
-
"description": "
|
|
1093
|
+
"description": "Upload an oclif CLI to S3.",
|
|
1040
1094
|
"flags": {
|
|
1041
|
-
"
|
|
1042
|
-
"description": "
|
|
1043
|
-
"name": "
|
|
1044
|
-
"allowNo": false,
|
|
1045
|
-
"type": "boolean"
|
|
1046
|
-
},
|
|
1047
|
-
"prune-lockfiles": {
|
|
1048
|
-
"description": "remove lockfiles in the tarball.",
|
|
1049
|
-
"name": "prune-lockfiles",
|
|
1095
|
+
"dry-run": {
|
|
1096
|
+
"description": "Run the command without uploading to S3.",
|
|
1097
|
+
"name": "dry-run",
|
|
1050
1098
|
"allowNo": false,
|
|
1051
1099
|
"type": "boolean"
|
|
1052
1100
|
},
|
|
@@ -1068,25 +1116,16 @@
|
|
|
1068
1116
|
"multiple": false,
|
|
1069
1117
|
"type": "option"
|
|
1070
1118
|
},
|
|
1071
|
-
"tarball": {
|
|
1072
|
-
"char": "l",
|
|
1073
|
-
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
1074
|
-
"name": "tarball",
|
|
1075
|
-
"required": false,
|
|
1076
|
-
"hasDynamicHelp": false,
|
|
1077
|
-
"multiple": false,
|
|
1078
|
-
"type": "option"
|
|
1079
|
-
},
|
|
1080
1119
|
"targets": {
|
|
1081
1120
|
"char": "t",
|
|
1082
|
-
"description": "Comma-separated targets to
|
|
1121
|
+
"description": "Comma-separated targets to upload (e.g.: linux-arm,win32-x64).",
|
|
1083
1122
|
"name": "targets",
|
|
1084
1123
|
"hasDynamicHelp": false,
|
|
1085
1124
|
"multiple": false,
|
|
1086
1125
|
"type": "option"
|
|
1087
1126
|
},
|
|
1088
1127
|
"xz": {
|
|
1089
|
-
"description": "Also
|
|
1128
|
+
"description": "Also upload xz.",
|
|
1090
1129
|
"name": "xz",
|
|
1091
1130
|
"allowNo": true,
|
|
1092
1131
|
"type": "boolean"
|
|
@@ -1094,54 +1133,28 @@
|
|
|
1094
1133
|
},
|
|
1095
1134
|
"hasDynamicHelp": false,
|
|
1096
1135
|
"hiddenAliases": [],
|
|
1097
|
-
"id": "
|
|
1136
|
+
"id": "upload:tarballs",
|
|
1098
1137
|
"pluginAlias": "oclif",
|
|
1099
1138
|
"pluginName": "oclif",
|
|
1100
1139
|
"pluginType": "core",
|
|
1101
1140
|
"strict": true,
|
|
1102
|
-
"summary": "Package oclif CLI into tarballs.",
|
|
1103
1141
|
"enableJsonFlag": false,
|
|
1104
1142
|
"isESM": false,
|
|
1105
1143
|
"relativePath": [
|
|
1106
1144
|
"lib",
|
|
1107
1145
|
"commands",
|
|
1108
|
-
"
|
|
1146
|
+
"upload",
|
|
1109
1147
|
"tarballs.js"
|
|
1110
1148
|
]
|
|
1111
1149
|
},
|
|
1112
|
-
"
|
|
1150
|
+
"upload:win": {
|
|
1113
1151
|
"aliases": [],
|
|
1114
1152
|
"args": {},
|
|
1115
|
-
"description": "
|
|
1153
|
+
"description": "Upload windows installers built with `pack win`.",
|
|
1116
1154
|
"flags": {
|
|
1117
|
-
"
|
|
1118
|
-
"description": "
|
|
1119
|
-
"
|
|
1120
|
-
"name": "additional-cli",
|
|
1121
|
-
"hasDynamicHelp": false,
|
|
1122
|
-
"multiple": false,
|
|
1123
|
-
"type": "option"
|
|
1124
|
-
},
|
|
1125
|
-
"defender-exclusion": {
|
|
1126
|
-
"description": "There is no way to set a hidden checkbox with \"true\" as a default...the user can always allow full security",
|
|
1127
|
-
"name": "defender-exclusion",
|
|
1128
|
-
"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).",
|
|
1129
|
-
"default": "checked",
|
|
1130
|
-
"hasDynamicHelp": false,
|
|
1131
|
-
"multiple": false,
|
|
1132
|
-
"options": [
|
|
1133
|
-
"checked",
|
|
1134
|
-
"unchecked",
|
|
1135
|
-
"hidden"
|
|
1136
|
-
],
|
|
1137
|
-
"type": "option"
|
|
1138
|
-
},
|
|
1139
|
-
"prune-lockfiles": {
|
|
1140
|
-
"description": "remove lockfiles in the tarball.",
|
|
1141
|
-
"exclusive": [
|
|
1142
|
-
"tarball"
|
|
1143
|
-
],
|
|
1144
|
-
"name": "prune-lockfiles",
|
|
1155
|
+
"dry-run": {
|
|
1156
|
+
"description": "Run the command without uploading to S3.",
|
|
1157
|
+
"name": "dry-run",
|
|
1145
1158
|
"allowNo": false,
|
|
1146
1159
|
"type": "boolean"
|
|
1147
1160
|
},
|
|
@@ -1163,18 +1176,6 @@
|
|
|
1163
1176
|
"multiple": false,
|
|
1164
1177
|
"type": "option"
|
|
1165
1178
|
},
|
|
1166
|
-
"tarball": {
|
|
1167
|
-
"char": "t",
|
|
1168
|
-
"description": "Optionally specify a path to a tarball already generated by NPM.",
|
|
1169
|
-
"exclusive": [
|
|
1170
|
-
"prune-lockfiles"
|
|
1171
|
-
],
|
|
1172
|
-
"name": "tarball",
|
|
1173
|
-
"required": false,
|
|
1174
|
-
"hasDynamicHelp": false,
|
|
1175
|
-
"multiple": false,
|
|
1176
|
-
"type": "option"
|
|
1177
|
-
},
|
|
1178
1179
|
"targets": {
|
|
1179
1180
|
"description": "Comma-separated targets to pack (e.g.: win32-x64,win32-x86,win32-arm64).",
|
|
1180
1181
|
"name": "targets",
|
|
@@ -1185,21 +1186,20 @@
|
|
|
1185
1186
|
},
|
|
1186
1187
|
"hasDynamicHelp": false,
|
|
1187
1188
|
"hiddenAliases": [],
|
|
1188
|
-
"id": "
|
|
1189
|
+
"id": "upload:win",
|
|
1189
1190
|
"pluginAlias": "oclif",
|
|
1190
1191
|
"pluginName": "oclif",
|
|
1191
1192
|
"pluginType": "core",
|
|
1192
1193
|
"strict": true,
|
|
1193
|
-
"summary": "Create windows installer from oclif CLI",
|
|
1194
1194
|
"enableJsonFlag": false,
|
|
1195
1195
|
"isESM": false,
|
|
1196
1196
|
"relativePath": [
|
|
1197
1197
|
"lib",
|
|
1198
1198
|
"commands",
|
|
1199
|
-
"
|
|
1199
|
+
"upload",
|
|
1200
1200
|
"win.js"
|
|
1201
1201
|
]
|
|
1202
1202
|
}
|
|
1203
1203
|
},
|
|
1204
|
-
"version": "4.23.
|
|
1204
|
+
"version": "4.23.6"
|
|
1205
1205
|
}
|
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.23.
|
|
4
|
+
"version": "4.23.6",
|
|
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.1009.0",
|
|
12
|
-
"@aws-sdk/client-s3": "^3.
|
|
12
|
+
"@aws-sdk/client-s3": "^3.1048.0",
|
|
13
13
|
"@inquirer/confirm": "^3.1.22",
|
|
14
14
|
"@inquirer/input": "^2.2.4",
|
|
15
15
|
"@inquirer/select": "^2.5.0",
|