apify-cli 0.14.2-beta.2 → 0.14.2-beta.4

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.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -22,6 +22,16 @@ However, we recommend using JavaScript / Node.js, for which we provide most libr
22
22
 
23
23
  ## Installation
24
24
 
25
+ ### Via Homebrew
26
+
27
+ On macOS (or Linux), you can install the Apify CLI via the [Homebrew package manager](https://brew.sh).
28
+
29
+ ```bash
30
+ brew install apify/tap/apify-cli
31
+ ```
32
+
33
+ ### Via NPM
34
+
25
35
  First, make sure you have [Node.js](https://nodejs.org) version 16 or higher with NPM installed on your computer:
26
36
 
27
37
  ```bash
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "apify-cli",
3
- "version": "0.14.2-beta.2",
3
+ "version": "0.14.2-beta.4",
4
4
  "description": "Apify command-line interface helps you create, develop, build and run Apify actors, and manage the Apify cloud platform.",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "mocha --timeout 180000 --recursive",
8
+ "test-python": "mocha --timeout 180000 --recursive --grep '\\[python\\]'",
8
9
  "lint": "eslint src test",
9
10
  "lint:fix": "eslint src test --fix",
10
11
  "commands-md": "npm run manifest && oclif-dev readme",