Skip to content

Commit 755eec5

Browse files
committed
prettier
1 parent bb6257c commit 755eec5

1 file changed

Lines changed: 12 additions & 13 deletions

File tree

AGENTS.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ Two things to keep separate in your head: **`src/api`** is the tiny surface user
2222

2323
Use pnpm. Run from the repo root.
2424

25-
| Command | What it does |
26-
|---|---|
27-
|`pnpm install` | also triggers a `postinstall` build of the adapter.|
28-
|`pnpm build` | build `packages/cloudflare`.|
29-
|`pnpm --filter cloudflare build:watch` | rebuild on change.|
30-
|`pnpm test` | builds, then runs all vitest suites.|
31-
|`pnpm code:checks` | prettier + eslint + tsc.|
32-
|`pnpm fix` | auto-fix prettier + eslint.|
33-
|`pnpm --filter <example> preview` | build + preview an example app end-to-end. Add `SKIP_NEXT_APP_BUILD=true` when only the adapter changed.|
34-
|`pnpm e2e` / `pnpm e2e:dev` | Playwright suites against the example apps.|
35-
|`pnpm --filter <example> e2e` | Run a specific example's Playwright suite.|
36-
|`pnpm changeset` | create a changeset for changes.|
25+
| Command | What it does |
26+
| -------------------------------------- | -------------------------------------------------------------------------------------------------------- |
27+
| `pnpm install` | also triggers a `postinstall` build of the adapter. |
28+
| `pnpm build` | build `packages/cloudflare`. |
29+
| `pnpm --filter cloudflare build:watch` | rebuild on change. |
30+
| `pnpm test` | builds, then runs all vitest suites. |
31+
| `pnpm code:checks` | prettier + eslint + tsc. |
32+
| `pnpm fix` | auto-fix prettier + eslint. |
33+
| `pnpm --filter <example> preview` | build + preview an example app end-to-end. Add `SKIP_NEXT_APP_BUILD=true` when only the adapter changed. |
34+
| `pnpm e2e` / `pnpm e2e:dev` | Playwright suites against the example apps. |
35+
| `pnpm --filter <example> e2e` | Run a specific example's Playwright suite. |
36+
| `pnpm changeset` | create a changeset for changes. |
3737

3838
# Conventions
3939

@@ -52,7 +52,6 @@ Use pnpm. Run from the repo root.
5252
- **`src/cli/build/patches/`** contains esbuild plugins and `@ast-grep/napi` transforms that rewrite Next's emitted code to run on Workers. Every patch needs a spec, and ideally a minimal fixture of the input it's matching. Upstream Next changes break these; when a patch stops matching, fix the matcher, don't widen it blindly.
5353
- **Overrides in `src/api/overrides/`** implement contracts defined in `@opennextjs/aws`. Check the upstream type before changing a signature. `@opennextjs/aws` is pinned in `package.json`, so bumping it is a deliberate change with its own changeset.
5454

55-
5655
# Pre-PR checklist
5756

5857
1. `pnpm code:checks` is clean.

0 commit comments

Comments
 (0)