Skip to content

Commit 57c6336

Browse files
Merge pull request #146 from PeterCardenas/patch-1
fix: use npm instead of pnpm
2 parents 66e626d + bfbbe35 commit 57c6336

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/building.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cd desktop
2424
Once you have cloned the project, navigate to the project directory and install the necessary dependencies using npm:
2525

2626
```bash
27-
pnpm i
27+
npm i
2828
```
2929

3030
This command will install all the packages listed in the `package.json` file, which are required for building and running Zen Browser.
@@ -34,7 +34,7 @@ This command will install all the packages listed in the `package.json` file, wh
3434
To set up the browser, you need to download additional files and prepare the environment:
3535

3636
```bash
37-
pnpm run init
37+
npm run init
3838
```
3939

4040
This command handles all the necessary bootstrapping tasks, such as setting up configuration files and downloading essential resources.
@@ -54,7 +54,7 @@ This script updates the "en-US" localization files, which are necessary for prop
5454
Now that everything is set up, you can build the browser:
5555

5656
```bash
57-
pnpm build
57+
npm build
5858
```
5959

6060
This command compiles the source code and creates the necessary files for running Zen Browser.
@@ -64,7 +64,7 @@ This command compiles the source code and creates the necessary files for runnin
6464
After building the browser, you can start it using:
6565

6666
```bash
67-
pnpm start
67+
npm start
6868
```
6969

7070
This command launches the browser, allowing you to see your changes in action.

0 commit comments

Comments
 (0)