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.
- package/README.md +1 -10
- package/dist/cli.cjs +1537 -0
- package/dist/cli.js +144 -78
- package/dist/cli.js.map +10 -10
- package/dist/i18n/locales/en.d.ts +24 -0
- package/dist/i18n/locales/en.d.ts.map +1 -1
- package/dist/i18n/locales/ja.d.ts +24 -0
- package/dist/i18n/locales/ja.d.ts.map +1 -1
- package/dist/i18n/locales/ko.d.ts +24 -0
- package/dist/i18n/locales/ko.d.ts.map +1 -1
- package/dist/i18n/locales/zh.d.ts +24 -0
- package/dist/i18n/locales/zh.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +141 -61
- package/dist/index.js.map +9 -9
- package/dist/prompts.d.ts +0 -4
- package/dist/prompts.d.ts.map +1 -1
- package/dist/publisher.d.ts +5 -0
- package/dist/publisher.d.ts.map +1 -1
- package/dist/types.d.ts +0 -8
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/version.d.ts +0 -4
- package/dist/utils/version.d.ts.map +1 -1
- package/package.json +4 -3
- package/dist/i18n/index.js +0 -126
- package/dist/i18n/locales/en.js +0 -125
- package/dist/i18n/locales/ja.js +0 -125
- package/dist/i18n/locales/ko.js +0 -125
- package/dist/i18n/locales/zh.js +0 -125
- package/dist/index.test.js +0 -90
- package/dist/logo.js +0 -58
- package/dist/prompts.js +0 -312
- package/dist/publisher.js +0 -110
- package/dist/publisher.test.js +0 -92
- package/dist/types.js +0 -4
- package/dist/utils/changelog.js +0 -210
- package/dist/utils/changelog.test.js +0 -126
- package/dist/utils/scripts.js +0 -30
- package/dist/utils/scripts.test.js +0 -58
- package/dist/utils/version.js +0 -71
- package/dist/utils/version.test.js +0 -78
- package/dist/utils/workspace.js +0 -174
- 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 供
|
|
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
|
## 🌍 多语言支持
|