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: .github/CONTRIBUTING.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,13 +36,12 @@ Please make sure you have [set up your username and email address](https://git-s
36
36
## Specific set up for documentation application
37
37
38
38
Our documentation is build with [VitePress](https://vitepress.dev/), for set up a local environment to contribute follow these steps:
39
-
1. You'll need `node` (_we recommend using [nvm](https://github.com/nvm-sh/nvm)_) and `yarn` for set up the environment.
39
+
1. You'll need `node` (_we recommend using [nvm](https://github.com/nvm-sh/nvm)_) and `npm` for set up the environment.
40
40
* Using `nvm` you can execute `nvm use`(reads _.nvmrc_ file) in the project root directory and follow the instructions to use the correct `node` version.
41
-
* To use `yarn` you need to execute `corepack enable` to activate [Corepack](https://nodejs.org/api/corepack.html).
42
-
2. Install dependencies with `yarn install`.
43
-
3. Run local development server with `yarn docs:dev`.
41
+
2. Install dependencies with `npm ci`.
42
+
3. Run local development server with `npm run docs:dev`.
44
43
4. Implement your changes.
45
-
5. Before submitting your Pull Request run `docs:build` to ensure everything works.
44
+
5. Before submitting your Pull Request run `npm run docs:build` to ensure everything works.
46
45
47
46
## Change the configuration
48
47
To change the configuration for the project we use the `.env` file if you would like to know what variables should be there use the following command:
0 commit comments