Moves shared utilities (styles, utils) from cmd/shared to pkg/cli. Adds CLI runtime with global singleton pattern: - cli.Init() initialises the runtime - cli.App() returns the global instance - OutputService for styled terminal printing - SignalService for graceful shutdown handling All cmd/ packages now import pkg/cli instead of cmd/shared. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
851 B
Go
34 lines
851 B
Go
// Package pkg provides package management commands for core-* repos.
|
|
package pkg
|
|
|
|
import (
|
|
"github.com/host-uk/core/pkg/cli"
|
|
"github.com/host-uk/core/pkg/i18n"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Style and utility aliases
|
|
var (
|
|
repoNameStyle = cli.RepoNameStyle
|
|
successStyle = cli.SuccessStyle
|
|
errorStyle = cli.ErrorStyle
|
|
dimStyle = cli.DimStyle
|
|
ghAuthenticated = cli.GhAuthenticated
|
|
gitClone = cli.GitClone
|
|
)
|
|
|
|
// AddPkgCommands adds the 'pkg' command and subcommands for package management.
|
|
func AddPkgCommands(root *cobra.Command) {
|
|
pkgCmd := &cobra.Command{
|
|
Use: "pkg",
|
|
Short: i18n.T("cmd.pkg.short"),
|
|
Long: i18n.T("cmd.pkg.long"),
|
|
}
|
|
|
|
root.AddCommand(pkgCmd)
|
|
addPkgSearchCommand(pkgCmd)
|
|
addPkgInstallCommand(pkgCmd)
|
|
addPkgListCommand(pkgCmd)
|
|
addPkgUpdateCommand(pkgCmd)
|
|
addPkgOutdatedCommand(pkgCmd)
|
|
}
|