Using Bzlmod with Bazel 6 or greater
Add to your MODULE.bazel
file:
bazel_dep(name = "rules_playwright", version = "0.4.0")
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")
What's Changed
- docs: Produce .md files using stardoc by @mrmeku in #14
- docs: Update README.md by @mrmeku in #15
- chore: don't compile protoc by @alexeagle in #16
- fix: support webkit symlinks when unzipped by @Aghassi in #20
New Contributors
Full Changelog: v0.3.0...v0.4.0