File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ export class CxWrapper {
18
18
linux = 'linux' ;
19
19
20
20
21
- async constructor ( cxScanConfig : CxConfig , logFilePath ?: string ) {
21
+ constructor ( cxScanConfig : CxConfig , logFilePath ?: string ) {
22
22
getLoggerWithFilePath ( logFilePath )
23
- await this . downloadIfNotInstalledCLI ( process . platform ) ;
23
+ this . downloadIfNotInstalledCLI ( process . platform ) ;
24
24
if ( cxScanConfig . apiKey ) {
25
25
this . config . apiKey = cxScanConfig . apiKey ;
26
26
} else if ( cxScanConfig . clientId && cxScanConfig . clientSecret ) {
Original file line number Diff line number Diff line change 6
6
"module" : " commonjs" ,
7
7
"moduleResolution" : " node" ,
8
8
"noEmitOnError" : true ,
9
- "target" : " es5 " ,
9
+ "target" : " ES2015 " ,
10
10
"declaration" : true ,
11
11
"removeComments" : false ,
12
12
"noImplicitAny" : true ,
You can’t perform that action at this time.
0 commit comments