mirror of
https://github.com/zen-browser/docs.git
synced 2025-07-07 17:05:34 +02:00
fix: use npm instead of pnpm
This commit is contained in:
parent
66e626d084
commit
bfbbe35ad3
1 changed files with 4 additions and 4 deletions
|
@ -24,7 +24,7 @@ cd desktop
|
||||||
Once you have cloned the project, navigate to the project directory and install the necessary dependencies using npm:
|
Once you have cloned the project, navigate to the project directory and install the necessary dependencies using npm:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pnpm i
|
npm i
|
||||||
```
|
```
|
||||||
|
|
||||||
This command will install all the packages listed in the `package.json` file, which are required for building and running Zen Browser.
|
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
|
||||||
To set up the browser, you need to download additional files and prepare the environment:
|
To set up the browser, you need to download additional files and prepare the environment:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pnpm run init
|
npm run init
|
||||||
```
|
```
|
||||||
|
|
||||||
This command handles all the necessary bootstrapping tasks, such as setting up configuration files and downloading essential resources.
|
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
|
||||||
Now that everything is set up, you can build the browser:
|
Now that everything is set up, you can build the browser:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pnpm build
|
npm build
|
||||||
```
|
```
|
||||||
|
|
||||||
This command compiles the source code and creates the necessary files for running Zen Browser.
|
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
|
||||||
After building the browser, you can start it using:
|
After building the browser, you can start it using:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pnpm start
|
npm start
|
||||||
```
|
```
|
||||||
|
|
||||||
This command launches the browser, allowing you to see your changes in action.
|
This command launches the browser, allowing you to see your changes in action.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue