Skip to content

Commit ce52a6b

Browse files
authored
feat: remove turbopack build command (#1613)
1 parent 5fda1cf commit ce52a6b

7 files changed

Lines changed: 27 additions & 33 deletions

File tree

.github/dependabot.yml

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
version: 2
2+
3+
multi-ecosystem-groups:
4+
infrastructure:
5+
schedule:
6+
interval: "daily"
7+
commit-message:
8+
prefix: "chore"
9+
210
updates:
311
- package-ecosystem: "bun"
412
directory: "/"
@@ -11,26 +19,15 @@ updates:
1119
dependencies:
1220
patterns:
1321
- "*"
22+
1423
- package-ecosystem: "devcontainers"
1524
directory: "/"
16-
schedule:
17-
interval: "daily"
18-
commit-message:
19-
prefix: "chore"
20-
groups:
21-
devcontainers:
22-
patterns:
23-
- "*"
25+
multi-ecosystem-group: "infrastructure"
26+
2427
- package-ecosystem: "docker"
2528
directory: "/"
26-
schedule:
27-
interval: "daily"
28-
commit-message:
29-
prefix: "chore"
30-
groups:
31-
docker:
32-
patterns:
33-
- "*"
29+
multi-ecosystem-group: "infrastructure"
30+
3431
- package-ecosystem: "github-actions"
3532
directory: "/"
3633
schedule:

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: mise update
3131

3232
- name: 🔷 Run Lint
33-
run: mise lint
33+
run: mise fix
3434

3535
- name: 💾 Commit
3636
if: success() || failure()

AGENTS.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,15 @@ drizzle/ # Database migration files
5454
| ---------------------- | -------------------- |
5555
| Dev server | `bun dev` |
5656
| Build | `bun run build` |
57-
| Lint (Biome) | `bun lint` |
58-
| Format (Biome) | `bun format` |
59-
| Lint + Format fix | `bun lint:fix` |
57+
| Check (Biome) | `bun check` |
58+
| Auto-fix (Biome) | `bun fix` |
6059
| Unit tests | `bun test:unit` |
6160
| E2E tests | `bun test:e2e` |
6261
| DB migration generate | `bun run generate` |
6362
| DB migration apply | `bun run migrate` |
6463
| Drizzle Studio | `bun run studio` |
65-
| Markdown lint | `mise lint:md` |
66-
| Full lint (Biome + MD) | `mise lint` |
64+
| Markdown fix | `mise fix:md` |
65+
| Full fix (Biome + MD) | `mise fix` |
6766

6867
## Coding Conventions
6968

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ bun test:e2e
8080
### 7. Format and Lint the files
8181

8282
```bash
83-
bun lint:fix
83+
bun fix
8484
```
8585

8686
### 8. Build the app

mise.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ bun run scripts/dev-up.ts
1515
bun run migrate
1616
"""
1717

18-
[tasks.lint]
19-
run = ["bun lint:fix --unsafe", "mise lint:md"]
18+
[tasks.fix]
19+
run = ["bun fix --unsafe", "mise fix:md"]
2020

21-
[tasks."lint:md"]
21+
[tasks."fix:md"]
2222
description = "Check markdown files for linting issues"
2323
run = "rumdl check --fix ."
2424

next.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ const nextConfig: NextConfig = {
55
experimental: {
66
inlineCss: true,
77
isrFlushToDisk: false,
8-
useTypeScriptCli: true,
98
},
109
// Vercel builds its own output and fails on standalone. Everywhere else
1110
// (the Docker image, the Playwright webServer on CI) needs it.

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,12 @@
2626
"url": "https://github.com/OpenUp-LabTakizawa/dcrs/issues"
2727
},
2828
"scripts": {
29-
"dev": "next dev --turbopack",
30-
"dev-win": "WATCHPACK_POLLING=true next dev --turbopack",
31-
"build": "next build --turbopack",
29+
"dev": "next dev",
30+
"dev-win": "WATCHPACK_POLLING=true next dev",
31+
"build": "next build",
3232
"start": "next start",
33-
"lint": "biome lint --write",
34-
"format": "biome format --write",
35-
"lint:fix": "biome check --write",
33+
"check": "biome check",
34+
"fix": "biome check --write",
3635
"test:unit": "bun test test/unit --preload ./happydom.ts --isolate --randomize",
3736
"test:e2e": "playwright test",
3837
"test:report": "playwright show-report",

0 commit comments

Comments
 (0)