Skip to content
Open
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 AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Use `pnpm -C <dir> <command>` for project-local script commands when working in

# `bgproc`

Use `pnpm exec bgproc` to start, stop, and manage long-running `astro dev` & `astro preview` servers in the background. Do not manually start detatched servers with `&` if you can use `bgproc` instead.
Use `pnpm exec bgproc` to start, stop, and manage long-running `astro dev` & `astro preview` servers in the background. Do not manually start detached servers with `&` if you can use `bgproc` instead.

Use `pnpm exec bgproc --help` to see all available commands.

Expand Down
2 changes: 1 addition & 1 deletion packages/astro/src/core/logger/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export class AstroLogger {
}

/**
* It calls the `flush` function of the provided destinatin, if it exists.
* It calls the `flush` function of the provided destination, if it exists.
*/
flush() {
if (this.options.destination.flush) {
Expand Down
Loading