File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ export interface Args extends VsArgs {
56
56
"new-window" ?: boolean
57
57
58
58
link ?: OptionalString
59
+ home ?: string
59
60
}
60
61
61
62
interface Option < T > {
@@ -198,6 +199,10 @@ const options: Options<Required<Args>> = {
198
199
` ,
199
200
beta : true ,
200
201
} ,
202
+ home : {
203
+ type : "string" ,
204
+ description : "Set a custom link for the 'Go Home' button in the Application Menu" ,
205
+ } ,
201
206
}
202
207
203
208
export const optionDescriptions = ( ) : string [ ] => {
Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ describe("parser", () => {
86
86
"extra-extensions-dir" : [ path . resolve ( "nozzle" ) ] ,
87
87
help : true ,
88
88
host : "0.0.0.0" ,
89
+ home : "https://localhost:8080/" ,
89
90
json : true ,
90
91
log : "error" ,
91
92
open : true ,
You can’t perform that action at this time.
0 commit comments