From fd2d4efc69a2c405f1daae3d186feb48d4389354 Mon Sep 17 00:00:00 2001 From: Ryan Waskiewicz Date: Tue, 6 Dec 2022 11:05:51 -0500 Subject: [PATCH] docs(breaking_changes): port puppeteer 19 support to v2 site (#942) this commit ports the documentation changes from https://github.com/ionic-team/stencil/pull/3810 (https://github.com/ionic-team/stencil/commit/22c74241ebb471123680d6629d7fa9c17b86c897) to the v2 version of the stencil site --- src/docs/introduction/upgrading-to-stencil-three.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/docs/introduction/upgrading-to-stencil-three.md b/src/docs/introduction/upgrading-to-stencil-three.md index a8a07dbe3..a1adab283 100644 --- a/src/docs/introduction/upgrading-to-stencil-three.md +++ b/src/docs/introduction/upgrading-to-stencil-three.md @@ -283,12 +283,12 @@ Replace all instances of `addDestory` with `addDestroy` and all instances of `re The functionality of these methods remains the same. ## End-to-End Testing -### Puppeteer v10 Required +### Puppeteer v10+ Required Versions of Puppeteer prior to Puppeteer version 10 are no longer supported. In newer versions of Puppeteer, the library provides its own types, making `@types/puppeteer` no longer necessary. -Ensure that Puppeteer v10 is installed, and that its typings are not: +Ensure that Puppeteer v10 or higher is installed, and that its typings are not: ```bash -$ npm install puppeteer@10 +$ npm install puppeteer $ npm uninstall @types/puppeteer ```