|
7 | 7 | "scripts": { |
8 | 8 | "dev": "turbo run dev", |
9 | 9 | "build": "turbo run build", |
| 10 | + "build:cloudflare": "pnpm --filter cloudflare build", |
10 | 11 | "openbuild:local": "turbo run openbuild:local", |
11 | 12 | "openbuild:local:start": "turbo run openbuild:local:start", |
12 | 13 | "clean": "turbo run clean && rm -rf node_modules pnpm-lock.yaml", |
13 | | - "lint": "biome check", |
14 | | - "lint:fix": "biome check --fix", |
| 14 | + "lint": "biome check && prettier --check .", |
| 15 | + "lint:fix": "biome check --fix && prettier --write .", |
| 16 | + "lint:check": "pnpm -r lint:check", |
| 17 | + "ts:check": "pnpm -r ts:check", |
| 18 | + "code:checks": "pnpm lint && pnpm ts:check", |
15 | 19 | "test": "turbo run test", |
16 | 20 | "e2e:test": "turbo run e2e:test", |
| 21 | + "e2e": "pnpm build && pnpm -r e2e", |
| 22 | + "e2e-turbopack": "pnpm build && pnpm -r e2e-turbopack", |
| 23 | + "e2e:dev": "pnpm build && pnpm -r e2e:dev", |
| 24 | + "install-playwright": "playwright install --with-deps", |
| 25 | + "benchmark": "pnpm run --filter benchmarking benchmark", |
17 | 26 | "version": "./.changeset/version", |
18 | | - "release": "./.changeset/release" |
| 27 | + "release": "./.changeset/release", |
| 28 | + "postinstall": "pnpm --filter @opennextjs/aws build && pnpm --filter cloudflare build" |
19 | 29 | }, |
20 | 30 | "devDependencies": { |
21 | 31 | "@biomejs/biome": "1.9.4", |
22 | | - "@changesets/changelog-github": "^0.4.8", |
| 32 | + "@changesets/changelog-github": "^0.5.1", |
23 | 33 | "@changesets/cli": "^2.29.7", |
| 34 | + "@playwright/test": "catalog:", |
24 | 35 | "pkg-pr-new": "^0.0.60", |
| 36 | + "prettier": "3.3.3", |
25 | 37 | "turbo": "1.10.12" |
26 | 38 | }, |
27 | 39 | "engines": { |
|
0 commit comments