bun-push 0.1.9 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/README.md +1 -10
  2. package/dist/cli.cjs +1537 -0
  3. package/dist/cli.js +144 -78
  4. package/dist/cli.js.map +10 -10
  5. package/dist/i18n/locales/en.d.ts +24 -0
  6. package/dist/i18n/locales/en.d.ts.map +1 -1
  7. package/dist/i18n/locales/ja.d.ts +24 -0
  8. package/dist/i18n/locales/ja.d.ts.map +1 -1
  9. package/dist/i18n/locales/ko.d.ts +24 -0
  10. package/dist/i18n/locales/ko.d.ts.map +1 -1
  11. package/dist/i18n/locales/zh.d.ts +24 -0
  12. package/dist/i18n/locales/zh.d.ts.map +1 -1
  13. package/dist/index.d.ts +1 -1
  14. package/dist/index.d.ts.map +1 -1
  15. package/dist/index.js +141 -61
  16. package/dist/index.js.map +9 -9
  17. package/dist/prompts.d.ts +0 -4
  18. package/dist/prompts.d.ts.map +1 -1
  19. package/dist/publisher.d.ts +5 -0
  20. package/dist/publisher.d.ts.map +1 -1
  21. package/dist/types.d.ts +0 -8
  22. package/dist/types.d.ts.map +1 -1
  23. package/dist/utils/version.d.ts +0 -4
  24. package/dist/utils/version.d.ts.map +1 -1
  25. package/package.json +4 -3
  26. package/dist/i18n/index.js +0 -126
  27. package/dist/i18n/locales/en.js +0 -125
  28. package/dist/i18n/locales/ja.js +0 -125
  29. package/dist/i18n/locales/ko.js +0 -125
  30. package/dist/i18n/locales/zh.js +0 -125
  31. package/dist/index.test.js +0 -90
  32. package/dist/logo.js +0 -58
  33. package/dist/prompts.js +0 -312
  34. package/dist/publisher.js +0 -110
  35. package/dist/publisher.test.js +0 -92
  36. package/dist/types.js +0 -4
  37. package/dist/utils/changelog.js +0 -210
  38. package/dist/utils/changelog.test.js +0 -126
  39. package/dist/utils/scripts.js +0 -30
  40. package/dist/utils/scripts.test.js +0 -58
  41. package/dist/utils/version.js +0 -71
  42. package/dist/utils/version.test.js +0 -78
  43. package/dist/utils/workspace.js +0 -174
  44. package/dist/utils/workspace.test.js +0 -124
package/README.md CHANGED
@@ -22,7 +22,7 @@
22
22
  - 📝 **Changelog 支持**:发布前记录变更日志,自动生成 CHANGELOG.md 文件
23
23
  - 🛠️ **脚本执行**:支持发布前执行构建脚本(如 build)
24
24
  - 🎨 **美观的 UI**:带有 loading 动画和成功提示
25
- - 📚 **JS API**:同时提供程序化 API 供 Node.js 脚本使用
25
+ - 📚 **JS API**:同时提供程序化 API 供 Bun 脚本使用
26
26
  - 🌍 **多语言支持**:支持中文、英文、日语、韩语,默认使用中文
27
27
 
28
28
  ## 📦 安装
@@ -30,15 +30,6 @@
30
30
  ```bash
31
31
  # 使用 bun
32
32
  bun add -g bun-push
33
-
34
- # 或使用 npm
35
- npm install -g bun-push
36
-
37
- # 或使用 yarn
38
- yarn global add bun-push
39
-
40
- # 或使用 pnpm
41
- pnpm add -g bun-push
42
33
  ```
43
34
 
44
35
  ## 🌍 多语言支持