Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-01 00:21:57 +00:00
parent a94cb9991c
commit 2a88b0bbe0
12 changed files with 231 additions and 17 deletions

25
tldr/bun-run Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# bun run
> Execute a JavaScript/TypeScript file, or a script from `package.json`.
> More information: <https://bun.com/docs/cli/run>.
- Run a script defined in `package.json`:
`bun run {{script_name}}`
- Run a JavaScript or TypeScript file directly:
`bun run {{path/to/file.ts}}`
- Run a file in "watch" mode (restarts automatically when the file changes):
`bun run --watch {{path/to/file.ts}}`
- Run a file using a specific configuration file:
`bun run --config {{path/to/bunfig.toml}} {{path/to/file.ts}}`