You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "Install dependencies" step in the Quick Start guide incorrectly uses the <Npx> component:
<Npx>
drizzle-orm
-D drizzle-kit
</Npx>
However, <Npx> is meant for command execution, not dependency installation. It automatically prepends runners like npx, yarn, or pnpm to the listed lines.
This leads to broken output such as:
npx drizzle-orm
npx -D drizzle-kit
Which is obviously invalid, and will confuse users.