playwright/browsers.json
Andrey Lushnikov cb1b64289c
devops: downloading ffmpeg during install step (#5249)
This patch starts downloading FFMPEG like we download our browsers
instead of bundling it in the NPM package.

With this patch, NPM size is reduced from 8.8MB to 1.7MB.

Consequences:
- `npx playwright` is drastically faster now
- playwright driver for language bindings is way smaller
- projects that bundle Playwright can pass Apple Notorization

Fixes #5193
2021-02-03 09:19:11 -08:00

26 lines
437 B
JSON

{
"comment": "Do not edit this file, use utils/roll_browser.js",
"browsers": [
{
"name": "chromium",
"revision": "845618",
"download": true
},
{
"name": "firefox",
"revision": "1226",
"download": true
},
{
"name": "webkit",
"revision": "1428",
"download": true
},
{
"name": "ffmpeg",
"revision": "1004",
"download": true
}
]
}