Consolidate CLI code into pkg/cli: - Add pkg/cli/app.go with Main() entry point and completionCmd - Move build variants to internal/variants/ (avoids import cycle) - Move i18n-validate tool to internal/tools/ - Update main.go to call cli.Main() - Remove cmd/ directory entirely Structure: - main.go imports internal/variants (triggers command registration) - main.go calls cli.Main() which runs the CLI - Build variants: go build, go build -tags ci/php/minimal Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
630 B
Go
23 lines
630 B
Go
//go:build ci
|
|
|
|
// ci.go imports packages for the minimal CI/release binary.
|
|
//
|
|
// Build with: go build -tags ci
|
|
//
|
|
// This variant includes only commands needed for CI pipelines:
|
|
// - build: Cross-platform compilation
|
|
// - ci: Release publishing
|
|
// - sdk: API compatibility checks
|
|
// - doctor: Environment verification
|
|
//
|
|
// Use this build to reduce binary size and attack surface in production.
|
|
|
|
package variants
|
|
|
|
import (
|
|
// Commands via self-registration
|
|
_ "github.com/host-uk/core/pkg/build/buildcmd"
|
|
_ "github.com/host-uk/core/pkg/ci"
|
|
_ "github.com/host-uk/core/pkg/doctor"
|
|
_ "github.com/host-uk/core/pkg/sdk"
|
|
)
|