File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -814,6 +814,7 @@ export interface CodeArgs extends UserProvidedCodeArgs {
814
814
"without-connection-token" ?: boolean
815
815
"without-browser-env-var" ?: boolean
816
816
compatibility : string
817
+ log : string [ ] | undefined
817
818
}
818
819
819
820
/**
@@ -835,5 +836,6 @@ export const toCodeArgs = async (args: DefaultedArgs): Promise<CodeArgs> => {
835
836
help : ! ! args . help ,
836
837
version : ! ! args . version ,
837
838
port : args . port ?. toString ( ) ,
839
+ log : args . log ? [ args . log ] : undefined ,
838
840
}
839
841
}
Original file line number Diff line number Diff line change @@ -795,6 +795,7 @@ describe("toCodeArgs", () => {
795
795
help : false ,
796
796
port : "8080" ,
797
797
version : false ,
798
+ log : undefined ,
798
799
}
799
800
800
801
const testName = "vscode-args"
You can’t perform that action at this time.
0 commit comments