Move all Wails-dependent packages to core-gui repo: - pkg/core, pkg/display, pkg/docs, pkg/help, pkg/ide - pkg/runtime, pkg/webview, pkg/workspace, pkg/ws - pkg/plugin, pkg/config, pkg/i18n, pkg/module - pkg/crypt, pkg/io, pkg/process Add pkg/errors with simple E() helper for error wrapping. Update go.work to only include CLI-relevant packages. CLI now builds with CGO_ENABLED=0 - no linker warnings. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
512 B
Modula-2
18 lines
512 B
Modula-2
module github.com/host-uk/core/pkg/build
|
|
|
|
go 1.25
|
|
|
|
require (
|
|
github.com/stretchr/testify v1.11.1
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/rogpeppe/go-internal v1.14.1 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
)
|
|
|
|
replace github.com/host-uk/core/pkg/errors => ../errors
|