Disable npm login and publish commands in Update Upm.bat

This commit is contained in:
2025-02-11 17:13:38 +08:00
parent 54b7cc7169
commit 7256e10ea7
2 changed files with 17 additions and 2 deletions

15
README.md Normal file
View File

@@ -0,0 +1,15 @@
# CC-Framework Editor Extensions
Unity编辑器扩展工具集。
## 扩展工具
### RectTransform 工具
为RectTransform组件添加Figma、MasterGo的坐标同步支持。
[查看详细说明](Assets/CCTools/README.md)
## 联系方式
- 作者邮箱:[foldcc@lightyears.ltd](mailto:foldcc@lightyears.ltd)
- 官方网站:[https://lightyears.ltd](https://lightyears.ltd)

View File

@@ -19,10 +19,10 @@ IF "%Flg%" equ "y" (
git tag %var% upm
git push origin upm --tags
# 登录到npm
npm login
# npm login
# 发布到npm
npm publish Assets/CCTools/
# npm publish Assets/CCTools/
GOTO :END
)