feat: add an ability to trim cache for Puppeteer (#10199)

This commit is contained in:
Alex Rudenko
2023-05-17 15:21:40 +02:00
committed by GitHub
parent dab77d0c06
commit 1ad32ec994
10 changed files with 230 additions and 6 deletions

View File

@@ -0,0 +1,23 @@
---
sidebar_label: PuppeteerNode.trimCache
---
# PuppeteerNode.trimCache() method
Removes all non-current Firefox and Chrome binaries in the cache directory identified by the provided Puppeteer configuration. The current browser version is determined by resolving PUPPETEER_REVISIONS from Puppeteer unless `configuration.browserRevision` is provided.
#### Signature:
```typescript
class PuppeteerNode {
trimCache(): Promise<void>;
}
```
**Returns:**
Promise&lt;void&gt;
## Remarks
Note that the method does not check if any other Puppeteer versions installed on the host that use the same cache directory require the non-current binaries.