Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct spelling of pglite driver across docs #429

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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 src/content/docs/drizzle-kit-pull.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Drizzle Kit does not come with a pre-bundled database driver,
it will automatically pick available database driver from your current project based on the `dialect` - [see discussion](https://github.com/drizzle-team/drizzle-orm/discussions/2203).

Mostly all drivers of the same dialect share the same set of connection params,
as for exceptions like `aws-data-api`, `pglight` and `d1-http` - you will have to explicitely specify `driver` param.
as for exceptions like `aws-data-api`, `pglite` and `d1-http` - you will have to explicitely specify `driver` param.

<CodeTabs items={["AWS Data API", "PGLite", "Cloudflare D1 HTTP"]}>
```ts {6}
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/drizzle-kit-push.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Drizzle Kit does not come with a pre-bundled database driver,
it will automatically pick available database driver from your current project based on the `dialect` - [see discussion](https://github.com/drizzle-team/drizzle-orm/discussions/2203).

Mostly all drivers of the same dialect share the same set of connection params,
as for exceptions like `aws-data-api`, `pglight` and `d1-http` - you will have to explicitly specify `driver` param.
as for exceptions like `aws-data-api`, `pglite` and `d1-http` - you will have to explicitly specify `driver` param.

<DriversExamples/>

Expand Down
2 changes: 1 addition & 1 deletion src/mdx/Drivers.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
drivers: ['aws-data-api', 'd1-http', 'pglight']
drivers: ['aws-data-api', 'd1-http', 'pglite']
---

{frontmatter.drivers.map((driver) => <><code>{driver}</code>&#32;</>)}