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:
parent
55fc5be9d4
commit
d375e3141a
1 changed files with 28 additions and 0 deletions
28
pages.es/common/npm-run.md
Normal file
28
pages.es/common/npm-run.md
Normal 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`
|
Loading…
Add table
Reference in a new issue