@yoooclaw/cli 0.0.1 → 0.0.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/dist/bin.cjs +4378 -65
- package/dist/bin.cjs.map +52 -7
- package/dist/command-tree.d.ts +13 -3
- package/dist/context.d.ts +0 -1
- package/dist/errors.d.ts +14 -1
- package/dist/index.cjs +4378 -65
- package/dist/index.cjs.map +52 -7
- package/dist/index.d.ts +0 -1
- package/dist/output/format.d.ts +0 -1
- package/dist/paths.d.ts +6 -1
- package/dist/program.d.ts +4 -3
- package/dist/version.d.ts +0 -1
- package/package.json +3 -4
- package/skills/yoooclaw-lightrule-create/SKILL.md +62 -0
- package/skills/yoooclaw-notification-query/SKILL.md +70 -0
- package/skills/yoooclaw-tunnel-debug/SKILL.md +52 -0
- package/dist/bin.d.ts +0 -2
- package/dist/bin.d.ts.map +0 -1
- package/dist/command-tree.d.ts.map +0 -1
- package/dist/context.d.ts.map +0 -1
- package/dist/errors.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/output/format.d.ts.map +0 -1
- package/dist/paths.d.ts.map +0 -1
- package/dist/program.d.ts.map +0 -1
- package/dist/version.d.ts.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -6,4 +6,3 @@ export { ErrorCode, YoooclawError } from "./errors.js";
|
|
|
6
6
|
export { renderResult, renderError, resolveFormat, type OutputFormat, } from "./output/format.js";
|
|
7
7
|
export { buildContext, resolveActiveProfile, type CliContext, type GlobalFlags, } from "./context.js";
|
|
8
8
|
export * as paths from "./paths.js";
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/output/format.d.ts
CHANGED
package/dist/paths.d.ts
CHANGED
|
@@ -20,6 +20,11 @@ export interface ProfilePaths {
|
|
|
20
20
|
lightRules: string;
|
|
21
21
|
state: string;
|
|
22
22
|
}
|
|
23
|
+
/** profiles/ 根目录。 */
|
|
24
|
+
export declare function profilesRoot(): string;
|
|
25
|
+
/** 列出已存在的 profile 名(profiles/ 下的目录)。 */
|
|
26
|
+
export declare function listProfileNames(): string[];
|
|
27
|
+
/** 读取 active-profile 文件内容(不存在返回 undefined)。 */
|
|
28
|
+
export declare function readActiveProfile(): string | undefined;
|
|
23
29
|
/** 解析某个 profile 下的全部关键路径。 */
|
|
24
30
|
export declare function profilePaths(profile: string): ProfilePaths;
|
|
25
|
-
//# sourceMappingURL=paths.d.ts.map
|
package/dist/program.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 构建 yoooclaw 的 commander 程序。
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
4
|
+
* 命令树结构(service / subcommand / shortcut / options)来自 command-tree.ts;
|
|
5
|
+
* 实现体由 commands/registry.ts 按 path(如 `config init`)提供,未注册则回落 notImplemented。
|
|
6
6
|
*/
|
|
7
7
|
import { Command } from "commander";
|
|
8
8
|
import { type CliContext } from "./context.js";
|
|
9
9
|
/** 命令处理器签名:拿到上下文 + commander 解析后的参数/选项,返回可序列化结果。 */
|
|
10
10
|
export type CommandHandler = (ctx: CliContext, args: unknown[], opts: Record<string, unknown>) => unknown;
|
|
11
|
+
/** 注册表的 path key:去掉子命令名里的位置参数占位(`show <id>` → `show`)。 */
|
|
12
|
+
export declare function handlerKey(service: string, subName: string): string;
|
|
11
13
|
/** 构建并返回顶层 commander 程序。 */
|
|
12
14
|
export declare function buildProgram(): Command;
|
|
13
|
-
//# sourceMappingURL=program.d.ts.map
|
package/dist/version.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yoooclaw/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "yoooclaw 独立 CLI:本地守护进程接收手机通知、Relay 隧道、灯效规则评估,Agent-Native",
|
|
6
6
|
"bin": {
|
|
@@ -20,10 +20,9 @@
|
|
|
20
20
|
"skills"
|
|
21
21
|
],
|
|
22
22
|
"scripts": {
|
|
23
|
-
"build": "bun
|
|
23
|
+
"build": "bun scripts/build.ts",
|
|
24
24
|
"build:js": "bun scripts/build.ts",
|
|
25
|
-
"
|
|
26
|
-
"dev": "tsc --watch",
|
|
25
|
+
"dev": "tsc --noEmit --watch",
|
|
27
26
|
"test": "vitest run",
|
|
28
27
|
"test:watch": "vitest",
|
|
29
28
|
"typecheck": "tsc --noEmit",
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: yoooclaw-lightrule-create
|
|
3
|
+
description: 用 yoooclaw CLI 创建/管理"通知→灯效"规则。当用户表达"收到/当/如果某类通知或消息时,亮灯/闪灯/变成某种灯效"这类**持久规则**诉求时激活。规则由 daemon 在通知 ingest 后评估命中并触发灯效。需要 daemon 在运行(🟡)。从 stdin 用 --from-file - 提交规则定义最稳妥。
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# yoooclaw 灯效规则创建(从 stdin)
|
|
7
|
+
|
|
8
|
+
灯效规则是**持久**的:通知到达后 daemon 评估是否命中,命中则播放灯效。
|
|
9
|
+
和"立即放一次灯效测试"不同(那是 `yoooclaw light send`)。
|
|
10
|
+
|
|
11
|
+
> 需要 daemon 在跑:先 `yoooclaw daemon status`,未运行则 `yoooclaw daemon start`。
|
|
12
|
+
|
|
13
|
+
## 何时激活
|
|
14
|
+
|
|
15
|
+
- "微信群里有人@我时红灯闪三下"
|
|
16
|
+
- "收到老板的消息就亮黄灯"
|
|
17
|
+
- "飞书有新消息时呼吸绿灯"
|
|
18
|
+
- 任何"当 X 通知 → 播放 Y 灯效"的持久化诉求。
|
|
19
|
+
|
|
20
|
+
不要为这类诉求调用 `light send`(那只用于一次性测试/预览)。
|
|
21
|
+
|
|
22
|
+
## 创建规则(首选 --from-file - 从 stdin)
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
cat <<'JSON' | yoooclaw lightrule create --from-file - --format json
|
|
26
|
+
{
|
|
27
|
+
"name": "wechat-at-me",
|
|
28
|
+
"title": "微信@我",
|
|
29
|
+
"description": "微信群里有人@我时红灯快闪",
|
|
30
|
+
"segments": [
|
|
31
|
+
{ "mode": "strobe", "duration_s": 2, "brightness": 255,
|
|
32
|
+
"color": { "r": 255, "g": 0, "b": 0 }, "interval_ms": 200 }
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
JSON
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
字段说明:
|
|
39
|
+
|
|
40
|
+
- `name`(必填):规则唯一标识。
|
|
41
|
+
- `description`(必填):自然语言意图,daemon 的 webhook 评估器据此判断通知是否命中。
|
|
42
|
+
- `segments`(必填):命中后播放的灯效,遵循 light protocol(mode/duration_s/brightness/color/interval_ms 等)。
|
|
43
|
+
- 也可用 flag 形式:`--name --intent <描述> --light-action <segments JSON> --match-rules <硬过滤 JSON>`。
|
|
44
|
+
|
|
45
|
+
## 管理
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
yoooclaw lightrule list --format json # 列出全部规则及 enabled 状态
|
|
49
|
+
yoooclaw lightrule show <name> --format json # 单条详情
|
|
50
|
+
yoooclaw lightrule disable <name> # 停用(不删除)
|
|
51
|
+
yoooclaw lightrule enable <name> # 启用
|
|
52
|
+
yoooclaw lightrule +off # 停用所有
|
|
53
|
+
yoooclaw lightrule +on # 启用所有
|
|
54
|
+
yoooclaw lightrule delete <name> --yes # 删除
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## 错误处理
|
|
58
|
+
|
|
59
|
+
- `YOOOCLAW_DAEMON_NOT_RUNNING`:先 `yoooclaw daemon start` 再重试。
|
|
60
|
+
- 创建失败常见为 `VALIDATION_FAILED`(segments 不合法)或 `INVALID_PARAMS`(缺 name/description):
|
|
61
|
+
读 `error.message`(含具体校验项)后修正 JSON 重新提交。
|
|
62
|
+
- 规则名重复:换 `name` 或先 `delete`。
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: yoooclaw-notification-query
|
|
3
|
+
description: 用 yoooclaw CLI 直接、流式地查询手机通知原始数据。当用户说"看看最近的通知""谁找过我""总结今天的消息""某 App 有什么通知""昨天有什么消息"或任何通知查询/筛选/汇总诉求时,激活本 Skill,基于当前磁盘最新数据查询,不要依赖先前轮次或记忆。yoooclaw 是 openclaw 手机通知插件的独立 CLI 形态,数据在 ~/.yoooclaw 下,纯读磁盘、不需要 daemon 在跑。
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# yoooclaw 通知查询(Agent-Native,流式)
|
|
7
|
+
|
|
8
|
+
`yoooclaw` CLI 自身就是工具表:所有命令都支持 `--format json|pretty|table|ndjson`。
|
|
9
|
+
**Agent 消费首选 `--format ndjson`**——每条通知一行 JSON、无包裹数组,便于流式逐条处理大批量结果。
|
|
10
|
+
|
|
11
|
+
> 命令名 `yoooclaw`,短别名 `yc` 完全等价。下文用 `yoooclaw`。
|
|
12
|
+
|
|
13
|
+
## 何时激活
|
|
14
|
+
|
|
15
|
+
- "最近收到什么消息 / 谁找过我 / 某某给我发过什么"
|
|
16
|
+
- "总结今天 / 昨天 / 最近一小时的通知"
|
|
17
|
+
- "微信 / 飞书 有什么通知"
|
|
18
|
+
- 任何按 时间 / 应用 / 发送人 / 关键词 筛选通知的诉求
|
|
19
|
+
|
|
20
|
+
## 先确认存储路径(不要假设目录)
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
yoooclaw notification storage-path --format json
|
|
24
|
+
# → {"ok":true,"path":"/abs/path/to/profiles/<profile>/notifications"}
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## 查询(按需选参数)
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# 今日全部(快捷命令,等价 search --from 今日00:00 --to 今日23:59)
|
|
31
|
+
yoooclaw notification +today --format ndjson
|
|
32
|
+
|
|
33
|
+
# 最近一小时
|
|
34
|
+
yoooclaw notification +recent --format ndjson
|
|
35
|
+
|
|
36
|
+
# 精确筛选:时间范围 + 应用 + 关键词
|
|
37
|
+
yoooclaw notification search \
|
|
38
|
+
--from 2026-05-01T00:00:00+08:00 --to 2026-05-21T23:59:59+08:00 \
|
|
39
|
+
--app 微信 --keyword 开会 --limit 200 --format ndjson
|
|
40
|
+
|
|
41
|
+
# 聚合摘要(topApps / topSenders / 最近样例),适合"帮我总结"
|
|
42
|
+
yoooclaw notification summary --top 10 --sample 30 --format json
|
|
43
|
+
|
|
44
|
+
# 维度统计(date|app|sender|hour|all)
|
|
45
|
+
yoooclaw notification stats --from 2026-05-14 --to 2026-05-21 --dim all --format json
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
- `--app` 支持中英文别名:`微信/wechat`、`飞书/feishu/lark`、`钉钉/dingtalk`、`企业微信/wecom` 等。
|
|
49
|
+
- `--from/--to` 用 ISO 8601 含时区(`2026-05-01T09:00:00+08:00`)。`stats` 的 `--from/--to` 用 `YYYY-MM-DD`。
|
|
50
|
+
|
|
51
|
+
## 流式处理 ndjson 的样板
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
yoooclaw notification search --app 微信 --format ndjson | while IFS= read -r line; do
|
|
55
|
+
# 每行是一条 StoredNotification:{appName,appDisplayName,title,content,timestamp,senderName,conversationType,...}
|
|
56
|
+
echo "$line" | jq -r '"\(.timestamp) \(.appDisplayName // .appName) | \(.senderName // .title): \(.content)"'
|
|
57
|
+
done
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## 错误处理
|
|
61
|
+
|
|
62
|
+
所有命令失败都输出统一 schema 并以非零退出码结束:
|
|
63
|
+
|
|
64
|
+
```json
|
|
65
|
+
{ "ok": false, "error": { "code": "YOOOCLAW_...", "message": "...", "hint": "..." } }
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
- `YOOOCLAW_INVALID_ARGUMENT`:时间格式 / `--conversation-type`(只能 group|private)/ `--limit` 非正整数 → 按 `message` 修正参数。
|
|
69
|
+
- 通知目录尚不存在或当天无数据:`search` 返回 `[]`、`+today` 返回 `[]`,**不是错误**——直接据此回复"暂无通知"。
|
|
70
|
+
- 多 profile:加 `--profile <name>` 查指定 profile 的数据。
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: yoooclaw-tunnel-debug
|
|
3
|
+
description: 用 yoooclaw CLI 排查手机端推送链路是否通。当用户说"手机推送收不到""通知没同步过来""检查一下隧道/连接""daemon 还活着吗""手机连不上"时激活。组合使用 daemon status / tunnel status / tunnel +test / gateway test 自检整条接收链路。多数命令需要 daemon 在运行(🟡)。
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# yoooclaw 隧道 / 接收链路排查
|
|
7
|
+
|
|
8
|
+
独立 daemon 当前以**直连 HTTP** 接收手机推送(`POST /notifications`),
|
|
9
|
+
配合用户自建 `cloudflared` / `tailscale serve` 反代到 daemon 的本地地址即可让手机端推达。
|
|
10
|
+
|
|
11
|
+
## 何时激活
|
|
12
|
+
|
|
13
|
+
- "手机推送收不到 / 通知没同步过来"
|
|
14
|
+
- "检查隧道 / 连接 / daemon 状态"
|
|
15
|
+
- "手机连不上 / 一直没新消息"
|
|
16
|
+
|
|
17
|
+
## 排查顺序
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
# 1) daemon 是否在跑、监听哪个地址端口
|
|
21
|
+
yoooclaw daemon status --format json
|
|
22
|
+
# 未运行 → {"ok":false,"error":{"code":"YOOOCLAW_DAEMON_NOT_RUNNING",...}} → yoooclaw daemon start
|
|
23
|
+
|
|
24
|
+
# 2) 隧道状态(relay 模式 / 是否连接 / relay URL)
|
|
25
|
+
yoooclaw tunnel status --format json
|
|
26
|
+
# → {"ok":true,"mode":"standalone-http","connected":false,"relayUrl":"...","note":"..."}
|
|
27
|
+
|
|
28
|
+
# 3) 端到端回环自检:daemon 通过本地 HTTP 给自己发一条 echo 通知,验证 ingest+鉴权链路
|
|
29
|
+
yoooclaw tunnel +test --format json
|
|
30
|
+
# → {"ok":true,"loopback":{"ok":true,"status":200}} 表示本机接收链路 OK
|
|
31
|
+
|
|
32
|
+
# 4) 模拟手机端调 /notifications,验证鉴权与连通
|
|
33
|
+
yoooclaw gateway test --format json
|
|
34
|
+
# → {"ok":true,"status":200,"response":{"ok":true,"ingested":1,...}}
|
|
35
|
+
# 要强制走 relay 旁路:yoooclaw gateway test --via-relay
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## 判读
|
|
39
|
+
|
|
40
|
+
- `daemon status` 报 `YOOOCLAW_DAEMON_NOT_RUNNING` → daemon 没起,先 `yoooclaw daemon start`。
|
|
41
|
+
- `tunnel +test` 的 `loopback.ok=true` 且 `gateway test` `ok=true`:**本机接收链路正常**。
|
|
42
|
+
手机仍收不到 → 问题在网络可达性:检查防火墙、反代(cloudflared/tailscale)、手机端填的地址是否指向 daemon 的对外地址。
|
|
43
|
+
- `gateway test` 返回 `401 / YOOOCLAW_UNAUTHORIZED`:token 不一致。
|
|
44
|
+
用 `yoooclaw auth status` 看 token 来源,必要时 `yoooclaw auth token-rotate` 后重启 daemon、并更新手机端 token。
|
|
45
|
+
- 想看 daemon 自身日志定位 ingest 失败:`yoooclaw daemon logs --lines 200`(或 `yoooclaw log +errors`)。
|
|
46
|
+
|
|
47
|
+
## 鉴权前置检查(不调 daemon)
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
yoooclaw auth status --format json # api-key / gateway token 是否存在、来源、daemon 是否可达
|
|
51
|
+
yoooclaw auth check --format json # 端到端:用本地 token 调 daemon /daemon/status 验证一致性
|
|
52
|
+
```
|
package/dist/bin.d.ts
DELETED
package/dist/bin.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bin.d.ts","sourceRoot":"","sources":["../src/bin.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"command-tree.d.ts","sourceRoot":"","sources":["../src/command-tree.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,MAAM,WAAW,cAAc;IAC7B,sDAAsD;IACtD,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,YAAY;IAC3B,gCAAgC;IAChC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,8CAA8C;IAC9C,WAAW,CAAC,EAAE,cAAc,EAAE,CAAC;IAC/B,oDAAoD;IACpD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,YAAY,EAAE,CAAC;CAC5B;AAED,eAAO,MAAM,YAAY,EAAE,WAAW,EA0KrC,CAAC"}
|
package/dist/context.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../src/context.ts"],"names":[],"mappings":"AAIA,OAAO,EAIL,KAAK,YAAY,EAClB,MAAM,YAAY,CAAC;AACpB,OAAO,EAAiB,KAAK,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEtE,MAAM,WAAW,WAAW;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB;AAED,MAAM,WAAW,UAAU;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,YAAY,CAAC;IACpB,MAAM,EAAE,YAAY,CAAC;IACrB,KAAK,EAAE,OAAO,CAAC;IACf,KAAK,EAAE,OAAO,CAAC;CAChB;AAED,uFAAuF;AACvF,wBAAgB,oBAAoB,CAAC,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAUjE;AAED,qCAAqC;AACrC,wBAAgB,YAAY,CAAC,KAAK,EAAE,WAAW,GAAG,UAAU,CAU3D"}
|
package/dist/errors.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"errors.d.ts","sourceRoot":"","sources":["../src/errors.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,SAAS;IACpB,iBAAiB;;IAEjB,aAAa;;IAEb,uBAAuB;;IAEvB,iBAAiB;;IAEjB,wBAAwB;;IAExB,uBAAuB;;IAEvB,cAAc;;IAEd,kBAAkB;;IAElB,eAAe;;IAEf,YAAY;;CAEJ,CAAC;AAEX,MAAM,MAAM,cAAc,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAExE,MAAM,WAAW,oBAAoB;IACnC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED;;GAEG;AACH,qBAAa,aAAc,SAAQ,KAAK;IACtC,QAAQ,CAAC,IAAI,EAAE,cAAc,CAAC;IAC9B,QAAQ,CAAC,OAAO,EAAE,oBAAoB,CAAC;IACvC,iBAAiB;IACjB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;gBAGxB,IAAI,EAAE,cAAc,EACpB,OAAO,EAAE,MAAM,EACf,OAAO,GAAE,oBAAyB,EAClC,QAAQ,SAAI;IASd,cAAc,IAAI;QAChB,IAAI,EAAE,cAAc,CAAC;QACrB,OAAO,EAAE,MAAM,CAAC;KACjB,GAAG,oBAAoB;CAGzB;AAED,wBAAgB,cAAc,CAAC,OAAO,EAAE,MAAM,GAAG,aAAa,CAM7D"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAQA,wBAAsB,GAAG,CAAC,IAAI,GAAE,MAAM,EAAiB,GAAG,OAAO,CAAC,IAAI,CAAC,CAGtE;AAED,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EACL,YAAY,EACZ,WAAW,EACX,aAAa,EACb,KAAK,YAAY,GAClB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,YAAY,EACZ,oBAAoB,EACpB,KAAK,UAAU,EACf,KAAK,WAAW,GACjB,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,KAAK,MAAM,YAAY,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"format.d.ts","sourceRoot":"","sources":["../../src/output/format.ts"],"names":[],"mappings":"AAaA,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,CAAC;AAClE,eAAO,MAAM,cAAc,EAAE,YAAY,EAKxC,CAAC;AAEF,6CAA6C;AAC7C,wBAAgB,aAAa,CAC3B,SAAS,EAAE,MAAM,GAAG,SAAS,EAC7B,KAAK,UAAgC,GACpC,YAAY,CAYd;AAED,UAAU,aAAa;IACrB,MAAM,EAAE,YAAY,CAAC;IACrB,mCAAmC;IACnC,MAAM,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC;CAChC;AAMD,gDAAgD;AAChD,wBAAgB,YAAY,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,aAAa,GAAG,IAAI,CAkBrE;AAED;;;;GAIG;AACH,wBAAgB,WAAW,CAAC,GAAG,EAAE,OAAO,EAAE,IAAI,EAAE,aAAa,GAAG,IAAI,CAenE"}
|
package/dist/paths.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"paths.d.ts","sourceRoot":"","sources":["../src/paths.ts"],"names":[],"mappings":"AAeA,eAAO,MAAM,eAAe,YAAY,CAAC;AAEzC,mDAAmD;AACnD,wBAAgB,OAAO,IAAI,MAAM,CAEhC;AAED,4CAA4C;AAC5C,wBAAgB,qBAAqB,IAAI,MAAM,CAE9C;AAED,iCAAiC;AACjC,wBAAgB,iBAAiB,IAAI,MAAM,CAE1C;AAED,sBAAsB;AACtB,wBAAgB,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAElD;AAED,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,6BAA6B;AAC7B,wBAAgB,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,YAAY,CAe1D"}
|
package/dist/program.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"program.d.ts","sourceRoot":"","sources":["../src/program.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,OAAO,EAAgB,KAAK,UAAU,EAAoB,MAAM,cAAc,CAAC;AAK/E,oDAAoD;AACpD,MAAM,MAAM,cAAc,GAAG,CAC3B,GAAG,EAAE,UAAU,EACf,IAAI,EAAE,OAAO,EAAE,EACf,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC1B,OAAO,CAAC;AA6Db,4BAA4B;AAC5B,wBAAgB,YAAY,IAAI,OAAO,CAyBtC"}
|
package/dist/version.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AA6BA,eAAO,MAAM,WAAW,QACiD,CAAC"}
|