Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: cp .env.example .env

- name: Lint
run: pnpm lint && pnpm lint:ws
run: bun lint && bun lint:ws

format:
runs-on: ubuntu-latest
Expand All @@ -43,7 +43,7 @@ jobs:
uses: ./tooling/github/setup

- name: Format
run: pnpm format
run: bun format

typecheck:
runs-on: ubuntu-latest
Expand All @@ -54,4 +54,4 @@ jobs:
uses: ./tooling/github/setup

- name: Typecheck
run: pnpm typecheck
run: bun typecheck
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Next.js",
"type": "node-terminal",
"request": "launch",
"command": "pnpm dev",
"command": "bun dev",
"cwd": "${workspaceFolder}/apps/nextjs",
"skipFiles": ["<node_internals>/**"],
"sourceMaps": true,
Expand Down
2 changes: 1 addition & 1 deletion apps/expo/eas.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"build": {
"base": {
"node": "22.12.0",
"pnpm": "9.15.4",
"bun": "1.3.0",
"ios": {
"resourceClass": "m-medium"
}
Expand Down
1 change: 1 addition & 0 deletions apps/expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"@acme/tsconfig": "workspace:*",
"@types/react": "catalog:react19",
"eslint": "catalog:",
"metro-cache": "^0.83.3",
"prettier": "catalog:",
"tailwindcss": "catalog:",
"typescript": "catalog:"
Expand Down
6 changes: 3 additions & 3 deletions apps/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"private": true,
"type": "module",
"scripts": {
"build": "pnpm with-env next build",
"build": "bun with-env next build",
"clean": "git clean -xdf .cache .next .turbo node_modules",
"dev": "pnpm with-env next dev",
"dev": "bun with-env next dev",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint --flag unstable_native_nodejs_ts_config",
"start": "pnpm with-env next start",
"start": "bun with-env next start",
"typecheck": "tsc --noEmit",
"with-env": "dotenv -e ../../.env --"
},
Expand Down
3 changes: 2 additions & 1 deletion apps/tanstack-start/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "pnpm with-env vite dev",
"dev": "bun with-env vite dev",
"build": "vite build",
"clean": "rm -rf .cache .nitro .output .tanstack .turbo node_modules",
"start": "vite start",
"format": "prettier --check . --ignore-path ../../.gitignore --ignore-path .prettierignore",
"lint": "eslint --flag unstable_native_nodejs_ts_config",
Expand Down
Loading