mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
coffee: add pt_BR translation (#11105)
* coffee: add pt_BR translation * coffee: fix pt_BR translation * update coffee.md --------- Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com>
This commit is contained in:
parent
a6e6f6a0e9
commit
68d82800ac
1 changed files with 24 additions and 0 deletions
24
pages.pt_BR/common/coffee.md
Normal file
24
pages.pt_BR/common/coffee.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# coffee
|
||||
|
||||
> Executa scripts CoffeeScript ou os compila em JavaScript.
|
||||
> Mais informações: <https://coffeescript.org#cli>.
|
||||
|
||||
- Executa um script:
|
||||
|
||||
`coffee {{caminho/para/arquivo.coffee}}`
|
||||
|
||||
- Compila para JavaScript e salva em um arquivo com o mesmo nome:
|
||||
|
||||
`coffee --compile {{caminho/para/arquivo.coffee}}`
|
||||
|
||||
- Compila para JavaScript e salva em um arquivo de saída indicado:
|
||||
|
||||
`coffee --compile {{caminho/para/arquivo.coffee}} --output {{caminho/para/arquivo.js}}`
|
||||
|
||||
- Inicia um REPL (shell interativo):
|
||||
|
||||
`coffee --interactive`
|
||||
|
||||
- Observa script para alterações e o executa novamente:
|
||||
|
||||
`coffee --watch {{caminho/para/arquivo.coffee}}`
|
Loading…
Add table
Reference in a new issue