@@ -25,19 +25,19 @@ Any contributions you make will be via [Pull Requests](https://docs.github.com/e
2525
2626 ``` sh
2727 > git remote -v
28- origin https://github.com/< your-github-username> /opennextjs-cloudflare (fetch)
29- origin https://github.com/< your-github-username> /opennextjs-cloudflare (push)
28+ origin https://github.com/< your-github-username> /opennextjs-cloudflare (fetch)
29+ origin https://github.com/< your-github-username> /opennextjs-cloudflare (push)
3030 ```
3131
3232- Add ` opennextjs/opennextjs-cloudflare ` as the ` upstream ` remote repository.
3333
3434 ``` sh
3535 > git remote add upstream https://github.com/opennextjs/opennextjs-cloudflare
3636 > git remote -v
37- origin https://github.com/< your-github-username> /opennextjs-cloudflare (fetch)
38- origin https://github.com/< your-github-username> /opennextjs-cloudflare (push)
39- upstream https://github.com/opennextjs/opennextjs-cloudflare (fetch)
40- upstream https://github.com/opennextjs/opennextjs-cloudflare (push)
37+ origin https://github.com/< your-github-username> /opennextjs-cloudflare (fetch)
38+ origin https://github.com/< your-github-username> /opennextjs-cloudflare (push)
39+ upstream https://github.com/opennextjs/opennextjs-cloudflare (fetch)
40+ upstream https://github.com/opennextjs/opennextjs-cloudflare (push)
4141 ```
4242
4343- You should regularly pull from the ` main ` branch of the ` upstream ` repository to keep up to date with the latest changes to the project.
@@ -82,13 +82,13 @@ pnpm --filter cloudflare build:watch
8282Build and preview a Next.js sample application. For example, the ` api ` application:
8383
8484``` sh
85- pnpm --filter api preview:worker
85+ pnpm --filter api preview
8686```
8787
8888You can skip building the Next.js app when it has not been modified, and only run the Cloudflare adaptor tool:
8989
9090``` sh
91- SKIP_NEXT_APP_BUILD=true pnpm --filter api preview:worker
91+ SKIP_NEXT_APP_BUILD=true pnpm --filter api preview
9292```
9393
9494## Checking the code
@@ -102,7 +102,7 @@ pnpm run code:checks
102102Attempt to auto-fix any issues with the format, lint and type checks:
103103
104104``` sh
105- pnpm run code:fixes
105+ pnpm run fix
106106```
107107
108108## Testing the code
@@ -117,6 +117,7 @@ Run all the e2e tests, via Playwright:
117117
118118``` sh
119119pnpm run e2e
120+ pnpm run e2e:dev
120121```
121122
122123## Changesets
@@ -127,15 +128,15 @@ We use the [`changesets`](https://github.com/changesets/changesets/blob/main/REA
127128- Create a changeset for the current change.
128129
129130 ``` sh
130- > pnpm changeset
131+ pnpm changeset
131132 ```
132133
133134- Select which workspaces are affected by the change and whether the version requires a major, minor or patch release.
134135- Update the generated changeset with a description of the change.
135136- Include the generate changeset in the current commit.
136137
137138 ``` sh
138- > git add ./changeset/* .md
139+ git add ./changeset/* .md
139140 ```
140141
141142### Changeset message format
0 commit comments