Skip to content
Merged
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
103 changes: 0 additions & 103 deletions .github/review-prompt.md

This file was deleted.

2 changes: 2 additions & 0 deletions agents/claude_codex_workflow_context.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Claude Code + Codex Workflow

> **Historical document (banner added 2026-06-12).** These are the original workflow design notes, preserved as a record. Some sections reference repository state that no longer exists — the `webcomponent` working branch (fully merged via PRs #14–24) and a root `npm run build` script (the build commands are `npm run build:component*` and `npm run docs:build`). For the current workflow see `AGENTS.md`; for current status see `agents/SESSION_HANDOFF.md`.

Date: 2026-05-04
Repo: https://github.com/idsinge/latency-test
Working branch: `webcomponent`
Expand Down
2 changes: 2 additions & 0 deletions docs/build-output.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build Output

`dist/` is generated output: it is gitignored and never committed, but it is exactly what npm ships — the package's `files` whitelist contains `dist/`, so `npm pack` and the published tarball include it (rebuilt automatically by `prepublishOnly`).

`npm run build:component` produces the modern build in `dist/`:

| File | Purpose |
Expand Down
12 changes: 10 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,18 @@ There is no reliable cross-browser API to force both devices to share the same s

## Running the demo locally

The demo page loads the built legacy IIFE bundle, so build it first:

```bash
git clone https://github.com/idsinge/latency-test.git
cd latency-test
npm install
npm run dev
# open http://localhost:3000
npm run build:component:legacy
npm run demo
# open http://localhost:3000/demo/
```

Other local servers, for reference:

- `npm run dev` — internal dev/test pages, served natively from `src/` (no build step needed)
- `npm run docs:dev` — this documentation site