Compare commits
No commits in common. "85bb755cad89cab36634d921fbe0678e250baee7" and "3bcb6d9d3a218e33728d78ca05f6b7461c85d7b5" have entirely different histories.
85bb755cad
...
3bcb6d9d3a
@ -1,13 +1,5 @@
|
||||
# CHANGELOG - shell
|
||||
|
||||
## v1.5.3 (2026-06-21)
|
||||
- **重构与错误堆栈支持**:
|
||||
- 重构 `js_export.go`,将 `Run` 和 `RunCommand` 注册为具名函数,并动态使用 `jsmod.MakeError` 包裹错误。
|
||||
- 升级 `jsmod` 依赖至 v1.5.3,`cast` 依赖至 v1.5.3。
|
||||
|
||||
## v1.5.2 (2026-06-11)
|
||||
- **版本对齐**: 基础设施全局对齐 v1.5.2。
|
||||
|
||||
## v1.5.1 (2026-06-08)
|
||||
- **JS 对齐**: 将所有注册到 `jsmod` 的导出方法名统一为 PascalCase(如 `Run`, `RunCommand`),以消除 JS 与 Go 调用体感上的摩擦。
|
||||
|
||||
|
||||
4
go.mod
4
go.mod
@ -2,6 +2,6 @@ module apigo.cc/go/shell
|
||||
|
||||
go 1.25.0
|
||||
|
||||
require apigo.cc/go/cast v1.5.3
|
||||
require apigo.cc/go/cast v1.5.0
|
||||
|
||||
require apigo.cc/go/jsmod v1.5.3
|
||||
require apigo.cc/go/jsmod v1.5.0
|
||||
|
||||
20
js_export.go
20
js_export.go
@ -4,23 +4,7 @@ import "apigo.cc/go/jsmod"
|
||||
|
||||
func init() {
|
||||
jsmod.Register("shell", map[string]any{
|
||||
"Run": jsRun,
|
||||
"RunCommand": jsRunCommand,
|
||||
"Run": Run,
|
||||
"RunCommand": RunCommand,
|
||||
}, "Run", "RunCommand")
|
||||
}
|
||||
|
||||
func jsRun(name string, args []string, opts *Options) (*CommandResult, error) {
|
||||
res, err := Run(name, args, opts)
|
||||
if err != nil {
|
||||
return nil, jsmod.MakeError(err)
|
||||
}
|
||||
return res, nil
|
||||
}
|
||||
|
||||
func jsRunCommand(command string, opts *Options) (*CommandResult, error) {
|
||||
res, err := RunCommand(command, opts)
|
||||
if err != nil {
|
||||
return nil, jsmod.MakeError(err)
|
||||
}
|
||||
return res, nil
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user