@browserless/cli 10.11.3 → 10.11.5

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 +4 -4
  2. package/package.json +4 -5
package/README.md CHANGED
@@ -55,11 +55,11 @@ The `@browserless/cli` package allows you to:
55
55
  ### Capture examples
56
56
 
57
57
  ```sh
58
- # webm (default)
59
- browserless capture https://example.com --path=./capture.webm
58
+ # mp4 (default)
59
+ browserless capture https://example.com --path=./capture.mp4
60
60
 
61
- # mp4 using friendly output type
62
- browserless capture https://example.com --type=mp4 --path=./capture.mp4
61
+ # webm output type
62
+ browserless capture https://example.com --type=webm --path=./capture.webm
63
63
  ```
64
64
 
65
65
  > **Note:** The `lighthouse` command requires an extra installation.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@browserless/cli",
3
3
  "description": "Command-line interface for headless browser automation. Take screenshots, generate PDFs, and extract content from websites.",
4
4
  "homepage": "https://browserless.js.org",
5
- "version": "10.11.3",
5
+ "version": "10.11.5",
6
6
  "bin": {
7
7
  "browserless": "src/index.js"
8
8
  },
@@ -34,9 +34,9 @@
34
34
  "web-scraping"
35
35
  ],
36
36
  "dependencies": {
37
- "@browserless/capture": "^10.11.3",
37
+ "@browserless/capture": "^10.11.5",
38
38
  "beauty-error": "~1.2.21",
39
- "browserless": "^10.11.3",
39
+ "browserless": "^10.11.4",
40
40
  "dark-mode": "~3.0.0",
41
41
  "dset": "~3.1.4",
42
42
  "mri": "~1.2.0",
@@ -56,9 +56,8 @@
56
56
  "src"
57
57
  ],
58
58
  "scripts": {
59
- "coverage": "exit 0",
60
59
  "test": "exit 0"
61
60
  },
62
61
  "license": "MIT",
63
- "gitHead": "2f86ba8d35c9b92c3c19e310282a3d24d0e0c7e0"
62
+ "gitHead": "26dbfe9e0899c3ee98c61668a4e636a51552dfad"
64
63
  }