apify-cli 0.21.0-beta.56 → 0.21.0-beta.58
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/CHANGELOG.md +1 -0
- package/README.md +62 -62
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/actor/push-data.d.ts.map +1 -1
- package/dist/commands/actor/push-data.js +9 -3
- package/dist/commands/actor/push-data.js.map +1 -1
- package/dist/commands/datasets/get-items.d.ts.map +1 -1
- package/dist/commands/datasets/get-items.js +3 -0
- package/dist/commands/datasets/get-items.js.map +1 -1
- package/dist/commands/datasets/push-items.d.ts +1 -1
- package/dist/commands/datasets/push-items.d.ts.map +1 -1
- package/dist/commands/datasets/push-items.js +8 -3
- package/dist/commands/datasets/push-items.js.map +1 -1
- package/dist/commands/run.d.ts.map +1 -1
- package/dist/commands/run.js +1 -0
- package/dist/commands/run.js.map +1 -1
- package/dist/lib/commands/read-stdin.d.ts +1 -1
- package/dist/lib/commands/read-stdin.d.ts.map +1 -1
- package/dist/lib/commands/read-stdin.js +13 -1
- package/dist/lib/commands/read-stdin.js.map +1 -1
- package/dist/lib/commands/resolve-input.js +1 -1
- package/dist/lib/commands/resolve-input.js.map +1 -1
- package/dist/typechecking.tsbuildinfo +1 -1
- package/oclif.manifest.json +228 -230
- package/package.json +6 -5
package/oclif.manifest.json
CHANGED
|
@@ -657,8 +657,7 @@
|
|
|
657
657
|
"args": {
|
|
658
658
|
"item": {
|
|
659
659
|
"description": "JSON string with one object or array of objects containing data to be stored in the default dataset.",
|
|
660
|
-
"name": "item"
|
|
661
|
-
"required": false
|
|
660
|
+
"name": "item"
|
|
662
661
|
}
|
|
663
662
|
},
|
|
664
663
|
"description": "Stores an object or an array of objects to the default dataset of the Actor run.\nIt is possible to pass data using item argument or stdin.\nPassing data using argument:\n$ apify actor push-data {\"foo\": \"bar\"}\nPassing data using stdin with pipe:\n$ cat ./test.json | apify actor push-data\n",
|
|
@@ -719,231 +718,6 @@
|
|
|
719
718
|
"set-value.js"
|
|
720
719
|
]
|
|
721
720
|
},
|
|
722
|
-
"builds:create": {
|
|
723
|
-
"aliases": [],
|
|
724
|
-
"args": {
|
|
725
|
-
"actorId": {
|
|
726
|
-
"description": "Optional Actor ID or Name to trigger a build for. By default, it will use the Actor from the current directory.",
|
|
727
|
-
"name": "actorId"
|
|
728
|
-
}
|
|
729
|
-
},
|
|
730
|
-
"description": "Creates a new build of the Actor.",
|
|
731
|
-
"flags": {
|
|
732
|
-
"json": {
|
|
733
|
-
"description": "Format output as json.",
|
|
734
|
-
"helpGroup": "GLOBAL",
|
|
735
|
-
"name": "json",
|
|
736
|
-
"allowNo": false,
|
|
737
|
-
"type": "boolean"
|
|
738
|
-
},
|
|
739
|
-
"tag": {
|
|
740
|
-
"description": "Build tag to be applied to the successful Actor build. By default, this is \"latest\".",
|
|
741
|
-
"name": "tag",
|
|
742
|
-
"hasDynamicHelp": false,
|
|
743
|
-
"multiple": false,
|
|
744
|
-
"type": "option"
|
|
745
|
-
},
|
|
746
|
-
"version": {
|
|
747
|
-
"description": "Optional Actor Version to build. By default, this will be inferred from the tag, but this flag is required when multiple versions have the same tag.",
|
|
748
|
-
"name": "version",
|
|
749
|
-
"required": false,
|
|
750
|
-
"hasDynamicHelp": false,
|
|
751
|
-
"multiple": false,
|
|
752
|
-
"type": "option"
|
|
753
|
-
},
|
|
754
|
-
"log": {
|
|
755
|
-
"description": "Whether to print out the build log after the build is triggered.",
|
|
756
|
-
"name": "log",
|
|
757
|
-
"allowNo": false,
|
|
758
|
-
"type": "boolean"
|
|
759
|
-
}
|
|
760
|
-
},
|
|
761
|
-
"hasDynamicHelp": false,
|
|
762
|
-
"hiddenAliases": [],
|
|
763
|
-
"id": "builds:create",
|
|
764
|
-
"pluginAlias": "apify-cli",
|
|
765
|
-
"pluginName": "apify-cli",
|
|
766
|
-
"pluginType": "core",
|
|
767
|
-
"strict": true,
|
|
768
|
-
"enableJsonFlag": true,
|
|
769
|
-
"isESM": true,
|
|
770
|
-
"relativePath": [
|
|
771
|
-
"dist",
|
|
772
|
-
"commands",
|
|
773
|
-
"builds",
|
|
774
|
-
"create.js"
|
|
775
|
-
]
|
|
776
|
-
},
|
|
777
|
-
"builds": {
|
|
778
|
-
"aliases": [],
|
|
779
|
-
"args": {},
|
|
780
|
-
"description": "Commands are designed to be used with Actor Builds.",
|
|
781
|
-
"flags": {},
|
|
782
|
-
"hasDynamicHelp": false,
|
|
783
|
-
"hiddenAliases": [],
|
|
784
|
-
"id": "builds",
|
|
785
|
-
"pluginAlias": "apify-cli",
|
|
786
|
-
"pluginName": "apify-cli",
|
|
787
|
-
"pluginType": "core",
|
|
788
|
-
"strict": true,
|
|
789
|
-
"isESM": true,
|
|
790
|
-
"relativePath": [
|
|
791
|
-
"dist",
|
|
792
|
-
"commands",
|
|
793
|
-
"builds",
|
|
794
|
-
"index.js"
|
|
795
|
-
]
|
|
796
|
-
},
|
|
797
|
-
"builds:info": {
|
|
798
|
-
"aliases": [],
|
|
799
|
-
"args": {
|
|
800
|
-
"buildId": {
|
|
801
|
-
"description": "The build ID to get information about.",
|
|
802
|
-
"name": "buildId",
|
|
803
|
-
"required": true
|
|
804
|
-
}
|
|
805
|
-
},
|
|
806
|
-
"description": "Prints information about a specific build.",
|
|
807
|
-
"flags": {
|
|
808
|
-
"json": {
|
|
809
|
-
"description": "Format output as json.",
|
|
810
|
-
"helpGroup": "GLOBAL",
|
|
811
|
-
"name": "json",
|
|
812
|
-
"allowNo": false,
|
|
813
|
-
"type": "boolean"
|
|
814
|
-
}
|
|
815
|
-
},
|
|
816
|
-
"hasDynamicHelp": false,
|
|
817
|
-
"hiddenAliases": [],
|
|
818
|
-
"id": "builds:info",
|
|
819
|
-
"pluginAlias": "apify-cli",
|
|
820
|
-
"pluginName": "apify-cli",
|
|
821
|
-
"pluginType": "core",
|
|
822
|
-
"strict": true,
|
|
823
|
-
"enableJsonFlag": true,
|
|
824
|
-
"isESM": true,
|
|
825
|
-
"relativePath": [
|
|
826
|
-
"dist",
|
|
827
|
-
"commands",
|
|
828
|
-
"builds",
|
|
829
|
-
"info.js"
|
|
830
|
-
]
|
|
831
|
-
},
|
|
832
|
-
"builds:log": {
|
|
833
|
-
"aliases": [],
|
|
834
|
-
"args": {
|
|
835
|
-
"buildId": {
|
|
836
|
-
"description": "The build ID to get the log from.",
|
|
837
|
-
"name": "buildId",
|
|
838
|
-
"required": true
|
|
839
|
-
}
|
|
840
|
-
},
|
|
841
|
-
"description": "Prints the log of a specific build.",
|
|
842
|
-
"flags": {},
|
|
843
|
-
"hasDynamicHelp": false,
|
|
844
|
-
"hiddenAliases": [],
|
|
845
|
-
"id": "builds:log",
|
|
846
|
-
"pluginAlias": "apify-cli",
|
|
847
|
-
"pluginName": "apify-cli",
|
|
848
|
-
"pluginType": "core",
|
|
849
|
-
"strict": true,
|
|
850
|
-
"isESM": true,
|
|
851
|
-
"relativePath": [
|
|
852
|
-
"dist",
|
|
853
|
-
"commands",
|
|
854
|
-
"builds",
|
|
855
|
-
"log.js"
|
|
856
|
-
]
|
|
857
|
-
},
|
|
858
|
-
"builds:ls": {
|
|
859
|
-
"aliases": [],
|
|
860
|
-
"args": {
|
|
861
|
-
"actorId": {
|
|
862
|
-
"description": "Optional Actor ID or Name to list runs for. By default, it will use the Actor from the current directory.",
|
|
863
|
-
"name": "actorId"
|
|
864
|
-
}
|
|
865
|
-
},
|
|
866
|
-
"description": "Lists all builds of the Actor.",
|
|
867
|
-
"flags": {
|
|
868
|
-
"json": {
|
|
869
|
-
"description": "Format output as json.",
|
|
870
|
-
"helpGroup": "GLOBAL",
|
|
871
|
-
"name": "json",
|
|
872
|
-
"allowNo": false,
|
|
873
|
-
"type": "boolean"
|
|
874
|
-
},
|
|
875
|
-
"offset": {
|
|
876
|
-
"description": "Number of builds that will be skipped.",
|
|
877
|
-
"name": "offset",
|
|
878
|
-
"default": 0,
|
|
879
|
-
"hasDynamicHelp": false,
|
|
880
|
-
"multiple": false,
|
|
881
|
-
"type": "option"
|
|
882
|
-
},
|
|
883
|
-
"limit": {
|
|
884
|
-
"description": "Number of builds that will be listed.",
|
|
885
|
-
"name": "limit",
|
|
886
|
-
"default": 10,
|
|
887
|
-
"hasDynamicHelp": false,
|
|
888
|
-
"multiple": false,
|
|
889
|
-
"type": "option"
|
|
890
|
-
},
|
|
891
|
-
"desc": {
|
|
892
|
-
"description": "Sort builds in descending order.",
|
|
893
|
-
"name": "desc",
|
|
894
|
-
"allowNo": false,
|
|
895
|
-
"type": "boolean"
|
|
896
|
-
},
|
|
897
|
-
"compact": {
|
|
898
|
-
"char": "c",
|
|
899
|
-
"description": "Display a compact table.",
|
|
900
|
-
"name": "compact",
|
|
901
|
-
"allowNo": false,
|
|
902
|
-
"type": "boolean"
|
|
903
|
-
}
|
|
904
|
-
},
|
|
905
|
-
"hasDynamicHelp": false,
|
|
906
|
-
"hiddenAliases": [],
|
|
907
|
-
"id": "builds:ls",
|
|
908
|
-
"pluginAlias": "apify-cli",
|
|
909
|
-
"pluginName": "apify-cli",
|
|
910
|
-
"pluginType": "core",
|
|
911
|
-
"strict": true,
|
|
912
|
-
"enableJsonFlag": true,
|
|
913
|
-
"isESM": true,
|
|
914
|
-
"relativePath": [
|
|
915
|
-
"dist",
|
|
916
|
-
"commands",
|
|
917
|
-
"builds",
|
|
918
|
-
"ls.js"
|
|
919
|
-
]
|
|
920
|
-
},
|
|
921
|
-
"builds:rm": {
|
|
922
|
-
"aliases": [],
|
|
923
|
-
"args": {
|
|
924
|
-
"buildId": {
|
|
925
|
-
"description": "The build ID to delete.",
|
|
926
|
-
"name": "buildId",
|
|
927
|
-
"required": true
|
|
928
|
-
}
|
|
929
|
-
},
|
|
930
|
-
"description": "Deletes an Actor Build.",
|
|
931
|
-
"flags": {},
|
|
932
|
-
"hasDynamicHelp": false,
|
|
933
|
-
"hiddenAliases": [],
|
|
934
|
-
"id": "builds:rm",
|
|
935
|
-
"pluginAlias": "apify-cli",
|
|
936
|
-
"pluginName": "apify-cli",
|
|
937
|
-
"pluginType": "core",
|
|
938
|
-
"strict": true,
|
|
939
|
-
"isESM": true,
|
|
940
|
-
"relativePath": [
|
|
941
|
-
"dist",
|
|
942
|
-
"commands",
|
|
943
|
-
"builds",
|
|
944
|
-
"rm.js"
|
|
945
|
-
]
|
|
946
|
-
},
|
|
947
721
|
"actors:build": {
|
|
948
722
|
"aliases": [],
|
|
949
723
|
"args": {
|
|
@@ -1464,6 +1238,231 @@
|
|
|
1464
1238
|
"start.js"
|
|
1465
1239
|
]
|
|
1466
1240
|
},
|
|
1241
|
+
"builds:create": {
|
|
1242
|
+
"aliases": [],
|
|
1243
|
+
"args": {
|
|
1244
|
+
"actorId": {
|
|
1245
|
+
"description": "Optional Actor ID or Name to trigger a build for. By default, it will use the Actor from the current directory.",
|
|
1246
|
+
"name": "actorId"
|
|
1247
|
+
}
|
|
1248
|
+
},
|
|
1249
|
+
"description": "Creates a new build of the Actor.",
|
|
1250
|
+
"flags": {
|
|
1251
|
+
"json": {
|
|
1252
|
+
"description": "Format output as json.",
|
|
1253
|
+
"helpGroup": "GLOBAL",
|
|
1254
|
+
"name": "json",
|
|
1255
|
+
"allowNo": false,
|
|
1256
|
+
"type": "boolean"
|
|
1257
|
+
},
|
|
1258
|
+
"tag": {
|
|
1259
|
+
"description": "Build tag to be applied to the successful Actor build. By default, this is \"latest\".",
|
|
1260
|
+
"name": "tag",
|
|
1261
|
+
"hasDynamicHelp": false,
|
|
1262
|
+
"multiple": false,
|
|
1263
|
+
"type": "option"
|
|
1264
|
+
},
|
|
1265
|
+
"version": {
|
|
1266
|
+
"description": "Optional Actor Version to build. By default, this will be inferred from the tag, but this flag is required when multiple versions have the same tag.",
|
|
1267
|
+
"name": "version",
|
|
1268
|
+
"required": false,
|
|
1269
|
+
"hasDynamicHelp": false,
|
|
1270
|
+
"multiple": false,
|
|
1271
|
+
"type": "option"
|
|
1272
|
+
},
|
|
1273
|
+
"log": {
|
|
1274
|
+
"description": "Whether to print out the build log after the build is triggered.",
|
|
1275
|
+
"name": "log",
|
|
1276
|
+
"allowNo": false,
|
|
1277
|
+
"type": "boolean"
|
|
1278
|
+
}
|
|
1279
|
+
},
|
|
1280
|
+
"hasDynamicHelp": false,
|
|
1281
|
+
"hiddenAliases": [],
|
|
1282
|
+
"id": "builds:create",
|
|
1283
|
+
"pluginAlias": "apify-cli",
|
|
1284
|
+
"pluginName": "apify-cli",
|
|
1285
|
+
"pluginType": "core",
|
|
1286
|
+
"strict": true,
|
|
1287
|
+
"enableJsonFlag": true,
|
|
1288
|
+
"isESM": true,
|
|
1289
|
+
"relativePath": [
|
|
1290
|
+
"dist",
|
|
1291
|
+
"commands",
|
|
1292
|
+
"builds",
|
|
1293
|
+
"create.js"
|
|
1294
|
+
]
|
|
1295
|
+
},
|
|
1296
|
+
"builds": {
|
|
1297
|
+
"aliases": [],
|
|
1298
|
+
"args": {},
|
|
1299
|
+
"description": "Commands are designed to be used with Actor Builds.",
|
|
1300
|
+
"flags": {},
|
|
1301
|
+
"hasDynamicHelp": false,
|
|
1302
|
+
"hiddenAliases": [],
|
|
1303
|
+
"id": "builds",
|
|
1304
|
+
"pluginAlias": "apify-cli",
|
|
1305
|
+
"pluginName": "apify-cli",
|
|
1306
|
+
"pluginType": "core",
|
|
1307
|
+
"strict": true,
|
|
1308
|
+
"isESM": true,
|
|
1309
|
+
"relativePath": [
|
|
1310
|
+
"dist",
|
|
1311
|
+
"commands",
|
|
1312
|
+
"builds",
|
|
1313
|
+
"index.js"
|
|
1314
|
+
]
|
|
1315
|
+
},
|
|
1316
|
+
"builds:info": {
|
|
1317
|
+
"aliases": [],
|
|
1318
|
+
"args": {
|
|
1319
|
+
"buildId": {
|
|
1320
|
+
"description": "The build ID to get information about.",
|
|
1321
|
+
"name": "buildId",
|
|
1322
|
+
"required": true
|
|
1323
|
+
}
|
|
1324
|
+
},
|
|
1325
|
+
"description": "Prints information about a specific build.",
|
|
1326
|
+
"flags": {
|
|
1327
|
+
"json": {
|
|
1328
|
+
"description": "Format output as json.",
|
|
1329
|
+
"helpGroup": "GLOBAL",
|
|
1330
|
+
"name": "json",
|
|
1331
|
+
"allowNo": false,
|
|
1332
|
+
"type": "boolean"
|
|
1333
|
+
}
|
|
1334
|
+
},
|
|
1335
|
+
"hasDynamicHelp": false,
|
|
1336
|
+
"hiddenAliases": [],
|
|
1337
|
+
"id": "builds:info",
|
|
1338
|
+
"pluginAlias": "apify-cli",
|
|
1339
|
+
"pluginName": "apify-cli",
|
|
1340
|
+
"pluginType": "core",
|
|
1341
|
+
"strict": true,
|
|
1342
|
+
"enableJsonFlag": true,
|
|
1343
|
+
"isESM": true,
|
|
1344
|
+
"relativePath": [
|
|
1345
|
+
"dist",
|
|
1346
|
+
"commands",
|
|
1347
|
+
"builds",
|
|
1348
|
+
"info.js"
|
|
1349
|
+
]
|
|
1350
|
+
},
|
|
1351
|
+
"builds:log": {
|
|
1352
|
+
"aliases": [],
|
|
1353
|
+
"args": {
|
|
1354
|
+
"buildId": {
|
|
1355
|
+
"description": "The build ID to get the log from.",
|
|
1356
|
+
"name": "buildId",
|
|
1357
|
+
"required": true
|
|
1358
|
+
}
|
|
1359
|
+
},
|
|
1360
|
+
"description": "Prints the log of a specific build.",
|
|
1361
|
+
"flags": {},
|
|
1362
|
+
"hasDynamicHelp": false,
|
|
1363
|
+
"hiddenAliases": [],
|
|
1364
|
+
"id": "builds:log",
|
|
1365
|
+
"pluginAlias": "apify-cli",
|
|
1366
|
+
"pluginName": "apify-cli",
|
|
1367
|
+
"pluginType": "core",
|
|
1368
|
+
"strict": true,
|
|
1369
|
+
"isESM": true,
|
|
1370
|
+
"relativePath": [
|
|
1371
|
+
"dist",
|
|
1372
|
+
"commands",
|
|
1373
|
+
"builds",
|
|
1374
|
+
"log.js"
|
|
1375
|
+
]
|
|
1376
|
+
},
|
|
1377
|
+
"builds:ls": {
|
|
1378
|
+
"aliases": [],
|
|
1379
|
+
"args": {
|
|
1380
|
+
"actorId": {
|
|
1381
|
+
"description": "Optional Actor ID or Name to list runs for. By default, it will use the Actor from the current directory.",
|
|
1382
|
+
"name": "actorId"
|
|
1383
|
+
}
|
|
1384
|
+
},
|
|
1385
|
+
"description": "Lists all builds of the Actor.",
|
|
1386
|
+
"flags": {
|
|
1387
|
+
"json": {
|
|
1388
|
+
"description": "Format output as json.",
|
|
1389
|
+
"helpGroup": "GLOBAL",
|
|
1390
|
+
"name": "json",
|
|
1391
|
+
"allowNo": false,
|
|
1392
|
+
"type": "boolean"
|
|
1393
|
+
},
|
|
1394
|
+
"offset": {
|
|
1395
|
+
"description": "Number of builds that will be skipped.",
|
|
1396
|
+
"name": "offset",
|
|
1397
|
+
"default": 0,
|
|
1398
|
+
"hasDynamicHelp": false,
|
|
1399
|
+
"multiple": false,
|
|
1400
|
+
"type": "option"
|
|
1401
|
+
},
|
|
1402
|
+
"limit": {
|
|
1403
|
+
"description": "Number of builds that will be listed.",
|
|
1404
|
+
"name": "limit",
|
|
1405
|
+
"default": 10,
|
|
1406
|
+
"hasDynamicHelp": false,
|
|
1407
|
+
"multiple": false,
|
|
1408
|
+
"type": "option"
|
|
1409
|
+
},
|
|
1410
|
+
"desc": {
|
|
1411
|
+
"description": "Sort builds in descending order.",
|
|
1412
|
+
"name": "desc",
|
|
1413
|
+
"allowNo": false,
|
|
1414
|
+
"type": "boolean"
|
|
1415
|
+
},
|
|
1416
|
+
"compact": {
|
|
1417
|
+
"char": "c",
|
|
1418
|
+
"description": "Display a compact table.",
|
|
1419
|
+
"name": "compact",
|
|
1420
|
+
"allowNo": false,
|
|
1421
|
+
"type": "boolean"
|
|
1422
|
+
}
|
|
1423
|
+
},
|
|
1424
|
+
"hasDynamicHelp": false,
|
|
1425
|
+
"hiddenAliases": [],
|
|
1426
|
+
"id": "builds:ls",
|
|
1427
|
+
"pluginAlias": "apify-cli",
|
|
1428
|
+
"pluginName": "apify-cli",
|
|
1429
|
+
"pluginType": "core",
|
|
1430
|
+
"strict": true,
|
|
1431
|
+
"enableJsonFlag": true,
|
|
1432
|
+
"isESM": true,
|
|
1433
|
+
"relativePath": [
|
|
1434
|
+
"dist",
|
|
1435
|
+
"commands",
|
|
1436
|
+
"builds",
|
|
1437
|
+
"ls.js"
|
|
1438
|
+
]
|
|
1439
|
+
},
|
|
1440
|
+
"builds:rm": {
|
|
1441
|
+
"aliases": [],
|
|
1442
|
+
"args": {
|
|
1443
|
+
"buildId": {
|
|
1444
|
+
"description": "The build ID to delete.",
|
|
1445
|
+
"name": "buildId",
|
|
1446
|
+
"required": true
|
|
1447
|
+
}
|
|
1448
|
+
},
|
|
1449
|
+
"description": "Deletes an Actor Build.",
|
|
1450
|
+
"flags": {},
|
|
1451
|
+
"hasDynamicHelp": false,
|
|
1452
|
+
"hiddenAliases": [],
|
|
1453
|
+
"id": "builds:rm",
|
|
1454
|
+
"pluginAlias": "apify-cli",
|
|
1455
|
+
"pluginName": "apify-cli",
|
|
1456
|
+
"pluginType": "core",
|
|
1457
|
+
"strict": true,
|
|
1458
|
+
"isESM": true,
|
|
1459
|
+
"relativePath": [
|
|
1460
|
+
"dist",
|
|
1461
|
+
"commands",
|
|
1462
|
+
"builds",
|
|
1463
|
+
"rm.js"
|
|
1464
|
+
]
|
|
1465
|
+
},
|
|
1467
1466
|
"datasets:create": {
|
|
1468
1467
|
"aliases": [],
|
|
1469
1468
|
"args": {
|
|
@@ -1644,8 +1643,7 @@
|
|
|
1644
1643
|
},
|
|
1645
1644
|
"item": {
|
|
1646
1645
|
"description": "The object or array of objects to be pushed.",
|
|
1647
|
-
"name": "item"
|
|
1648
|
-
"required": true
|
|
1646
|
+
"name": "item"
|
|
1649
1647
|
}
|
|
1650
1648
|
},
|
|
1651
1649
|
"description": "Pushes an object or an array of objects to the provided Dataset.",
|
|
@@ -2510,5 +2508,5 @@
|
|
|
2510
2508
|
]
|
|
2511
2509
|
}
|
|
2512
2510
|
},
|
|
2513
|
-
"version": "0.21.0-beta.
|
|
2511
|
+
"version": "0.21.0-beta.58"
|
|
2514
2512
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "0.21.0-beta.
|
|
3
|
+
"version": "0.21.0-beta.58",
|
|
4
4
|
"description": "Apify command-line interface (CLI) helps you manage the Apify cloud platform and develop, build, and deploy Apify Actors.",
|
|
5
5
|
"exports": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"clean": "rimraf dist",
|
|
18
18
|
"build": "yarn clean && tsc && tsc -p tsconfig.typechecking.json",
|
|
19
19
|
"postpack": "rimraf oclif.manifest.json",
|
|
20
|
-
"prepack": "yarn build && oclif manifest && oclif readme &&
|
|
20
|
+
"prepack": "yarn build && oclif manifest && oclif readme && yarn update-docs",
|
|
21
|
+
"update-docs": "oclif readme --readme-path=docs/reference.md",
|
|
21
22
|
"postinstallDev": "yarn build && node ./bin/run.js check-version && node ./dist/lib/community.js"
|
|
22
23
|
},
|
|
23
24
|
"files": [
|
|
@@ -139,7 +140,7 @@
|
|
|
139
140
|
"prettier": "^3.3.3",
|
|
140
141
|
"tsx": "^4.16.5",
|
|
141
142
|
"typescript": "^5.5.4",
|
|
142
|
-
"vitest": "^2.
|
|
143
|
+
"vitest": "^2.1.5"
|
|
143
144
|
},
|
|
144
145
|
"oclif": {
|
|
145
146
|
"bin": "apify",
|
|
@@ -167,9 +168,9 @@
|
|
|
167
168
|
},
|
|
168
169
|
"volta": {
|
|
169
170
|
"node": "22.11.0",
|
|
170
|
-
"yarn": "4.5.
|
|
171
|
+
"yarn": "4.5.2"
|
|
171
172
|
},
|
|
172
|
-
"packageManager": "yarn@4.5.
|
|
173
|
+
"packageManager": "yarn@4.5.2",
|
|
173
174
|
"lint-staged": {
|
|
174
175
|
"*": "biome format --write --no-errors-on-unmatched",
|
|
175
176
|
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts",
|