Archived
1
0

feat: add home as a cli option

This commit is contained in:
Joe Previte
2020-12-09 12:20:56 -07:00
parent 1dd7e4b4e1
commit 8daba6ca80
2 changed files with 6 additions and 0 deletions

View File

@ -56,6 +56,7 @@ export interface Args extends VsArgs {
"new-window"?: boolean
link?: OptionalString
home?: string
}
interface Option<T> {
@ -198,6 +199,10 @@ const options: Options<Required<Args>> = {
`,
beta: true,
},
home: {
type: "string",
description: "Set a custom link for the 'Go Home' button in the Application Menu",
},
}
export const optionDescriptions = (): string[] => {