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

View File

@@ -0,0 +1,24 @@
# npm 版本
> 增加一个节点包的版本。
> 更多信息: <https://docs.npmjs.com/cli/commands/npm-version>。
- 检查当前版本:
`npm version`
- 增加次要版本:
`npm version minor`
- 设置特定版本:
`npm version {{version}}`
- 增加补丁版本而不创建 Git 标签:
`npm version patch --no-git-tag-version`
- 增加主要版本并自定义提交信息:
`npm version major -m "{{升级到 %s 的原因}}"`