Skip to content

Commit 4cc3baa

Browse files
committed
chore: update package.json scripts for bun and next compatibility
Modified the scripts in package.json to ensure compatibility with the latest bun and next versions, including changes to the build, dev, and start commands. Additionally, adjusted the clean script to enhance file removal processes.
1 parent f6e28d4 commit 4cc3baa

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"private": true,
55
"scripts": {
66
"clean": "git clean -fdX -e '.env' -e '.env.*' -e '!.env' -e '!.env.*' && find . -type f \\( -name 'pnpm-lock.yaml' -o -name 'package-lock.json' -o -name 'yarn.lock' -o -name 'bun.lockb' -o -name 'bun.lock' \\) -exec rm -f {} + && bun install",
7-
"build": "bun generate-sdk-docs && next build",
8-
"dev": "bun generate-sdk-docs && next dev",
7+
"build": "bun generate-sdk-docs && next build --turbopack",
8+
"dev": "bun generate-sdk-docs && next dev --turbopack",
99
"start": "bun generate-sdk-docs && next start",
1010
"lint": "bun generate-sdk-docs && next lint",
1111
"check-types": "tsc --noEmit",

src/app/global.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,7 @@ th {
370370

371371
#nd-page {
372372
background-color: var(--background);
373+
max-width: 100%;
373374
@apply rounded-t-lg;
374375
}
375376

0 commit comments

Comments
 (0)