1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-08 23:13:58 +02:00

npm-run: add Spanish translation (#14918)

This commit is contained in:
Igor Támara 2024-11-24 02:57:13 -05:00 committed by GitHub
parent 55fc5be9d4
commit d375e3141a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,28 @@
# npm run
> Corre un guión (script).
> Más información: <https://docs.npmjs.com/cli/commands/npm-run-script>.
- Corre un guión:
`npm run {{nombre_del_guión}}`
- Pasa argumentos a un guión:
`npm run {{nombre_del_guión}} -- {{argumento}} {{--opción}}`
- Ejecuta un guión llamado `start`:
`npm start`
- Ejecuta un guión llamado `stop`:
`npm stop`
- Ejecuta un guión llamado 'restart':
`npm restart`
- Ejecuta un guión llamado `test`:
`npm test`