File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -774,10 +774,11 @@ export interface CodeArgs extends UserProvidedCodeArgs {
774
774
"accept-server-license-terms" ?: boolean
775
775
"connection-token" ?: string
776
776
help : boolean
777
- port : string
777
+ port ? : string
778
778
version : boolean
779
779
"without-connection-token" ?: boolean
780
780
"without-browser-env-var" ?: boolean
781
+ compatibility : string
781
782
}
782
783
783
784
/**
@@ -792,6 +793,9 @@ export const toCodeArgs = async (args: DefaultedArgs): Promise<CodeArgs> => {
792
793
return {
793
794
...args ,
794
795
"accept-server-license-terms" : true ,
796
+ // This seems to be used to make the connection token flags optional (when
797
+ // set to 1.63) but we have always included them.
798
+ compatibility : "1.64" ,
795
799
/** Type casting. */
796
800
help : ! ! args . help ,
797
801
version : ! ! args . version ,
You can’t perform that action at this time.
0 commit comments