File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ cd desktop
24
24
Once you have cloned the project, navigate to the project directory and install the necessary dependencies using npm:
25
25
26
26
``` bash
27
- pnpm i
27
+ npm i
28
28
```
29
29
30
30
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
34
34
To set up the browser, you need to download additional files and prepare the environment:
35
35
36
36
``` bash
37
- pnpm run init
37
+ npm run init
38
38
```
39
39
40
40
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
54
54
Now that everything is set up, you can build the browser:
55
55
56
56
``` bash
57
- pnpm build
57
+ npm build
58
58
```
59
59
60
60
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
64
64
After building the browser, you can start it using:
65
65
66
66
``` bash
67
- pnpm start
67
+ npm start
68
68
```
69
69
70
70
This command launches the browser, allowing you to see your changes in action.
You can’t perform that action at this time.
0 commit comments