@browserless/pdf 13.8.2 → 13.9.1
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/README.md +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ This package provides **PDF generation** from web pages with sensible defaults a
|
|
|
30
30
|
The `@browserless/pdf` package allows you to:
|
|
31
31
|
|
|
32
32
|
- **Generate PDFs** from any URL with production-ready defaults
|
|
33
|
-
- **
|
|
33
|
+
- **Wait until the page is ready** before printing, including blank-screen checks
|
|
34
34
|
- **Customize margins** with a simple string or per-side configuration
|
|
35
35
|
- **Scale content** to fit pages optimally
|
|
36
36
|
- **Use all Puppeteer PDF options** for advanced customization
|
|
@@ -178,7 +178,7 @@ This is a **core functionality package** for PDF generation:
|
|
|
178
178
|
| Package | Purpose |
|
|
179
179
|
|---------|---------|
|
|
180
180
|
| `@browserless/goto` | Page navigation with ad blocking |
|
|
181
|
-
| `@browserless/screenshot` |
|
|
181
|
+
| `@browserless/screenshot` | Readiness and blank-screen checks |
|
|
182
182
|
| `@kikobeats/time-span` | Timing measurements for retry logic |
|
|
183
183
|
| `debug-logfmt` | Structured debug logging |
|
|
184
184
|
| `pretty-ms` | Human-readable time formatting |
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@browserless/pdf",
|
|
3
3
|
"description": "Convert websites to high-quality PDFs with customizable margins, background printing, and optimized scaling.",
|
|
4
4
|
"homepage": "https://browserless.js.org/#/?id=pdfurl-options",
|
|
5
|
-
"version": "13.
|
|
5
|
+
"version": "13.9.1",
|
|
6
6
|
"main": "src",
|
|
7
7
|
"author": {
|
|
8
8
|
"email": "hello@microlink.io",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"website-to-pdf"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@browserless/goto": "13.
|
|
34
|
-
"@browserless/screenshot": "13.
|
|
33
|
+
"@browserless/goto": "13.9.0",
|
|
34
|
+
"@browserless/screenshot": "13.9.1",
|
|
35
35
|
"@kikobeats/time-span": "~1.0.12",
|
|
36
36
|
"debug-logfmt": "~1.4.10",
|
|
37
37
|
"p-reflect": "~2.1.0",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"test": "exit 0"
|
|
48
48
|
},
|
|
49
49
|
"license": "MIT",
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "9c3b5bdb192fd65deec41a870fd848e53b6886ba"
|
|
51
51
|
}
|