Skip to content

Commit 7d4828f

Browse files
authored
switch to bun (#7)
1 parent 7180552 commit 7d4828f

File tree

10 files changed

+8
-3574
lines changed

10 files changed

+8
-3574
lines changed

.dockerignore

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/actions/setup-pnpm/action.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/build.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15-
- uses: ./.github/actions/setup-pnpm
15+
- uses: oven-sh/setup-bun@v1
1616

17-
- run: pnpm build
17+
- run: bun install --frozen-lockfile
18+
- run: bun run build
1819

1920
- name: Upload built project
2021
uses: actions/upload-artifact@v4

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,7 @@ stats.html
2525
Thumbs.db
2626

2727
# debug
28-
npm-debug.log*
29-
yarn-debug.log*
30-
yarn-error.log*
31-
.pnpm-debug.log*
28+
*.log*
3229

3330
# local env files
3431
.env*.local

Dockerfile

Lines changed: 0 additions & 47 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Try out new-connect at https://new-connect.connect-d5y.pages.dev.
66

77
## Development
88

9-
- Install pnpm: https://pnpm.io/installation
10-
- Install dependencies: `pnpm install`
11-
- Start dev server: `pnpm dev --open`
9+
- Install bun: https://bun.sh
10+
- Install dependencies: `bun install`
11+
- Start dev server: `bun dev --open`
1212

1313
## Contributing
1414

bun.lockb

150 KB
Binary file not shown.

nginx.conf

Lines changed: 0 additions & 20 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"lint": "eslint .",
1616
"lint:fix": "eslint --fix ."
1717
},
18-
"packageManager": "[email protected]",
18+
"packageManager": "[email protected]",
1919
"type": "module",
2020
"devDependencies": {
2121
"@types/mapbox__polyline": "^1.0.2",

0 commit comments

Comments
 (0)