siluzan-cso-cli 1.1.8-beta.3 → 1.1.8-beta.4
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 -1
- package/dist/index.js +2 -1
- package/dist/skill/_meta.json +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ siluzan-cso init -d /path/to/skills # 写入自定义目录
|
|
|
20
20
|
siluzan-cso init --force # 强制覆盖已存在文件
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
> **注意**:当前为测试版(1.1.8-beta.
|
|
23
|
+
> **注意**:当前为测试版(1.1.8-beta.4),供内部测试使用。正式发布后安装命令将改为 `npm install -g siluzan-cso-cli`。
|
|
24
24
|
|
|
25
25
|
| 助手 | 建议 `--ai` |
|
|
26
26
|
|------|-------------|
|
package/dist/index.js
CHANGED
|
@@ -2340,7 +2340,8 @@ async function ensureSentryInitialized(requestUrl) {
|
|
|
2340
2340
|
if (!flushHookRegistered) {
|
|
2341
2341
|
flushHookRegistered = true;
|
|
2342
2342
|
process.once("beforeExit", () => {
|
|
2343
|
-
void Sentry.flush(2e3)
|
|
2343
|
+
void Sentry.flush(2e3).catch(() => {
|
|
2344
|
+
});
|
|
2344
2345
|
});
|
|
2345
2346
|
}
|
|
2346
2347
|
sentryReady = true;
|
package/dist/skill/_meta.json
CHANGED
package/package.json
CHANGED