Replies: 2 comments 8 replies
-
The answer is https://discord.com/channels/1132231889290285117/1132602515616174080/1215058401415925900 |
Beta Was this translation helpful? Give feedback.
8 replies
-
The documentation was updated in #2101. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The getting started guide says to use
pnpm add --save-dev --save-exact @biomejs/biome
, which will install the project in node_modules, but then all of the instructions for running biome usepnpm dlx
, which will download and execute the latest version each time it is run, which defeats the purpose of saving an exact version in node_modules. Instead, a version should be specified likepnpm dlx @biomejs/[email protected] check .
.Side note: why is
dlx
required to run biome?Beta Was this translation helpful? Give feedback.
All reactions