@legna-lnc/legnacode 1.1.6 → 1.1.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/CHANGELOG.md +9 -0
- package/README.md +1 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to LegnaCode CLI will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.1.6] - 2026-04-03
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **Windows external module 报错** — 从编译 external 列表移除 `@anthropic-ai/sandbox-runtime`、`@anthropic-ai/mcpb`、`@anthropic-ai/claude-agent-sdk`、`audio-capture-napi`、`color-diff-napi`、`modifiers-napi`,让 stubs 代码直接打包进二进制,Windows 不再报 `Cannot find module`
|
|
10
|
+
- **bin wrapper 多路径查找** — `npm/bin/legna.cjs` 增加全局 node_modules 扁平路径和嵌套路径 fallback,提升跨平台 npm 全局安装兼容性
|
|
11
|
+
- **版本号自动化** — 新增 `scripts/bump.ts` 一键同步 package.json、bunfig.toml、webui/package.json、optionalDependencies 版本号
|
|
12
|
+
- **发版流程自动化** — 重写 `scripts/publish.ts`,一键完成 bump → build webui → compile all → publish npm
|
|
13
|
+
|
|
5
14
|
## [1.1.5] - 2026-04-03
|
|
6
15
|
|
|
7
16
|
### New Features
|
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@ LegnaCode 是一个基于 Anthropic Claude 的智能终端编程助手,让你
|
|
|
10
10
|
|
|
11
11
|
| 版本 | 日期 | 摘要 |
|
|
12
12
|
|------|------|------|
|
|
13
|
+
| [1.1.6](./CHANGELOG.md#116---2026-04-03) | 2026-04-03 | 修复 Windows external module 报错、全平台发版流程自动化、版本号统一 |
|
|
13
14
|
| [1.1.5](./CHANGELOG.md#115---2026-04-03) | 2026-04-03 | WebUI 管理面板 (`legna admin`)、双目录管理、配置迁移、npm 全平台发布 |
|
|
14
15
|
| [1.0.9](./CHANGELOG.md#109---2026-04-03) | 2026-04-03 | i18n 多语言补全、内置精美状态栏、配置自动迁移 |
|
|
15
16
|
| [1.0.8](./CHANGELOG.md#108---2026-04-02) | 2026-04-02 | MONITOR_TOOL、WORKFLOW_SCRIPTS、HISTORY_SNIP,3 个重量级子系统,累计 47 flags |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@legna-lnc/legnacode",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "LegnaCode — legna.lnc's official CLI for coding assistance",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -141,10 +141,10 @@
|
|
|
141
141
|
"bun": ">=1.2.0"
|
|
142
142
|
},
|
|
143
143
|
"optionalDependencies": {
|
|
144
|
-
"@legna-lnc/legnacode-darwin-arm64": "1.1.
|
|
145
|
-
"@legna-lnc/legnacode-darwin-x64": "1.1.
|
|
146
|
-
"@legna-lnc/legnacode-linux-x64": "1.1.
|
|
147
|
-
"@legna-lnc/legnacode-linux-arm64": "1.1.
|
|
148
|
-
"@legna-lnc/legnacode-win32-x64": "1.1.
|
|
144
|
+
"@legna-lnc/legnacode-darwin-arm64": "1.1.7",
|
|
145
|
+
"@legna-lnc/legnacode-darwin-x64": "1.1.7",
|
|
146
|
+
"@legna-lnc/legnacode-linux-x64": "1.1.7",
|
|
147
|
+
"@legna-lnc/legnacode-linux-arm64": "1.1.7",
|
|
148
|
+
"@legna-lnc/legnacode-win32-x64": "1.1.7"
|
|
149
149
|
}
|
|
150
150
|
}
|