Skip to content

v0.2.1

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Mar 19:49
· 7 commits to main since this release

Using Bzlmod with Bazel 6 or greater

Add to your MODULE.bazel file:

bazel_dep(name = "rules_playwright", version = "0.2.1")

playwright = use_extension("@rules_playwright//playwright:extensions.bzl", "playwright")
playwright.repo(
    name = "playwright",
    playwright_version = "", # Match the exact version from your pnpm lock file of playwright-core
    browser_json = "", # Or vendor the browsers.json file from playwright core into your repo
)
use_repo(playwright, "playwright")

Full Changelog: v0.2.0...v0.2.1