Skip to content

Commit

Permalink
Merge pull request #392 from AlejandroSuero/feature/ImproveNodeDX
Browse files Browse the repository at this point in the history
Add: Better DX using Node and NVM
  • Loading branch information
midudev authored Mar 9, 2024
2 parents 0ac3728 + 4643a88 commit 64f2a47
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.14.1
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

- **Añade el repositorio original como remoto**: Para mantener tu fork actualizado con los cambios del repositorio original, agrega el repositorio original como un remoto. Puedes hacerlo ejecutando `git remote add upstream <URL del repositorio original>`.

- **Asegúrate de usar la versión de Node correcta**: Para ello, `nvm use` o `nvm use <version>`, si no usas `nvm`, asegúrate de descargar la versión detallada en `.node-version` o `.nvmrc`.

- **Instala las dependencias**: Navega hasta el directorio del proyecto clonado y ejecuta `pnpm install` para instalar todas las dependencias necesarias.

#### 2. Trabaja en tus cambios
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@ La Velada IV es una competición de boxeo que enfrenta a streamers, creadores de

### Prerequisitos

- NVM (recomendado para asegurar versión de Node) ver [documentación oficial](https://github.com/nvm-sh/nvm?tab=readme-ov-file#installing-and-updating)

```sh
nvm use
# o
nvm use <version>
```

> Si quieres automatizar el proceso, puedes crear un script siguiendo la [documentación oficial](https://github.com/nvm-sh/nvm?tab=readme-ov-file#calling-nvm-use-automatically-in-a-directory-with-a-nvmrc-file)
- PNPM (es nuestra recomendación por su eficiencia y rapidez)

```sh
Expand Down

0 comments on commit 64f2a47

Please sign in to comment.