Describe the bug you found in AsyncAPI Docs.
The README currently instructs users to set the environment variable PUPPETEER_SKIP_CHROMIUM_DOWNLOAD to skip downloading Chromium during installation. However, this environment variable is deprecated/incorrect in modern versions of Puppeteer (the project uses puppeteer@^24.4.0).
The correct environment variable is PUPPETEER_SKIP_DOWNLOAD. Setting PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true has no effect — Chromium is still downloaded. Only PUPPETEER_SKIP_DOWNLOAD=true properly prevents the download.
Attach any resources that can help us understand the issue.
- Puppeteer official docs on environment variables: https://pptr.dev/api/puppeteer.configuration#skipdownload
- Current README location of the issue: The section in
README.md that references PUPPETEER_SKIP_CHROMIUM_DOWNLOAD should be updated to PUPPETEER_SKIP_DOWNLOAD.
package.json confirms Puppeteer v24+:
Code of Conduct
Are you willing to work on this issue?
Yes I am willing to submit a PR!
ℹ️ This repository follows the All Contributors specification per the contributing guidelines. Contributions should follow the Conventional Commits convention (e.g., docs: prefix for documentation changes).
Describe the bug you found in AsyncAPI Docs.
The README currently instructs users to set the environment variable
PUPPETEER_SKIP_CHROMIUM_DOWNLOADto skip downloading Chromium during installation. However, this environment variable is deprecated/incorrect in modern versions of Puppeteer (the project usespuppeteer@^24.4.0).The correct environment variable is
PUPPETEER_SKIP_DOWNLOAD. SettingPUPPETEER_SKIP_CHROMIUM_DOWNLOAD=truehas no effect — Chromium is still downloaded. OnlyPUPPETEER_SKIP_DOWNLOAD=trueproperly prevents the download.Attach any resources that can help us understand the issue.
README.mdthat referencesPUPPETEER_SKIP_CHROMIUM_DOWNLOADshould be updated toPUPPETEER_SKIP_DOWNLOAD.package.jsonconfirms Puppeteer v24+:html-template/package.json
Line 45 in 07c8706
Code of Conduct
Are you willing to work on this issue?
Yes I am willing to submit a PR!