siluzan-cso-cli 1.0.0-beta.28 → 1.0.0-beta.30
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/{chunk-FZS2K2T3.js → chunk-K7JCQOEZ.js} +28 -0
- package/dist/{extract-cover-NFKUUFLS.js → extract-cover-QK3HAZI2.js} +1 -1
- package/dist/index.js +5918 -2097
- package/dist/skill/SKILL.md +62 -571
- package/dist/skill/_meta.json +2 -2
- package/dist/skill/{publish-config-image.example.json → assets/publish-config-image.example.json} +4 -3
- package/dist/skill/{publish-config.example.json → assets/publish-config.example.json} +9 -8
- package/dist/skill/references/analytics.md +256 -0
- package/dist/skill/references/publish.md +306 -0
- package/dist/skill/references/setup.md +88 -0
- package/package.json +5 -3
- package/scripts/postinstall.mjs +5 -0
- package/assets/siluzan-cso/README.md +0 -100
- package/assets/siluzan-cso/SKILL.md +0 -621
- package/assets/siluzan-cso/publish-config-image.example.json +0 -37
- package/assets/siluzan-cso/publish-config.example.json +0 -55
- package/assets/siluzan-cso/reference-api.md +0 -32
- package/assets/siluzan-cso/reference-cso-publish.md +0 -116
- package/dist/skill/reference-api.md +0 -32
- package/dist/skill/reference-cso-publish.md +0 -116
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.0.0-beta.
|
|
23
|
+
> **注意**:当前为测试版(1.0.0-beta.30),供内部测试使用。正式发布后安装命令将改为 `npm install -g siluzan-cso-cli`。
|
|
24
24
|
|
|
25
25
|
| 助手 | 建议 `--ai` |
|
|
26
26
|
|------|-------------|
|
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __commonJS = (cb, mod) => function __require() {
|
|
8
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
19
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
20
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
21
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
22
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
23
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
24
|
+
mod
|
|
25
|
+
));
|
|
26
|
+
|
|
1
27
|
// src/commands/extract-cover.ts
|
|
2
28
|
import * as fs from "fs";
|
|
3
29
|
import * as path from "path";
|
|
@@ -220,6 +246,8 @@ async function runExtractCover(options) {
|
|
|
220
246
|
}
|
|
221
247
|
|
|
222
248
|
export {
|
|
249
|
+
__commonJS,
|
|
250
|
+
__toESM,
|
|
223
251
|
PLATFORM_COVER_SPECS,
|
|
224
252
|
runExtractCover
|
|
225
253
|
};
|