-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.ts
45 lines (43 loc) · 1.07 KB
/
cli.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import * as path from "path";
import { dataDir } from "./src/lib.ts";
import { command, commands, boxCommands, boxCommand } from "./src/command.ts";
import { exists } from "./src/lib.ts";
import { args } from "./src/args.ts";
import { isBoxExists, watch } from "./src/box.ts";
import { BoxError } from "./src/error.ts";
import "./log.ts";
import { logError } from "./log.ts";
if (!(await exists(path.join(dataDir)))) {
await Deno.mkdir(path.join(dataDir));
}
if (command) {
if (commands[command]) {
try {
await commands[command]();
} catch (error) {
logError(error);
}
}
if (await isBoxExists(command)) {
if (boxCommand) {
try {
await boxCommands[boxCommand]();
} catch (error) {
logError(error);
}
} else {
if (args.watch) {
await watch(command, args.watch);
}
}
} else {
try {
throw new BoxError(
`${command} 상자가 없습니다.`,
`entam create ${command} --watch <file_path>를 시도하세요.`
);
} catch (error) {
logError(error);
}
}
}