Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"image": "oven/bun:1.3.13",
"image": "oven/bun:1.3.14",
"customizations": {
"vscode": {
"extensions": [
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bun-run-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
bun-run:
runs-on: ubuntu-latest
container:
image: oven/bun:1.3.13-debian
image: oven/bun:1.3.14-debian

steps:
- name: Checkout code
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ You will need to either [install bun](https://bun.sh/docs/installation) or use a
Get the image that you like the most. Example

```
docker pull oven/bun:1.3.13
docker pull oven/bun:1.3.14
```

Run the image mounting the src folder into the container

```
docker container run --rm -it -p 3000:3000 -v ./src:/home/bun/app oven/bun:1.3.13 bash
docker container run --rm -it -p 3000:3000 -v ./src:/home/bun/app oven/bun:1.3.14 bash
```

### VS Code setup

Install the dev containers extension in vs code. Once you open this project vs code will prompt you to open the project in the bun:1.3.13 container.
Install the dev containers extension in vs code. Once you open this project vs code will prompt you to open the project in the bun:1.3.14 container.

## Recreate setup from scratch

Expand Down
6 changes: 3 additions & 3 deletions src/bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/bun": "1.3.13"
"@types/bun": "1.3.14"
},
"peerDependencies": {
"typescript": "6.0.3"
Expand Down