Apply suggestions from code review

Co-authored-by: Qjuh <76154676+Qjuh@users.noreply.github.com>
This commit is contained in:
Almeida
2026-03-27 14:06:28 +00:00
committed by GitHub
parent 6e7437456f
commit 54b5c29fdf
3 changed files with 3 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ You will need an LTS version of [Node.js](http://nodejs.org) and [pnpm](https://
After cloning the repo, run:
```bash
$ pnpm install # Install the dependencies of the project
$ pnpm install --frozen-lockfile # Install the dependencies of the project
```
A high level overview of tools used:

View File

@@ -14,7 +14,7 @@ _Code is forked from the Sapphire Community's Website under the MIT license_
After forking/cloning this repo to a folder locally:
1. Install dependencies with `pnpm install`.
1. Install dependencies with `pnpm install --frozen-lockfile`.
2. Run `pnpm run start` to start the dev server
## Special thanks

View File

@@ -24,7 +24,7 @@ channel.
### Install dependencies first
One of the most crucial steps is installing dependencies via `pnpm install`. This ensures that linting can be done, and
One of the most crucial steps is installing dependencies via `pnpm install --frozen-lockfile`. This ensures that linting can be done, and
it also sets up the `git` hooks for building the `deno` types and automatically formatting/linting the code when you
commit it.