@deepseek-ai/dsh-typert-loader 0.0.1-rc.2 → 0.0.1-rc.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.i18n.yaml +1 -1
- package/README.zh.md +2 -2
- package/package.json +5 -5
package/README.i18n.yaml
CHANGED
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
# after editing either side, bring the other along and re-record with:
|
|
4
4
|
# pnpm run verify-translation-pairing --write packages/typert/loader/README.md
|
|
5
5
|
README.md: ab9293de1630fdbe8c560bb9e6d00c272cc34161
|
|
6
|
-
README.zh.md:
|
|
6
|
+
README.zh.md: 4e962c05b73982f03accab938cf3282dfe333dbc
|
package/README.zh.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
`packages` 用于列出需要为嵌套在另一 Loader 配置项下的插件额外注册的包产物。Cordis fiber 不会保留这些嵌套插件的 npm 包说明符,因此这里通过显式配置划定边界;配置中列出的每个包都必须能从配置树解析,并导出 `./typert`。
|
|
10
10
|
|
|
11
|
-
未导出该子路径的包会被跳过。包解析结果和已导入的 manifest
|
|
11
|
+
未导出该子路径的包会被跳过。包解析结果和已导入的 manifest 会在整个进程生命周期内缓存,因此新增该导出后必须重启进程。插件激活时,如果已挂载 Loader 配置项对应的产物格式错误,激活会失败;之后才发生的失败只会记录到日志,不会阻止无关包完成注册。
|
|
12
12
|
|
|
13
13
|
## 模型体验
|
|
14
14
|
|
|
@@ -21,4 +21,4 @@
|
|
|
21
21
|
## 已知限制与暂缓事项
|
|
22
22
|
|
|
23
23
|
- 发现机制只会导入宿主侧产物;若要为客户端运行时添加等价的发现机制,需要先有独立的组合所有者。
|
|
24
|
-
- Loader 配置项会自动发现。嵌套插件或非 Loader 插件需要显式加入 `packages
|
|
24
|
+
- Loader 配置项会自动发现。嵌套插件或非 Loader 插件需要显式加入 `packages`,或由其所有者直接负责调用 `ctx.typert.register()`。
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-typert-loader",
|
|
3
3
|
"description": "Loader integration for generated Typert package contributions",
|
|
4
|
-
"version": "0.0.1-rc.
|
|
4
|
+
"version": "0.0.1-rc.3",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "restricted"
|
|
7
7
|
},
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"license": "BSD-3-Clause",
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"@deepseek-ai/cordis-plugin-loader": "^1.0.1-rc.1",
|
|
36
|
-
"@deepseek-ai/dsh-
|
|
37
|
-
"@deepseek-ai/dsh-
|
|
36
|
+
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.3",
|
|
37
|
+
"@deepseek-ai/dsh-typert-registry": "^0.0.1-rc.3",
|
|
38
38
|
"@deepseek-ai/cordis": "^4.0.1-rc.1"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"zod": "^4.4.3",
|
|
45
45
|
"@deepseek-ai/cordis-plugin-loader": "^1.0.1-rc.1",
|
|
46
|
-
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.
|
|
47
|
-
"@deepseek-ai/dsh-typert-registry": "^0.0.1-rc.
|
|
46
|
+
"@deepseek-ai/dsh-invariants": "^0.0.1-rc.3",
|
|
47
|
+
"@deepseek-ai/dsh-typert-registry": "^0.0.1-rc.3",
|
|
48
48
|
"@deepseek-ai/cordis": "^4.0.1-rc.1"
|
|
49
49
|
}
|
|
50
50
|
}
|