Skip to content

Commit 64504e2

Browse files
committed
docs: replace bun references with pnpm
Replace all bun command references with pnpm equivalents: - Update installation instructions in README.md - Update example run commands in examples/README.md - Update benchmark commands in benchmarks/REPORT.ja.md - Change Nix flake description from "Bun" to "pnpm" This completes the migration from bun to pnpm as the project's package manager.
1 parent 7b46ee9 commit 64504e2

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ npm install @stackone/ai
1919
# Using yarn
2020
yarn add @stackone/ai
2121

22-
# Using bun
23-
bun add @stackone/ai
22+
# Using pnpm
23+
pnpm add @stackone/ai
2424
```
2525

2626
### Optional: AI SDK Integration
@@ -34,8 +34,8 @@ npm install ai
3434
# Using yarn
3535
yarn add ai
3636

37-
# Using bun
38-
bun add ai
37+
# Using pnpm
38+
pnpm add ai
3939
```
4040

4141
## Development Environment
@@ -53,7 +53,7 @@ echo "use flake" > .envrc
5353
direnv allow
5454
```
5555

56-
The flake provides all necessary development dependencies including Node.js, Bun, and other build tools.
56+
The flake provides all necessary development dependencies including Node.js, pnpm, and other build tools.
5757

5858
## Integrations
5959

examples/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export const ACCOUNT_IDS = {
7070

7171
```bash
7272
# Run a specific example
73-
bun run examples/ai-sdk-integration.ts
73+
pnpm run examples/ai-sdk-integration.ts
7474

7575
# Or with Node.js
7676
npx tsx examples/ai-sdk-integration.ts
@@ -80,7 +80,7 @@ npx tsx examples/ai-sdk-integration.ts
8080

8181
```bash
8282
# Test all examples
83-
bun test examples/
83+
pnpm test examples/
8484
```
8585

8686
## Examples Overview
@@ -273,13 +273,13 @@ The examples include a comprehensive test suite:
273273

274274
```bash
275275
# Run all example tests
276-
bun test examples/
276+
pnpm test examples/
277277

278278
# Run with verbose output
279-
bun test examples/ --verbose
279+
pnpm test examples/ --verbose
280280

281281
# Run specific test
282-
bun test examples/examples.spec.ts
282+
pnpm test examples/examples.spec.ts
283283
```
284284

285285
## Troubleshooting

0 commit comments

Comments
 (0)