Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
playwright_skip_browser_download=true
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# deck.gl-community

This repository contains a collection of community supported modules for [deck.gl](https://deck.gl).

## Troubleshooting

### Playwright browser dependencies

In restricted or offline environments (such as Codex) the `playwright` dependency can fail during `yarn install` because it attempts to download Chromium binaries. The repository includes an `.npmrc` file that sets `playwright_skip_browser_download=true` so installs can proceed without fetching browsers.

When you regain network access, install the Chromium browser binary manually before running the browser or headless Vitest projects:

```bash
npx playwright install --with-deps chromium
```

This is the same command invoked in CI and ensures the Playwright-powered tests have the required runtime.