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
39 changes: 0 additions & 39 deletions apps/playgrounds/bun-react/bun.lock

This file was deleted.

7 changes: 3 additions & 4 deletions apps/playgrounds/bun-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@
"react-dom": "19.2.0"
},
"devDependencies": {
"@types/bun": "1.3.2",
"@types/react": "19.2.6",
"@types/react-dom": "19.2.3",
"@types/bun": "1.3.2"
},
"packageManager": "bun@1.3.2"
"@types/react-dom": "19.2.3"
}
}
3 changes: 0 additions & 3 deletions apps/playgrounds/bun-solid-start/.env.production

This file was deleted.

28 changes: 0 additions & 28 deletions apps/playgrounds/bun-solid-start/.gitignore

This file was deleted.

32 changes: 0 additions & 32 deletions apps/playgrounds/bun-solid-start/README.md

This file was deleted.

15 changes: 0 additions & 15 deletions apps/playgrounds/bun-solid-start/app.config.ts

This file was deleted.

1,236 changes: 0 additions & 1,236 deletions apps/playgrounds/bun-solid-start/bun.lock

This file was deleted.

19 changes: 0 additions & 19 deletions apps/playgrounds/bun-solid-start/package.json

This file was deleted.

Binary file removed apps/playgrounds/bun-solid-start/public/favicon.ico
Binary file not shown.
63 changes: 0 additions & 63 deletions apps/playgrounds/bun-solid-start/src/app.css

This file was deleted.

42 changes: 0 additions & 42 deletions apps/playgrounds/bun-solid-start/src/app.tsx

This file was deleted.

4 changes: 0 additions & 4 deletions apps/playgrounds/bun-solid-start/src/entry-client.tsx

This file was deleted.

21 changes: 0 additions & 21 deletions apps/playgrounds/bun-solid-start/src/entry-server.tsx

This file was deleted.

10 changes: 0 additions & 10 deletions apps/playgrounds/bun-solid-start/src/global.d.ts

This file was deleted.

19 changes: 0 additions & 19 deletions apps/playgrounds/bun-solid-start/tsconfig.json

This file was deleted.

27 changes: 24 additions & 3 deletions apps/playgrounds/bun/README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,36 @@
# bun

To install dependencies:
This playground uses `workspace:*` protocol for the `arkenv` dependency, which Bun doesn't understand. You must install dependencies using pnpm from the repository root first.

## Installation

**Important:** Run these commands in order:

1. Install all workspace dependencies from the repository root:
```bash
cd <repo-root> && pnpm install
```

2. Then install Bun-specific dependencies in this playground:
```bash
cd apps/playgrounds/bun && bun install
```

Alternatively, you can use `bun dev` directly after step 1 (Bun will install its dependencies automatically):
```bash
bun install
cd apps/playgrounds/bun && bun dev
```

To run:
## Running

```bash
bun run index.ts
```

Or in development mode with watch:

```bash
bun dev
```

This project was created using `bun init` in bun v1.3.2. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
Loading
Loading