@salesforce/plugin-release-management 5.7.59 → 5.7.61

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.
@@ -848,12 +848,21 @@
848
848
  "build.js"
849
849
  ]
850
850
  },
851
- "cli:tarballs:prepare": {
851
+ "cli:versions:inspect": {
852
852
  "aliases": [],
853
853
  "args": {},
854
- "description": "remove unnecessary files from node_modules",
854
+ "description": "inspect the CLI version across all install paths",
855
855
  "examples": [
856
- "<%= config.bin %> <%= command.id %>"
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"
857
866
  ],
858
867
  "flags": {
859
868
  "json": {
@@ -871,102 +880,81 @@
871
880
  "multiple": false,
872
881
  "type": "option"
873
882
  },
874
- "dryrun": {
883
+ "dependencies": {
875
884
  "char": "d",
876
- "name": "dryrun",
877
- "summary": "only show what would be removed from node_modules",
878
- "allowNo": false,
879
- "type": "boolean"
885
+ "name": "dependencies",
886
+ "summary": "glob pattern of dependencies you want to see the version of",
887
+ "hasDynamicHelp": false,
888
+ "multiple": true,
889
+ "type": "option"
880
890
  },
881
- "types": {
882
- "char": "t",
883
- "name": "types",
884
- "summary": "remove all types (.d.ts) files from node_modules",
891
+ "salesforce": {
892
+ "char": "s",
893
+ "name": "salesforce",
894
+ "summary": "show versions of salesforce owned dependencies",
885
895
  "allowNo": false,
886
896
  "type": "boolean"
887
897
  },
888
- "verbose": {
889
- "name": "verbose",
890
- "summary": "show all files paths being removed",
891
- "allowNo": false,
892
- "type": "boolean"
893
- }
894
- },
895
- "hasDynamicHelp": false,
896
- "hiddenAliases": [],
897
- "id": "cli:tarballs:prepare",
898
- "pluginAlias": "@salesforce/plugin-release-management",
899
- "pluginName": "@salesforce/plugin-release-management",
900
- "pluginType": "core",
901
- "strict": true,
902
- "summary": "remove unnecessary files from node_modules",
903
- "enableJsonFlag": true,
904
- "isESM": true,
905
- "relativePath": [
906
- "lib",
907
- "commands",
908
- "cli",
909
- "tarballs",
910
- "prepare.js"
911
- ]
912
- },
913
- "cli:tarballs:smoke": {
914
- "aliases": [],
915
- "args": {},
916
- "description": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
917
- "examples": [
918
- "<%= config.bin %> <%= command.id %>",
919
- "<%= config.bin %> <%= command.id %>"
920
- ],
921
- "flags": {
922
- "json": {
923
- "description": "Format output as json.",
924
- "helpGroup": "GLOBAL",
925
- "name": "json",
926
- "allowNo": false,
927
- "type": "boolean"
898
+ "channels": {
899
+ "char": "c",
900
+ "name": "channels",
901
+ "required": true,
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)",
903
+ "hasDynamicHelp": false,
904
+ "multiple": true,
905
+ "options": [
906
+ "stable",
907
+ "stable-rc",
908
+ "latest",
909
+ "latest-rc",
910
+ "nightly"
911
+ ],
912
+ "type": "option"
928
913
  },
929
- "flags-dir": {
930
- "helpGroup": "GLOBAL",
931
- "name": "flags-dir",
932
- "summary": "Import flag values from a directory.",
914
+ "locations": {
915
+ "char": "l",
916
+ "name": "locations",
917
+ "required": true,
918
+ "summary": "the location you want to inspect",
933
919
  "hasDynamicHelp": false,
934
- "multiple": false,
920
+ "multiple": true,
921
+ "options": [
922
+ "archive",
923
+ "npm"
924
+ ],
935
925
  "type": "option"
936
926
  },
937
- "verbose": {
938
- "name": "verbose",
939
- "summary": "show the --help output for each command",
927
+ "ignore-missing": {
928
+ "name": "ignore-missing",
929
+ "summary": "skip missing archives. Useful when supporting new architectures in oclif",
940
930
  "allowNo": false,
941
931
  "type": "boolean"
942
932
  }
943
933
  },
944
934
  "hasDynamicHelp": false,
945
935
  "hiddenAliases": [],
946
- "id": "cli:tarballs:smoke",
936
+ "id": "cli:versions:inspect",
947
937
  "pluginAlias": "@salesforce/plugin-release-management",
948
938
  "pluginName": "@salesforce/plugin-release-management",
949
939
  "pluginType": "core",
950
940
  "strict": true,
951
- "summary": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
941
+ "summary": "inspect the CLI version across all install paths",
952
942
  "enableJsonFlag": true,
953
943
  "isESM": true,
954
944
  "relativePath": [
955
945
  "lib",
956
946
  "commands",
957
947
  "cli",
958
- "tarballs",
959
- "smoke.js"
948
+ "versions",
949
+ "inspect.js"
960
950
  ]
961
951
  },
962
- "cli:tarballs:verify": {
952
+ "github:check:closed": {
963
953
  "aliases": [],
964
954
  "args": {},
965
- "description": "verify that tarballs are ready to be uploaded",
955
+ "description": "Description of a command.",
966
956
  "examples": [
967
- "<%= config.bin %> <%= command.id %>",
968
- "<%= config.bin %> <%= command.id %> --cli sfdx",
969
- "<%= config.bin %> <%= command.id %> --cli sf"
957
+ "<%= config.bin %> <%= command.id %> -o me@gus.com"
970
958
  ],
971
959
  "flags": {
972
960
  "json": {
@@ -984,63 +972,48 @@
984
972
  "multiple": false,
985
973
  "type": "option"
986
974
  },
987
- "cli": {
988
- "char": "c",
989
- "name": "cli",
990
- "summary": "the cli to verify",
991
- "default": "sfdx",
992
- "hasDynamicHelp": false,
975
+ "gus": {
976
+ "char": "o",
977
+ "name": "gus",
978
+ "noCacheDefault": true,
979
+ "required": true,
980
+ "summary": "Username/alias of your GUS org connection",
981
+ "hasDynamicHelp": true,
993
982
  "multiple": false,
994
- "options": [
995
- "sf",
996
- "sfdx"
997
- ],
998
983
  "type": "option"
999
984
  },
1000
- "windows-username-buffer": {
1001
- "char": "w",
1002
- "name": "windows-username-buffer",
1003
- "summary": "the number of characters to allow for windows usernames",
1004
- "default": 41,
985
+ "github-token": {
986
+ "env": "GITHUB_TOKEN",
987
+ "name": "github-token",
988
+ "required": true,
989
+ "summary": "Github token--store this in the environment as GITHUB_TOKEN",
1005
990
  "hasDynamicHelp": false,
1006
991
  "multiple": false,
1007
992
  "type": "option"
1008
993
  }
1009
994
  },
1010
- "hasDynamicHelp": false,
995
+ "hasDynamicHelp": true,
1011
996
  "hiddenAliases": [],
1012
- "id": "cli:tarballs:verify",
997
+ "id": "github:check:closed",
1013
998
  "pluginAlias": "@salesforce/plugin-release-management",
1014
999
  "pluginName": "@salesforce/plugin-release-management",
1015
1000
  "pluginType": "core",
1016
1001
  "strict": true,
1017
- "summary": "verify that tarballs are ready to be uploaded",
1002
+ "summary": "Show open Github issues with GUS WI",
1018
1003
  "enableJsonFlag": true,
1019
1004
  "isESM": true,
1020
1005
  "relativePath": [
1021
1006
  "lib",
1022
1007
  "commands",
1023
- "cli",
1024
- "tarballs",
1025
- "verify.js"
1008
+ "github",
1009
+ "check",
1010
+ "closed.js"
1026
1011
  ]
1027
1012
  },
1028
- "cli:versions:inspect": {
1013
+ "npm:dependencies:pin": {
1029
1014
  "aliases": [],
1030
1015
  "args": {},
1031
- "description": "inspect the CLI version across all install paths",
1032
- "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"
1043
- ],
1016
+ "description": "lock a list of dependencies to a target tag or default to 'latest', place these entries in 'pinnedDependencies' entry in the package.json",
1044
1017
  "flags": {
1045
1018
  "json": {
1046
1019
  "description": "Format output as json.",
@@ -1057,73 +1030,39 @@
1057
1030
  "multiple": false,
1058
1031
  "type": "option"
1059
1032
  },
1060
- "dependencies": {
1033
+ "dryrun": {
1061
1034
  "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",
1035
+ "name": "dryrun",
1036
+ "summary": "If true, will not make any changes to the package.json",
1072
1037
  "allowNo": false,
1073
1038
  "type": "boolean"
1074
1039
  },
1075
- "channels": {
1076
- "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)",
1080
- "hasDynamicHelp": false,
1081
- "multiple": true,
1082
- "options": [
1083
- "stable",
1084
- "stable-rc",
1085
- "latest",
1086
- "latest-rc",
1087
- "nightly"
1088
- ],
1089
- "type": "option"
1090
- },
1091
- "locations": {
1092
- "char": "l",
1093
- "name": "locations",
1094
- "required": true,
1095
- "summary": "the location you want to inspect",
1040
+ "tag": {
1041
+ "char": "t",
1042
+ "name": "tag",
1043
+ "summary": "The name of the tag you want, e.g. 'latest-rc', or 'latest'",
1044
+ "default": "latest",
1096
1045
  "hasDynamicHelp": false,
1097
- "multiple": true,
1098
- "options": [
1099
- "archive",
1100
- "npm"
1101
- ],
1046
+ "multiple": false,
1102
1047
  "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
1048
  }
1110
1049
  },
1111
1050
  "hasDynamicHelp": false,
1112
1051
  "hiddenAliases": [],
1113
- "id": "cli:versions:inspect",
1052
+ "id": "npm:dependencies:pin",
1114
1053
  "pluginAlias": "@salesforce/plugin-release-management",
1115
1054
  "pluginName": "@salesforce/plugin-release-management",
1116
1055
  "pluginType": "core",
1117
1056
  "strict": true,
1118
- "summary": "inspect the CLI version across all install paths",
1057
+ "summary": "lock a list of dependencies to a target tag or default to 'latest', place these entries in 'pinnedDependencies' entry in the package.json",
1119
1058
  "enableJsonFlag": true,
1120
1059
  "isESM": true,
1121
1060
  "relativePath": [
1122
1061
  "lib",
1123
1062
  "commands",
1124
- "cli",
1125
- "versions",
1126
- "inspect.js"
1063
+ "npm",
1064
+ "dependencies",
1065
+ "pin.js"
1127
1066
  ]
1128
1067
  },
1129
1068
  "npm:package:release": {
@@ -1223,10 +1162,63 @@
1223
1162
  "release.js"
1224
1163
  ]
1225
1164
  },
1226
- "npm:dependencies:pin": {
1165
+ "cli:install:jit:test": {
1227
1166
  "aliases": [],
1228
1167
  "args": {},
1229
- "description": "lock a list of dependencies to a target tag or default to 'latest', place these entries in 'pinnedDependencies' entry in the package.json",
1168
+ "examples": [
1169
+ "<%= config.bin %> <%= command.id %>"
1170
+ ],
1171
+ "flags": {
1172
+ "json": {
1173
+ "description": "Format output as json.",
1174
+ "helpGroup": "GLOBAL",
1175
+ "name": "json",
1176
+ "allowNo": false,
1177
+ "type": "boolean"
1178
+ },
1179
+ "flags-dir": {
1180
+ "helpGroup": "GLOBAL",
1181
+ "name": "flags-dir",
1182
+ "summary": "Import flag values from a directory.",
1183
+ "hasDynamicHelp": false,
1184
+ "multiple": false,
1185
+ "type": "option"
1186
+ },
1187
+ "jit-plugin": {
1188
+ "char": "j",
1189
+ "name": "jit-plugin",
1190
+ "summary": "JIT plugin(s) to test, example: @salesforce/plugin-community",
1191
+ "hasDynamicHelp": false,
1192
+ "multiple": true,
1193
+ "type": "option"
1194
+ }
1195
+ },
1196
+ "hasDynamicHelp": false,
1197
+ "hiddenAliases": [],
1198
+ "id": "cli:install:jit:test",
1199
+ "pluginAlias": "@salesforce/plugin-release-management",
1200
+ "pluginName": "@salesforce/plugin-release-management",
1201
+ "pluginType": "core",
1202
+ "strict": true,
1203
+ "summary": "Test that all JIT plugins can be successfully installed.",
1204
+ "enableJsonFlag": true,
1205
+ "isESM": true,
1206
+ "relativePath": [
1207
+ "lib",
1208
+ "commands",
1209
+ "cli",
1210
+ "install",
1211
+ "jit",
1212
+ "test.js"
1213
+ ]
1214
+ },
1215
+ "cli:tarballs:prepare": {
1216
+ "aliases": [],
1217
+ "args": {},
1218
+ "description": "remove unnecessary files from node_modules",
1219
+ "examples": [
1220
+ "<%= config.bin %> <%= command.id %>"
1221
+ ],
1230
1222
  "flags": {
1231
1223
  "json": {
1232
1224
  "description": "Format output as json.",
@@ -1246,44 +1238,49 @@
1246
1238
  "dryrun": {
1247
1239
  "char": "d",
1248
1240
  "name": "dryrun",
1249
- "summary": "If true, will not make any changes to the package.json",
1241
+ "summary": "only show what would be removed from node_modules",
1250
1242
  "allowNo": false,
1251
1243
  "type": "boolean"
1252
1244
  },
1253
- "tag": {
1245
+ "types": {
1254
1246
  "char": "t",
1255
- "name": "tag",
1256
- "summary": "The name of the tag you want, e.g. 'latest-rc', or 'latest'",
1257
- "default": "latest",
1258
- "hasDynamicHelp": false,
1259
- "multiple": false,
1260
- "type": "option"
1247
+ "name": "types",
1248
+ "summary": "remove all types (.d.ts) files from node_modules",
1249
+ "allowNo": false,
1250
+ "type": "boolean"
1251
+ },
1252
+ "verbose": {
1253
+ "name": "verbose",
1254
+ "summary": "show all files paths being removed",
1255
+ "allowNo": false,
1256
+ "type": "boolean"
1261
1257
  }
1262
1258
  },
1263
1259
  "hasDynamicHelp": false,
1264
1260
  "hiddenAliases": [],
1265
- "id": "npm:dependencies:pin",
1261
+ "id": "cli:tarballs:prepare",
1266
1262
  "pluginAlias": "@salesforce/plugin-release-management",
1267
1263
  "pluginName": "@salesforce/plugin-release-management",
1268
1264
  "pluginType": "core",
1269
1265
  "strict": true,
1270
- "summary": "lock a list of dependencies to a target tag or default to 'latest', place these entries in 'pinnedDependencies' entry in the package.json",
1266
+ "summary": "remove unnecessary files from node_modules",
1271
1267
  "enableJsonFlag": true,
1272
1268
  "isESM": true,
1273
1269
  "relativePath": [
1274
1270
  "lib",
1275
1271
  "commands",
1276
- "npm",
1277
- "dependencies",
1278
- "pin.js"
1272
+ "cli",
1273
+ "tarballs",
1274
+ "prepare.js"
1279
1275
  ]
1280
1276
  },
1281
- "github:check:closed": {
1277
+ "cli:tarballs:smoke": {
1282
1278
  "aliases": [],
1283
1279
  "args": {},
1284
- "description": "Description of a command.",
1280
+ "description": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
1285
1281
  "examples": [
1286
- "<%= config.bin %> <%= command.id %> -o me@gus.com"
1282
+ "<%= config.bin %> <%= command.id %>",
1283
+ "<%= config.bin %> <%= command.id %>"
1287
1284
  ],
1288
1285
  "flags": {
1289
1286
  "json": {
@@ -1301,49 +1298,39 @@
1301
1298
  "multiple": false,
1302
1299
  "type": "option"
1303
1300
  },
1304
- "gus": {
1305
- "char": "o",
1306
- "name": "gus",
1307
- "noCacheDefault": true,
1308
- "required": true,
1309
- "summary": "Username/alias of your GUS org connection",
1310
- "hasDynamicHelp": true,
1311
- "multiple": false,
1312
- "type": "option"
1313
- },
1314
- "github-token": {
1315
- "env": "GITHUB_TOKEN",
1316
- "name": "github-token",
1317
- "required": true,
1318
- "summary": "Github token--store this in the environment as GITHUB_TOKEN",
1319
- "hasDynamicHelp": false,
1320
- "multiple": false,
1321
- "type": "option"
1301
+ "verbose": {
1302
+ "name": "verbose",
1303
+ "summary": "show the --help output for each command",
1304
+ "allowNo": false,
1305
+ "type": "boolean"
1322
1306
  }
1323
1307
  },
1324
- "hasDynamicHelp": true,
1308
+ "hasDynamicHelp": false,
1325
1309
  "hiddenAliases": [],
1326
- "id": "github:check:closed",
1310
+ "id": "cli:tarballs:smoke",
1327
1311
  "pluginAlias": "@salesforce/plugin-release-management",
1328
1312
  "pluginName": "@salesforce/plugin-release-management",
1329
1313
  "pluginType": "core",
1330
1314
  "strict": true,
1331
- "summary": "Show open Github issues with GUS WI",
1315
+ "summary": "smoke tests for the sf CLI\nTests that the CLI and every command can be initialized.",
1332
1316
  "enableJsonFlag": true,
1333
1317
  "isESM": true,
1334
1318
  "relativePath": [
1335
1319
  "lib",
1336
1320
  "commands",
1337
- "github",
1338
- "check",
1339
- "closed.js"
1321
+ "cli",
1322
+ "tarballs",
1323
+ "smoke.js"
1340
1324
  ]
1341
1325
  },
1342
- "cli:install:jit:test": {
1326
+ "cli:tarballs:verify": {
1343
1327
  "aliases": [],
1344
1328
  "args": {},
1329
+ "description": "verify that tarballs are ready to be uploaded",
1345
1330
  "examples": [
1346
- "<%= config.bin %> <%= command.id %>"
1331
+ "<%= config.bin %> <%= command.id %>",
1332
+ "<%= config.bin %> <%= command.id %> --cli sfdx",
1333
+ "<%= config.bin %> <%= command.id %> --cli sf"
1347
1334
  ],
1348
1335
  "flags": {
1349
1336
  "json": {
@@ -1361,34 +1348,47 @@
1361
1348
  "multiple": false,
1362
1349
  "type": "option"
1363
1350
  },
1364
- "jit-plugin": {
1365
- "char": "j",
1366
- "name": "jit-plugin",
1367
- "summary": "JIT plugin(s) to test, example: @salesforce/plugin-community",
1351
+ "cli": {
1352
+ "char": "c",
1353
+ "name": "cli",
1354
+ "summary": "the cli to verify",
1355
+ "default": "sfdx",
1368
1356
  "hasDynamicHelp": false,
1369
- "multiple": true,
1357
+ "multiple": false,
1358
+ "options": [
1359
+ "sf",
1360
+ "sfdx"
1361
+ ],
1362
+ "type": "option"
1363
+ },
1364
+ "windows-username-buffer": {
1365
+ "char": "w",
1366
+ "name": "windows-username-buffer",
1367
+ "summary": "the number of characters to allow for windows usernames",
1368
+ "default": 41,
1369
+ "hasDynamicHelp": false,
1370
+ "multiple": false,
1370
1371
  "type": "option"
1371
1372
  }
1372
1373
  },
1373
1374
  "hasDynamicHelp": false,
1374
1375
  "hiddenAliases": [],
1375
- "id": "cli:install:jit:test",
1376
+ "id": "cli:tarballs:verify",
1376
1377
  "pluginAlias": "@salesforce/plugin-release-management",
1377
1378
  "pluginName": "@salesforce/plugin-release-management",
1378
1379
  "pluginType": "core",
1379
1380
  "strict": true,
1380
- "summary": "Test that all JIT plugins can be successfully installed.",
1381
+ "summary": "verify that tarballs are ready to be uploaded",
1381
1382
  "enableJsonFlag": true,
1382
1383
  "isESM": true,
1383
1384
  "relativePath": [
1384
1385
  "lib",
1385
1386
  "commands",
1386
1387
  "cli",
1387
- "install",
1388
- "jit",
1389
- "test.js"
1388
+ "tarballs",
1389
+ "verify.js"
1390
1390
  ]
1391
1391
  }
1392
1392
  },
1393
- "version": "5.7.59"
1393
+ "version": "5.7.61"
1394
1394
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-release-management",
3
3
  "description": "A plugin for preparing and publishing npm packages",
4
- "version": "5.7.59",
4
+ "version": "5.7.61",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "type": "module",
@@ -13,10 +13,10 @@
13
13
  "@octokit/core": "^6.1.6",
14
14
  "@octokit/plugin-paginate-rest": "^11.6.0",
15
15
  "@octokit/plugin-throttling": "^9.6.1",
16
- "@salesforce/cli-plugins-testkit": "^5.3.39",
16
+ "@salesforce/cli-plugins-testkit": "^5.3.41",
17
17
  "@salesforce/core": "^8.22.0",
18
18
  "@salesforce/kit": "^3.2.0",
19
- "@salesforce/plugin-command-reference": "^3.1.66",
19
+ "@salesforce/plugin-command-reference": "^3.1.67",
20
20
  "@salesforce/plugin-trust": "^3.7.89",
21
21
  "@salesforce/sf-plugins-core": "^12.2.4",
22
22
  "@salesforce/ts-types": "^2.0.10",
@@ -35,12 +35,12 @@
35
35
  "devDependencies": {
36
36
  "@oclif/plugin-command-snapshot": "^5.3.5",
37
37
  "@salesforce/dev-scripts": "^10.2.4",
38
- "@salesforce/ts-sinon": "^1.4.30",
38
+ "@salesforce/ts-sinon": "^1.4.31",
39
39
  "@types/semver": "^7.7.0",
40
40
  "@types/shelljs": "^0.8.17",
41
41
  "aws-sdk-mock": "^5.9.0",
42
42
  "eslint-plugin-sf-plugin": "^1.20.31",
43
- "oclif": "^4.22.12",
43
+ "oclif": "^4.22.16",
44
44
  "ts-node": "^10.9.2",
45
45
  "typescript": "^5.9.2"
46
46
  },