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: LICENSE
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
Copyright (c) 2024 Erick Miguel Gonzalez Rivera
1
+
Copyright (c) 2025 Erick Miguel Gonzalez Rivera
2
2
3
3
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|`start`|`nodemon server.js`| Inicia el servidor en modo desarrollo usando `nodemon`. |
165
+
|`dev`|`nodemon server.js`| Alias de `start`. Ideal para entornos de desarrollo. |
166
+
|`format`|`prettier 'src/**/*.{js,ts,jsx,tsx,json}' server.js package.json --write`| Formatea el código en la carpeta `src`, `server.js` y `package.json` usando Prettier. |
167
+
|`prepare`|`husky`| Configura los hooks de Git mediante Husky (se ejecuta automáticamente al instalar dependencias). |
168
+
|`test`|`jest`| Ejecuta los tests unitarios utilizando Jest. |
169
+
|`test:watch`|`jest --watchAll`| Ejecuta los tests y observa cambios en tiempo real para repetir automáticamente las pruebas. |
170
+
|`test:with-server`|`concurrently --kill-others --success first "pnpm dev" "pnpm test"`| Ejecuta el servidor de desarrollo y las pruebas en paralelo. Se detiene si uno de ellos finaliza o falla. |
0 commit comments