chore: update skills

Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
This commit is contained in:
2026-04-07 17:06:08 -04:00
parent 7ffcb4dc43
commit 685241c92f
12 changed files with 58 additions and 532 deletions

View File

@@ -145,7 +145,7 @@ bun install # or 'bun i'
# Add dependencies
bun add express # Regular dependency
bun add -d typescript # Dev dependency
bun add -D @types/node # Dev dependency (alias)
bun add -D @types/bun # Dev dependency (alias)
bun add --optional pkg # Optional dependency
# From specific registry
@@ -176,7 +176,7 @@ bun update --latest # Update to latest (ignore ranges)
bun outdated
```
### 3.3 bunx (npx equivalent)
### 3.3 bunx (bunx --bun equivalent)
```bash
# Execute package binaries
@@ -595,7 +595,7 @@ rm -rf node_modules package-lock.json
bun install
# 3. Update scripts in package.json
# "start": "node index.js" → "start": "bun run index.ts"
# "start": "bun --bun index.js" → "start": "bun run index.ts"
# "test": "jest" → "test": "bun test"
# 4. Add Bun types