Skip to content

Commit

Permalink
Update building.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mauro-balades authored Jan 13, 2025
1 parent 553e16d commit 1ecb8f2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions content/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ cd desktop
Once you have cloned the project, navigate to the project directory and install the necessary dependencies using npm:

```bash
npm i
pnpm i
```

This command will install all the packages listed in the `package.json` file, which are required for building and running Zen Browser.
Expand All @@ -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:

```bash
npm run init
pnpm run init
```

This command handles all the necessary bootstrapping tasks, such as setting up configuration files and downloading essential resources.
Expand All @@ -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:

```bash
npm run build
pnpm build
```

This command compiles the source code and creates the necessary files for running Zen Browser.
Expand All @@ -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:

```bash
npm start
pnpm 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.

0 comments on commit 1ecb8f2

Please sign in to comment.