apify-cli 0.6.7-beta.0 → 0.7.0-beta.0
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 +2 -0
- package/README.md +7 -7
- package/npm-shrinkwrap.json +470 -304
- package/oclif.manifest.json +1 -1
- package/package.json +15 -14
- package/src/commands/call.js +15 -8
- package/src/commands/push.js +14 -21
- package/src/commands/run.js +1 -1
- package/src/commands/vis.js +2 -2
- package/src/lib/consts.js +1 -1
- package/src/lib/files.js +1 -1
- package/src/lib/utils.js +8 -9
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ However, we recommend using JavaScript / Node.js, for which we provide most libr
|
|
|
22
22
|
|
|
23
23
|
## Installation
|
|
24
24
|
|
|
25
|
-
First, make sure you have [Node.js](https://nodejs.org) version
|
|
25
|
+
First, make sure you have [Node.js](https://nodejs.org) version 12 or higher with NPM installed on your computer:
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
28
|
node --version
|
|
@@ -267,7 +267,7 @@ OPTIONS
|
|
|
267
267
|
-w, --wait-for-finish=wait-for-finish Seconds for waiting to run to finish, if no value passed, it waits forever.
|
|
268
268
|
|
|
269
269
|
DESCRIPTION
|
|
270
|
-
The actor is run under your current Apify account, therefore you need to be logged in by calling "apify login". It
|
|
270
|
+
The actor is run under your current Apify account, therefore you need to be logged in by calling "apify login". It
|
|
271
271
|
takes input for the actor from the default local key-value store by default.
|
|
272
272
|
```
|
|
273
273
|
|
|
@@ -318,7 +318,7 @@ ARGUMENTS
|
|
|
318
318
|
ACTORNAME Name of the actor. If not provided, you will be prompted for it.
|
|
319
319
|
|
|
320
320
|
DESCRIPTION
|
|
321
|
-
The command only creates the "apify.json" file and the "apify_storage" directory in the current directory, but will
|
|
321
|
+
The command only creates the "apify.json" file and the "apify_storage" directory in the current directory, but will
|
|
322
322
|
not touch anything else.
|
|
323
323
|
|
|
324
324
|
WARNING: The directory at "apify_storage" will be overwritten if it already exists.
|
|
@@ -338,7 +338,7 @@ OPTIONS
|
|
|
338
338
|
-t, --token=token [Optional] Apify API token
|
|
339
339
|
|
|
340
340
|
DESCRIPTION
|
|
341
|
-
The API token and other account information is stored in the ~/.apify directory, from where it is read by all other
|
|
341
|
+
The API token and other account information is stored in the ~/.apify directory, from where it is read by all other
|
|
342
342
|
"apify" commands. To log out, call "apify logout".
|
|
343
343
|
```
|
|
344
344
|
|
|
@@ -384,9 +384,9 @@ OPTIONS
|
|
|
384
384
|
should be pushed. By default, it is taken from the "apify.json" file.
|
|
385
385
|
|
|
386
386
|
DESCRIPTION
|
|
387
|
-
The actor settings are read from the "apify.json" file in the current directory, but they can be overridden using
|
|
387
|
+
The actor settings are read from the "apify.json" file in the current directory, but they can be overridden using
|
|
388
388
|
command-line options.
|
|
389
|
-
NOTE: If the source files are smaller than 3 MB then they are uploaded as
|
|
389
|
+
NOTE: If the source files are smaller than 3 MB then they are uploaded as
|
|
390
390
|
"Multiple source files", otherwise they are uploaded as "Zip file".
|
|
391
391
|
|
|
392
392
|
WARNING: If the target actor already exists in your Apify account, it will be overwritten!
|
|
@@ -418,7 +418,7 @@ DESCRIPTION
|
|
|
418
418
|
example, this causes the actor input, as well as all other data in key-value stores, datasets or request queues to be
|
|
419
419
|
stored in the "apify_storage" directory, rather than on the Apify platform.
|
|
420
420
|
|
|
421
|
-
NOTE: You can override the default behaviour of command overriding npm start script value in a package.json file. You
|
|
421
|
+
NOTE: You can override the default behaviour of command overriding npm start script value in a package.json file. You
|
|
422
422
|
can set up your own main file or environment variables by changing it.
|
|
423
423
|
```
|
|
424
424
|
|