Switch remote deploy to vendored source builds
Move remote deployment to a vendored source bundle built on the target host via Docker so redeploys no longer require local cross-compilation or host Go installation. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
25
vendor/github.com/leaanthony/go-ansi-parser/options.go
generated
vendored
Normal file
25
vendor/github.com/leaanthony/go-ansi-parser/options.go
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
package ansi
|
||||
|
||||
// ParseOption specifies parse option.
|
||||
type ParseOption struct {
|
||||
ignoreUnexpectedCode bool
|
||||
ansiForegroundColor string
|
||||
ansiBackgroundColor string
|
||||
}
|
||||
|
||||
// WithIgnoreInvalidCodes disables returning an error on invalid ANSI code.
|
||||
func WithIgnoreInvalidCodes() ParseOption {
|
||||
return ParseOption{ignoreUnexpectedCode: true}
|
||||
}
|
||||
|
||||
// WithDefaultForegroundColor specifies default foreground code (ANSI 39).
|
||||
// See ColourMap variable and foreground color codes 30-37.
|
||||
func WithDefaultForegroundColor(ansiColor string) ParseOption {
|
||||
return ParseOption{ansiForegroundColor: ansiColor}
|
||||
}
|
||||
|
||||
// WithDefaultBackgroundColor specifies default foreground code (ANSI 49).
|
||||
// See ColourMap variable and foreground color codes 30-37.
|
||||
func WithDefaultBackgroundColor(ansiColor string) ParseOption {
|
||||
return ParseOption{ansiBackgroundColor: ansiColor}
|
||||
}
|
||||
Reference in New Issue
Block a user