opencode-feishu 0.3.0 → 0.3.3
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 +15 -0
- package/dist/index.js +32 -3624
- package/dist/index.js.map +1 -1
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -292,6 +292,21 @@ npm run dev
|
|
|
292
292
|
npm run typecheck
|
|
293
293
|
```
|
|
294
294
|
|
|
295
|
+
### 发布
|
|
296
|
+
|
|
297
|
+
```bash
|
|
298
|
+
# 一键版本发布(交互式选择 patch/minor/major,自动 commit + tag + push)
|
|
299
|
+
npm run release
|
|
300
|
+
|
|
301
|
+
# 手动发布(prepublishOnly 自动执行构建+类型检查)
|
|
302
|
+
npm publish
|
|
303
|
+
|
|
304
|
+
# 干运行:查看将要发布的文件(不实际发布)
|
|
305
|
+
npm publish --dry-run
|
|
306
|
+
```
|
|
307
|
+
|
|
308
|
+
推送 `v*` tag 后 GitHub Actions 自动发布到 npm(需在 GitHub 仓库 Settings > Secrets 中配置 `NPM_TOKEN`)。
|
|
309
|
+
|
|
295
310
|
### 开发流程
|
|
296
311
|
|
|
297
312
|
1. 修改 `src/` 下的源文件
|