-
-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use chrome-launcher to skip chromium download #50
Labels
Comments
I decided to avoid puppeteer env vars all together, by switching over puppeteer-core from puppeteer dependency. By doing this, the lib will change -install chromium first- approach by doing;
|
onderceylan
added a commit
that referenced
this issue
Oct 21, 2019
Switched over using puppeteer-core to avoid chromium download on every install. With chrome-launcher, lib will first try to locate any Chromium instance that is installed on users system, and only if not found, it will installed preferred chromium revision that is declared on puppeteer-core pkg. fix #50
onderceylan
added a commit
that referenced
this issue
Oct 21, 2019
Added error handling for chrome-launcher fix #50
onderceylan
added a commit
that referenced
this issue
Oct 24, 2019
Added puppeteer-core feature details to docs fix #50
onderceylan
added a commit
that referenced
this issue
Oct 24, 2019
Better handling of initialization and killing of the browsers for both scenarios of using system browser and package chromium re #50
Merged
onderceylan
added a commit
that referenced
this issue
Oct 25, 2019
Switched over using puppeteer-core to avoid chromium download on every install. With chrome-launcher, lib will first try to locate any Chromium instance that is installed on users system, and only if not found, it will installed preferred chromium revision that is declared on puppeteer-core pkg. fix #50
onderceylan
added a commit
that referenced
this issue
Oct 25, 2019
Added error handling for chrome-launcher fix #50
onderceylan
added a commit
that referenced
this issue
Oct 25, 2019
Added puppeteer-core feature details to docs fix #50
onderceylan
added a commit
that referenced
this issue
Oct 25, 2019
Better handling of initialization and killing of the browsers for both scenarios of using system browser and package chromium re #50
onderceylan
pushed a commit
that referenced
this issue
Oct 25, 2019
# [2.0.0](v1.3.1...v2.0.0) (2019-10-25) ### Bug Fixes * **browser:** added error handling for chrome-launcher ([c6ed23a](c6ed23a)), closes [#50](#50) * **package:** suppressed security warning by changing pkg v strategy ([9987e39](9987e39)), closes [#53](#53) ### Features * **file:** avoided saving a shell html file ([b96d545](b96d545)), closes [#52](#52) * **icon:** added optional favicon generation ([699686a](699686a)), closes [#47](#47) * **main:** added dark mode support for iOS ([f4aca1c](f4aca1c)), closes [#51](#51) * **pptr:** switched over puppeteer-core to avoid chromium install ([05edb2e](05edb2e)), closes [#50](#50) * **pwa:** added single quotes option for generated HTML tags ([351a3cc](351a3cc)), closes [#49](#49) ### BREAKING CHANGES * **main:** generateImages method from the module API now returns HTMLMeta object with the chunks of HTML content, instead of one big HTML string
🎉 This issue has been resolved in version 2.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This feature is for adding support for PUPPETEER_SKIP_CHROMIUM_DOWNLOAD env var, which skips downloading chromium installation on install. When this env var is provided, library should use https://www.npmjs.com/package/chrome-launcher to locate chrome on the system.
The text was updated successfully, but these errors were encountered: