Skip to content

Commit 39b7394

Browse files
authored
Update quickstart.md
include the scenarios to not freeze the lockfile
1 parent d381a57 commit 39b7394

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/docs/quickstart.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ Before getting started with Eliza, ensure you have:
3939
git checkout $(git describe --tags --abbrev=0)
4040
```
4141

42-
Install dependencies
42+
Install dependencies (on initial run)
4343

4444
```bash
45-
pnpm install
45+
pnpm install --no-frozen-lockfile
4646
```
4747

4848
# Quickstart Guide Update
@@ -52,10 +52,10 @@ Before getting started with Eliza, ensure you have:
5252
By default, the `pnpm` lockfile will not be updated during installations based off of .npmrc frozen-lockfile=true. To update the lockfile, you need to run the command:
5353

5454
```bash
55-
pnpm i --no-frozen-lockfile
55+
pnpm install --no-frozen-lockfile
5656
```
5757

58-
Please only use this command when you are bumping the version of a package or adding a new package to your package.json. This practice helps maintain consistency in your project's dependencies and prevents unintended changes to the lockfile.
58+
Please only use this command when you initially instantiating the repo or are bumping the version of a package or adding a new package to your package.json. This practice helps maintain consistency in your project's dependencies and prevents unintended changes to the lockfile.
5959

6060
Build the local libraries
6161

0 commit comments

Comments
 (0)