Skip to content

Commit e7a37bb

Browse files
committed
style: remove white spaces for tabs
1 parent 9fb135c commit e7a37bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/compileCLI.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ const cliOptions = [
77
{ name: "module", alias: "m", type: Boolean },
88
{ name: "output", alias: "o", type: String },
99
{ 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 }
1212
];
1313
const args = cliParser(cliOptions);
1414
if (!("standalone" in args)) args.standalone = false;
@@ -54,7 +54,7 @@ if (args.input !== null) {
5454
if (args.output !== null) console.log("Opening " + args.input + " for compilation.");
5555
inputSource(args.input, compile);
5656
} else if(args.source) {
57-
compile(args.source);
57+
compile(args.source);
5858
} else {
5959
stdInSource(compile);
6060
}

0 commit comments

Comments
 (0)