@hile/micro 1.0.6 → 1.0.7
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/SKILL.md +1 -1
- package/package.json +2 -2
package/SKILL.md
CHANGED
|
@@ -439,7 +439,7 @@ hile registry configs del <namespace> [key] # 删除(带确认,-y
|
|
|
439
439
|
```
|
|
440
440
|
|
|
441
441
|
- CLI 直接读写 YAML 文件,运行中的 Registry 通过 `fs.watch` 自动感知
|
|
442
|
-
- 值类型自动推断:`true/false` → boolean, `null` → null, 纯数字 → number, 其余 → string
|
|
442
|
+
- 值类型自动推断:`true/false` → boolean, `null` → null, 纯数字 → number, 以 `{`/`[` 开头 → JSON 解析为 object/array, 其余 → string
|
|
443
443
|
- 实现代码在 `packages/cli/src/configs.ts`,工具函数在 `packages/micro/src/registry.ts`
|
|
444
444
|
|
|
445
445
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hile/micro",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"ws": "^8.19.0",
|
|
30
30
|
"yaml": "^2.9.0"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "fdf2a5159fef97ca1f8258d6d11c62a061fd9ef4"
|
|
33
33
|
}
|