add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/common/coffee.md Normal file
View File

@@ -0,0 +1,24 @@
# 咖啡
> 执行 CoffeeScript 脚本或将其编译为 JavaScript。
> 更多信息:<https://coffeescript.org#cli>。
- 运行脚本:
`coffee {{path/to/file.coffee}}`
- 编译为 JavaScript 并保存为同名文件:
`coffee --compile {{path/to/file.coffee}}`
- 编译为 JavaScript 并保存为指定的输出文件:
`coffee --compile {{path/to/file.coffee}} --output {{path/to/file.js}}`
- 启动 REPL交互式 Shell
`coffee --interactive`
- 监视脚本的变化并重新运行脚本:
`coffee --watch {{path/to/file.coffee}}`