File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ const cliOptions = [
7
7
{ name : "module" , alias : "m" , type : Boolean } ,
8
8
{ name : "output" , alias : "o" , type : String } ,
9
9
{ name : "input" , alias : "i" , type : String } ,
10
- { name : "spawn" , type : Boolean } ,
11
- { name : "source" , type : String }
10
+ { name : "spawn" , type : Boolean } ,
11
+ { name : "source" , type : String }
12
12
] ;
13
13
const args = cliParser ( cliOptions ) ;
14
14
if ( ! ( "standalone" in args ) ) args . standalone = false ;
@@ -54,7 +54,7 @@ if (args.input !== null) {
54
54
if ( args . output !== null ) console . log ( "Opening " + args . input + " for compilation." ) ;
55
55
inputSource ( args . input , compile ) ;
56
56
} else if ( args . source ) {
57
- compile ( args . source ) ;
57
+ compile ( args . source ) ;
58
58
} else {
59
59
stdInSource ( compile ) ;
60
60
}
You can’t perform that action at this time.
0 commit comments