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
Copy file name to clipboardexpand all lines: docs/docs/quickstart.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -39,10 +39,10 @@ Before getting started with Eliza, ensure you have:
39
39
git checkout $(git describe --tags --abbrev=0)
40
40
```
41
41
42
-
Install dependencies
42
+
Install dependencies (on initial run)
43
43
44
44
```bash
45
-
pnpm install
45
+
pnpm install --no-frozen-lockfile
46
46
```
47
47
48
48
# Quickstart Guide Update
@@ -52,10 +52,10 @@ Before getting started with Eliza, ensure you have:
52
52
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:
53
53
54
54
```bash
55
-
pnpm i --no-frozen-lockfile
55
+
pnpm install --no-frozen-lockfile
56
56
```
57
57
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.
0 commit comments