summaryrefslogtreecommitdiffhomepage
path: root/vhosts/blog/nuldoc-src/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'vhosts/blog/nuldoc-src/main.ts')
-rw-r--r--vhosts/blog/nuldoc-src/main.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/vhosts/blog/nuldoc-src/main.ts b/vhosts/blog/nuldoc-src/main.ts
deleted file mode 100644
index af6acc2e..00000000
--- a/vhosts/blog/nuldoc-src/main.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-import { runBuildCommand } from "./commands/build.ts";
-import { runNewCommand } from "./commands/new.ts";
-import { runServeCommand } from "./commands/serve.ts";
-import { getDefaultConfigPath, loadConfig } from "./config.ts";
-
-const config = await loadConfig(getDefaultConfigPath());
-
-if (import.meta.main) {
- const command = Deno.args[0] ?? "build";
- if (command === "build") {
- await runBuildCommand(config);
- } else if (command === "new") {
- runNewCommand(config);
- } else if (command === "serve") {
- runServeCommand(config);
- } else {
- console.error(`Unknown command: ${command}`);
- }
-}