Skip to content

Commit

Permalink
feat(gen): Output when generating is succeeded (#55)
Browse files Browse the repository at this point in the history
The message makes it easy to notify it's completed.
  • Loading branch information
5ouma committed May 8, 2024
1 parent dadcd00 commit 6dc20e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseArgs } from "parse_args";
import { resolve } from "path";
import { basename, resolve } from "path";
import { readTOML, writeXML } from "./libs/mod.ts";
import { Lists } from "./types/mod.ts";

Expand All @@ -20,3 +20,4 @@ try {
console.error(`🚨 ${error.message}`);
Deno.exit(1);
}
console.log(`✅ ${basename(flags.feeds)}`);

0 comments on commit 6dc20e0

Please sign in to comment.