Documentation
¶
Overview ¶
19 types
Index ¶
- func AddContentToEachLineInFile(filePath string, predicate func(string) string) error
- func AddContentToFile(filePath, valueToAdd string, positon string) error
- func ArrayContainsAny(contentSlice, targetSlice []string) bool
- func CDToAngularApp()
- func CDToFirebaseApp()
- func CDToFlaskApp()
- func CDToFlutterApp()
- func CDToLocation(location string, opts ...interface{})
- func CDToShopifyApp()
- func CDToTestNGApp()
- func CDToWorkspaceRoot()
- func CDToWxtApp()
- func CleanJSON(data []byte) ([]byte, error)
- func ClearScreen()
- func CompileGlobs(patterns []string) []glob.Glob
- func ContainsAny(s string, substrs []string) bool
- func ConvertPathToOSFormat(inputPath string) string
- func ConvertToBoolArray(input []interface{}) []bool
- func ConvertToByteArray(input []interface{}) []byte
- func ConvertToComplex128Array(input []interface{}) []complex128
- func ConvertToComplex64Array(input []interface{}) []complex64
- func ConvertToFloat32Array(input []interface{}) []float32
- func ConvertToFloat64Array(input []interface{}) []float64
- func ConvertToInt16Array(input []interface{}) []int16
- func ConvertToInt32Array(input []interface{}) []int32
- func ConvertToInt64Array(input []interface{}) []int64
- func ConvertToInt8Array(input []interface{}) []int8
- func ConvertToIntArray(input []interface{}) []int
- func ConvertToInterfaceArray[T any](input []T) []interface{}
- func ConvertToRuneArray(input []interface{}) []rune
- func ConvertToStringArray(input []interface{}) []string
- func ConvertToStringBoolMap(originalMap map[string]interface{}) map[string]bool
- func ConvertToStringComplex128Map(originalMap map[string]interface{}) map[string]complex128
- func ConvertToStringComplex64Map(originalMap map[string]interface{}) map[string]complex64
- func ConvertToStringErrorMap(originalMap map[string]interface{}) map[string]error
- func ConvertToStringFloat32Map(originalMap map[string]interface{}) map[string]float32
- func ConvertToStringFloat64Map(originalMap map[string]interface{}) map[string]float64
- func ConvertToStringInt16Map(originalMap map[string]interface{}) map[string]int16
- func ConvertToStringInt32Map(originalMap map[string]interface{}) map[string]int32
- func ConvertToStringInt64Map(originalMap map[string]interface{}) map[string]int64
- func ConvertToStringInt8Map(originalMap map[string]interface{}) map[string]int8
- func ConvertToStringIntMap(originalMap map[string]interface{}) map[string]int
- func ConvertToStringInterfaceMap(originalMap map[string]interface{}) map[string]string
- func ConvertToStringStringMap(originalMap map[string]interface{}) map[string]string
- func ConvertToStringUint16Map(originalMap map[string]interface{}) map[string]uint16
- func ConvertToStringUint32Map(originalMap map[string]interface{}) map[string]uint32
- func ConvertToStringUint64Map(originalMap map[string]interface{}) map[string]uint64
- func ConvertToStringUint8Map(originalMap map[string]interface{}) map[string]uint8
- func ConvertToUint16Array(input []interface{}) []uint16
- func ConvertToUint32Array(input []interface{}) []uint32
- func ConvertToUint64Array(input []interface{}) []uint64
- func ConvertToUint8Array(input []interface{}) []uint8
- func ConvertToUintArray(input []interface{}) []uint
- func CopyDir(src, dest string) error
- func CopyFile(src, dest string) error
- func CopySelectFilesToDestination(c CopySelectFilesToDestinationStruct) error
- func DecreaseChannelBatchFn(i int, batchSize int, batchDone chan bool, targetArray []string)
- func DownloadFile(url, localPath string) error
- func EnsureDirAndCreateFile(filePath string) (*os.File, error)
- func ExtractArchive(archiveURL string, removeArchiveFile bool) string
- func ExtractBranchNames(input string) []string
- func FilterArray[T any](arr []T, condition func(interface{}, int) bool) []interface{}
- func FilterFilesByExtension(files []string, extensions []string, include bool) []string
- func FilterJSONByPredicate(inputJSON []byte, predicate func(key string, value interface{}) bool) ([]byte, error)
- func FilterMap[T any](originalMap map[string]T, predicate func(string, T) bool) map[string]interface{}
- func FindElement[T any](arr []T, predicate func(T) bool) (int, T, error)
- func FindExecutable(executablePrefix, searchDir string) string
- func FindRelativeToTarget(args []string, target string, offset int) (string, bool)
- func FolderExists(path string) bool
- func GetCurrentBranch() (string, error)
- func GetCurrentPath() string
- func GetDownloadURLForCurrentOS(release *GitHubRelease) (string, error)
- func GetFilePathFromPackage(fullPath string) (string, error)
- func GetInputFromStdin(obj GetInputFromStdinStruct) string
- func GetItemsInFolder(folderPath string) ([]string, error)
- func GetItemsInFolderRecursive(folderPath string, recursive bool) ([]string, error)
- func GetParamValue(parameterName string, parameterValue interface{}) interface{}
- func GetSourceFilePath() (string, error)
- func GetType(value interface{}) string
- func GitSparseClone(repoURL string, localDir string, subdirectories ...string) error
- func HasPrefixInArray(str string, prefixes []string, removeSuffix bool) string
- func HasSuffixInArray(str string, suffixes []string, removeSuffix bool) string
- func IntToStr(val int) string
- func IsFileOrFolder(path string) (string, error)
- func IsRunningInDocker() bool
- func JoinAndConvertPathToOSFormat(inputPathParts ...string) string
- func JoinArgs(args []string) string
- func KillPorts(options KillPortsOptions)
- func LogErrorWithTraceBack(message string, err error)
- func MatchAnyGlob(globs []glob.Glob, path string) bool
- func MergeDirectories(sourceDir, targetDir string, overwrite bool) error
- func OverwriteFile(filePath string, content string) error
- func OverwriteMap[T any](targetMap, newMap map[string]T)
- func ParseJSONFromString[T any](jsonString string, target *T) error
- func ProcessFilesMatchingPattern(directory, pattern string, predicateFn func(string)) error
- func ProcessFoldersMatchingPattern(directory, pattern string, predicateFn func(string)) error
- func ReadFile(filePath string) (string, error)
- func ReadFileFromPackage(fullPath string) (string, error)
- func ReadLines(filePath string) (map[string]bool, error)
- func RemoveContentFromFile(filePath string, contentToRemove []string) error
- func RemoveDrivePath(folderPath string) string
- func RemoveDuplicates[T constraints.Ordered](items []T) []T
- func RemoveElementsNotInSource[T comparable](source, toRemove []T) []T
- func RemovePathPrefix(path string, prefixArray []string) string
- func Reverse(targetArray []string) []string
- func RunCommand(command string, args []string)
- func RunCommandAndGetOutput(command string, args []string) stringdeprecated
- func RunCommandInSpecifcDirectoryAndGetOutput(command string, args []string, targetDir string) stringdeprecated
- func RunCommandInSpecificDirectory(command string, args []string, targetDir string)deprecated
- func RunCommandWithOptions(options CommandOptions) (string, error)
- func RunElevatedCommand(command string, args []string) errordeprecated
- func SetGlobalVars(options SetGlobalVarsOptions)
- func ShowMenu(cliInfo ShowMenuModel, enableOtherOption interface{}) string
- func ShowMenuMultipleOptions(cliInfo ShowMenuMultipleModel, enableOtherOption interface{}) []string
- func TraverseDirectory(config TraverseDirectoryParams) error
- func TruncateStringByRegex(options TruncateStringByRegexOptions) string
- func UnicodeUnquote(bs []byte) []byte
- func WatchDirectory(options WatchDirectoryParams)
- func WriteCustomFormattedJSONToFile(data interface{}, filename string, indentString string) error
- func WriteFormattoJSONFile(data interface{}, filename string)
- type AngularDeployToFirebaseStruct
- type AngularFrontendStruct
- type CommandOptions
- type CopySelectFilesToDestinationStruct
- type CreateStringObjectType
- type DualWriter
- type FirebaseCloudRunEmulatorsStruct
- type FlutterMobileBuildStruct
- type GetInputFromStdinStruct
- type GetTestNGArgsStruct
- type GitCloneSubdirsStruct
- type GitHubRelease
- type GitPushingWorkToGitRemoteStruct
- type KillPortsOptions
- type KillPortsProcessInfo
- type MiscOptimizeImagesStruct
- type ProcessIfDefaultIsPresentStruct
- type SetGlobalVarsOptions
- type ShellCommandOutput
- type ShopifyRunStruct
- type ShowMenuModel
- type ShowMenuMultipleModel
- type TakeVariableArgsResultStruct
- type TakeVariableArgsStruct
- type TraverseDirectoryParams
- type TruncateStringByRegexOptions
- type VSCodeSettings
- type WMLPorts
- type WatchDirectoryParams
- type WindmillcodeExtensionPack
- type WxtBuildSafariStruct
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddContentToFile ¶
func ArrayContainsAny ¶
func CDToAngularApp ¶
func CDToAngularApp()
func CDToFirebaseApp ¶
func CDToFirebaseApp()
func CDToFlaskApp ¶
func CDToFlaskApp()
func CDToFlutterApp ¶
func CDToFlutterApp()
func CDToLocation ¶
func CDToLocation(location string, opts ...interface{})
func CDToShopifyApp ¶ added in v5.4.1
func CDToShopifyApp()
func CDToTestNGApp ¶
func CDToTestNGApp()
func CDToWorkspaceRoot ¶
func CDToWorkspaceRoot()
func CDToWxtApp ¶ added in v5.6.4
func CDToWxtApp()
func CompileGlobs ¶
CompileGlobs compiles the string patterns into glob.Glob objects.
func ContainsAny ¶
func ConvertPathToOSFormat ¶
func ConvertToBoolArray ¶
func ConvertToBoolArray(input []interface{}) []bool
func ConvertToByteArray ¶
func ConvertToByteArray(input []interface{}) []byte
func ConvertToComplex128Array ¶
func ConvertToComplex128Array(input []interface{}) []complex128
func ConvertToComplex64Array ¶
func ConvertToComplex64Array(input []interface{}) []complex64
func ConvertToFloat32Array ¶
func ConvertToFloat32Array(input []interface{}) []float32
func ConvertToFloat64Array ¶
func ConvertToFloat64Array(input []interface{}) []float64
func ConvertToInt16Array ¶
func ConvertToInt16Array(input []interface{}) []int16
func ConvertToInt32Array ¶
func ConvertToInt32Array(input []interface{}) []int32
func ConvertToInt64Array ¶
func ConvertToInt64Array(input []interface{}) []int64
func ConvertToInt8Array ¶
func ConvertToInt8Array(input []interface{}) []int8
func ConvertToIntArray ¶
func ConvertToIntArray(input []interface{}) []int
func ConvertToInterfaceArray ¶
func ConvertToInterfaceArray[T any](input []T) []interface{}
func ConvertToRuneArray ¶
func ConvertToRuneArray(input []interface{}) []rune
func ConvertToStringArray ¶
func ConvertToStringArray(input []interface{}) []string
func ConvertToStringBoolMap ¶
func ConvertToStringComplex128Map ¶
func ConvertToStringComplex128Map(originalMap map[string]interface{}) map[string]complex128
func ConvertToStringErrorMap ¶
func ConvertToStringInt16Map ¶
func ConvertToStringInt32Map ¶
func ConvertToStringInt64Map ¶
func ConvertToStringInt8Map ¶
func ConvertToStringIntMap ¶
func ConvertToStringUint8Map ¶
func ConvertToUint16Array ¶
func ConvertToUint16Array(input []interface{}) []uint16
func ConvertToUint32Array ¶
func ConvertToUint32Array(input []interface{}) []uint32
func ConvertToUint64Array ¶
func ConvertToUint64Array(input []interface{}) []uint64
func ConvertToUint8Array ¶
func ConvertToUint8Array(input []interface{}) []uint8
func ConvertToUintArray ¶
func ConvertToUintArray(input []interface{}) []uint
func CopySelectFilesToDestination ¶
func CopySelectFilesToDestination(c CopySelectFilesToDestinationStruct) error
func DecreaseChannelBatchFn ¶
func DownloadFile ¶
func EnsureDirAndCreateFile ¶ added in v5.0.2
func ExtractArchive ¶
func ExtractBranchNames ¶
func FilterArray ¶
func FilterFilesByExtension ¶ added in v5.0.2
func FilterJSONByPredicate ¶
func FindElement ¶ added in v5.4.2
func FindExecutable ¶
func FindRelativeToTarget ¶ added in v5.1.1
func FolderExists ¶
func GetCurrentBranch ¶
func GetCurrentPath ¶
func GetCurrentPath() string
func GetDownloadURLForCurrentOS ¶
func GetDownloadURLForCurrentOS(release *GitHubRelease) (string, error)
func GetFilePathFromPackage ¶ added in v5.4.3
func GetInputFromStdin ¶
func GetInputFromStdin(obj GetInputFromStdinStruct) string
func GetItemsInFolder ¶
func GetParamValue ¶
func GetParamValue(parameterName string, parameterValue interface{}) interface{}
func GetSourceFilePath ¶
func GetType ¶
func GetType(value interface{}) string
getType returns the type of a given value as a string
func GitSparseClone ¶
func HasPrefixInArray ¶
func HasSuffixInArray ¶
func IsFileOrFolder ¶
func IsRunningInDocker ¶
func IsRunningInDocker() bool
func KillPorts ¶ added in v5.4.3
func KillPorts(options KillPortsOptions)
func LogErrorWithTraceBack ¶ added in v5.2.0
func MatchAnyGlob ¶
MatchAnyGlob checks if a path matches any of the provided glob patterns.
func MergeDirectories ¶
func OverwriteFile ¶
func OverwriteMap ¶
func ParseJSONFromString ¶ added in v5.6.3
func ReadFileFromPackage ¶ added in v5.4.3
func RemoveContentFromFile ¶
func RemoveDrivePath ¶
func RemoveDuplicates ¶ added in v5.4.3
func RemoveDuplicates[T constraints.Ordered](items []T) []T
func RemoveElementsNotInSource ¶
func RemoveElementsNotInSource[T comparable](source, toRemove []T) []T
func RemovePathPrefix ¶ added in v5.0.2
func RunCommand ¶
func RunCommandAndGetOutput
deprecated
func RunCommandInSpecifcDirectoryAndGetOutput
deprecated
func RunCommandInSpecificDirectory
deprecated
func RunCommandWithOptions ¶
func RunCommandWithOptions(options CommandOptions) (string, error)
func RunElevatedCommand
deprecated
added in
v5.3.1
func SetGlobalVars ¶ added in v5.6.0
func SetGlobalVars(options SetGlobalVarsOptions)
func ShowMenu ¶
func ShowMenu(cliInfo ShowMenuModel, enableOtherOption interface{}) string
func ShowMenuMultipleOptions ¶
func ShowMenuMultipleOptions(cliInfo ShowMenuMultipleModel, enableOtherOption interface{}) []string
func TraverseDirectory ¶
func TraverseDirectory(config TraverseDirectoryParams) error
func TruncateStringByRegex ¶
func TruncateStringByRegex(options TruncateStringByRegexOptions) string
func UnicodeUnquote ¶
func WatchDirectory ¶
func WatchDirectory(options WatchDirectoryParams)
func WriteFormattoJSONFile ¶
func WriteFormattoJSONFile(data interface{}, filename string)
Types ¶
type AngularDeployToFirebaseStruct ¶ added in v5.6.4
type AngularDeployToFirebaseStruct struct { Environments []string `json:"environments"` RunLint bool `json:"runLint"` RunSSGScript bool `json:"runSSGScript"` RemoveBuildDirectories bool `json:"removeBuildDirectories"` DeployToSentry bool `json:"deployToSentry"` SentryOrg string `json:"sentryOrg"` SentryProject string `json:"sentryProject"` SentryAuthToken string `json:"sentryAuthToken"` DeployToFirebase bool `json:"deployToFirebase"` FirebaseProjectId string `json:"firebaseProjectId"` }
type AngularFrontendStruct ¶ added in v5.0.2
type AngularFrontendStruct struct {
Configurations []string `json:"configurations"`
}
type CommandOptions ¶
type CommandOptions struct { CmdObj *exec.Cmd Self *CommandOptions Command string Args []string TargetDir string GetOutput bool PrintOutput bool PrintOutputOnly bool PanicOnError bool NonBlocking bool IsInputFromProgram bool IsElevated bool EnvVars map[string]string }
func (CommandOptions) EndProcess ¶
func (c CommandOptions) EndProcess() error
type CreateStringObjectType ¶
type CreateStringObjectType struct { Orig string Prefix func() string CamelCase func(stripSuffix bool, suffix string) string Classify func(stripSuffix bool, suffix string) string Capitalize func(stripSuffix bool, suffix string) string Dasherize func(stripSuffix bool, suffix string) string Lowercase func(stripSuffix bool, suffix string) string Uppercase func(stripSuffix bool, suffix string) string Snakecase func(stripSuffix bool, suffix string) string KebabCase func(stripSuffix bool, suffix string) string }
CreateStringObjectType represents the structure of the string object.
func CreateStringObject ¶
func CreateStringObject(myStr string, entitySuffix string) (CreateStringObjectType, error)
type DualWriter ¶
type FirebaseCloudRunEmulatorsStruct ¶ added in v5.4.3
type FirebaseCloudRunEmulatorsStruct struct { GlobalDomain string `json:"globalDomain"` UIDomain0 string `json:"UIDomain0"` AuthDomain0 string `json:"AuthDomain0"` StorageDomain0 string `json:"StorageDomain0"` DatabaseDomain0 string `json:"DatabaseDomain0"` HostingDomain0 string `json:"HostingDomain0"` FunctionsDomain0 string `json:"FunctionsDomain0"` PubSubDomain0 string `json:"PubSubDomain0"` FirestoreDomain0 string `json:"FirestoreDomain0"` KillPortOutputFile string `json:"killPortOutputFile"` KillPortOutputFileAcceptDefault bool `json:"killPortOutputFileAcceptDefault"` AdditonalPortsToKill []int `json:"additonalPortsToKill"` }
type FlutterMobileBuildStruct ¶ added in v5.4.3
type FlutterMobileBuildStruct struct { ToolArgs []string `json:"toolArgs"` Args []string `json:"args"` VmAdditionalArgs []string `json:"vmAdditionalArgs"` PlayStoreServiceAccountKey string `json:"playStoreServiceAccountKey"` PackageName string `json:"packageName"` PublishTarget string `json:"publishTarget"` TrackName string `json:"trackName"` }
type GetInputFromStdinStruct ¶
type GetTestNGArgsStruct ¶
type GetTestNGArgsStruct struct { WorkspaceFolder string EnvVarsFile string TestNGFolder string SuiteFile string ParamEnv string }
func GetTestNGArgs ¶
func GetTestNGArgs(c GetTestNGArgsStruct) GetTestNGArgsStruct
type GitCloneSubdirsStruct ¶ added in v5.0.2
type GitHubRelease ¶
type GitHubRelease struct { TagName string `json:"tag_name"` Assets []struct { Name string `json:"name"` BrowserDownloadURL string `json:"browser_download_url"` } `json:"assets"` }
func GetLatestRelease ¶
func GetLatestRelease(repoURL string) (*GitHubRelease, error)
type GitPushingWorkToGitRemoteStruct ¶ added in v5.2.3
type KillPortsOptions ¶ added in v5.4.3
type KillPortsProcessInfo ¶ added in v5.4.3
type MiscOptimizeImagesStruct ¶ added in v5.0.2
type ProcessIfDefaultIsPresentStruct ¶ added in v5.4.3
type ProcessIfDefaultIsPresentStruct struct {
Global bool `json:"global"`
}
type SetGlobalVarsOptions ¶ added in v5.6.0
type SetGlobalVarsOptions struct { NonInteractive ProcessIfDefaultIsPresentStruct Infinity int }
var GLOBAL_VARS SetGlobalVarsOptions
type ShellCommandOutput ¶
type ShellCommandOutput struct{}
type ShopifyRunStruct ¶ added in v5.6.0
type ShopifyRunStruct struct {
ProjectName string `json:"projectName"`
}
type ShowMenuModel ¶
type ShowMenuModel struct { Default string Other bool OtherString string Prompt string Choices []string // items on the to-do list Selected map[int]string // which to-do items are selected // contains filtered or unexported fields }
func (ShowMenuModel) Init ¶
func (m ShowMenuModel) Init() tea.Cmd
func (ShowMenuModel) View ¶
func (m ShowMenuModel) View() string
type ShowMenuMultipleModel ¶
type ShowMenuMultipleModel struct { Defaults []string // Default selections Prompt string Choices []string // Items on the list Selected map[int]string // Selected items Other bool // Enable 'Other' option OtherString string // String for 'Other' option SelectionLimit int // Maximum number of selections allowed SelectedDelimiter string // Delimiter for selected items in the returned string // contains filtered or unexported fields }
func (ShowMenuMultipleModel) Init ¶
func (m ShowMenuMultipleModel) Init() tea.Cmd
func (ShowMenuMultipleModel) View ¶
func (m ShowMenuMultipleModel) View() string
type TakeVariableArgsResultStruct ¶
func TakeVariableArgs ¶
func TakeVariableArgs(obj TakeVariableArgsStruct) TakeVariableArgsResultStruct
type TakeVariableArgsStruct ¶
type TraverseDirectoryParams ¶
type VSCodeSettings ¶ added in v5.0.2
type VSCodeSettings struct {
ExtensionPack WindmillcodeExtensionPack `json:"windmillcode-extension-pack-0"`
}
func GetSettingsJSON ¶ added in v5.0.2
func GetSettingsJSON(workSpaceFolder string) (VSCodeSettings, error)
type WMLPorts ¶ added in v5.4.3
type WMLPorts struct { AngularRun0 int `json:"Angular_Run_0"` AngularTest0 int `json:"Angular_Test_0"` AngularCoverageTest0 int `json:"Angular_Coverage_Test_0"` AngularAnalyzer0 int `json:"Angular_Analyzer_0"` AngularSSG0 int `json:"Angular_SSG_0"` AngularSSG1 int `json:"Angular_SSG_1"` AngularSSG2 int `json:"Angular_SSG_2"` FlaskRun0 int `json:"Flask_Run_0"` FlaskTest0 int `json:"Flask_Test_0"` Postgres0 int `json:"Postgres_0"` FirebaseEmulatorUI0 int `json:"Firebase_Emulator_UI_0"` FirebaseEmulatorAuth0 int `json:"Firebase_Emulator_Auth_0"` FirebaseEmulatorStorage0 int `json:"Firebase_Emulator_Storage_0"` FirebaseEmulatorDatabase0 int `json:"Firebase_Emulator_Database_0"` FirebaseEmulatorHosting0 int `json:"Firebase_Emulator_Hosting_0"` FirebaseEmulatorFunctions0 int `json:"Firebase_Emulator_Functions_0"` FirebaseEmulatorPubSub0 int `json:"Firebase_Emulator_PubSub_0"` FirebaseEmulatorFirestore0 int `json:"Firebase_Emulator_Firestore_0"` DiodeProxies0 int `json:"Diode_Proxies_0"` }
func (*WMLPorts) GetFirebasePorts ¶ added in v5.4.3
type WatchDirectoryParams ¶
type WindmillcodeExtensionPack ¶ added in v5.0.2
type WindmillcodeExtensionPack struct { TasksToRunOnFolderOpen []string `json:"tasksToRunOnFolderOpen"` FlaskBackendDevHelperScript string `json:"flaskBackendDevHelperScript"` FlaskBackendTestHelperScript string `json:"flaskBackendTestHelperScript"` ProxyURLs string `json:"proxyURLs"` SQLDockerContainerName string `json:"sqlDockerContainerName"` DatabaseName string `json:"databaseName"` DatabaseOptions []string `json:"databaseOptions"` Environments []string `json:"environments"` SentryDSN string `json:"sentryDSN"` OpenAIAPIKey0 string `json:"openAIAPIKey0"` OpenAIAPIBase0 string `json:"openAIAPIBase0"` LangCodes0 string `json:"langCodes0"` PythonVersion0 string `json:"pythonVersion0"` NodeJSVersion0 string `json:"nodeJSVersion0"` JavaVersion0 string `json:"javaVersion0"` GoVersion0 string `json:"goVersion0"` RubyVersion0 string `json:"rubyVersion0"` DartVersion0 string `json:"dartVersion0"` CSharpVersion0 string `json:"cSharpVersion0"` SwiftVersion0 string `json:"swiftVersion0"` PHPVersion0 string `json:"phpVersion0"` RustVersion0 string `json:"rustVersion0"` KotlinVersion0 string `json:"kotlinVersion0"` ScalaVersion0 string `json:"scalaVersion0"` PerlVersion0 string `json:"perlVersion0"` LuaVersion0 string `json:"luaVersion0"` HaskellVersion0 string `json:"haskellVersion0"` ClojureVersion0 string `json:"clojureVersion0"` ErlangVersion0 string `json:"erlangVersion0"` JuliaVersion0 string `json:"juliaVersion0"` ObjectiveCVersion0 string `json:"objectiveCVersion0"` FSharpVersion0 string `json:"fSharpVersion0"` VisualBasicVersion0 string `json:"visualBasicVersion0"` Ports WMLPorts `json:"ports"` ProcessIfDefaultIsPresent ProcessIfDefaultIsPresentStruct `json:"processIfDefaultIsPresent"` FirebaseCloudRunEmulators FirebaseCloudRunEmulatorsStruct `json:"firebaseCloudRunEmulators"` FlutterMobileBuild FlutterMobileBuildStruct `json:"flutterMobileBuild"` GitCloneSubdirs GitCloneSubdirsStruct `json:"gitCloneSubdirs"` GitPushingWorkToGitRemote GitPushingWorkToGitRemoteStruct `json:"gitPushingWorkingToGitRemote"` MiscOptimizeImages MiscOptimizeImagesStruct `json:"miscOptimizeImages"` AngularFrontend AngularFrontendStruct `json:"angularFrontend"` ShopifyRun ShopifyRunStruct `json:"shopifyRun"` WxtBuildSafari WxtBuildSafariStruct `json:"wxtBuildSafari"` AngularDeployToFirebase AngularDeployToFirebaseStruct `json:"angularDeployToFirebase"` }
type WxtBuildSafariStruct ¶ added in v5.6.4
type WxtBuildSafariStruct struct {
BundleIdentifier string `json:"bundleIdentifier"`
}
Click to show internal directories.
Click to hide internal directories.