Skip to content

Commit

Permalink
Use version from deno.json
Browse files Browse the repository at this point in the history
Signed-off-by: m4rc3l05 <15786310+M4RC3L05@users.noreply.github.com>
  • Loading branch information
M4RC3L05 committed Sep 28, 2024
1 parent fb2c3c2 commit f16b367
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
Expand Up @@ -5,6 +5,7 @@ import {
isMultipartRequest,
parseMultipartRequest,
} from "@mjackson/multipart-parser";
import meta from "./../deno.json" with { type: "json" };

const multipartToObj = async (request: Request) => {
const response = new Map<string, unknown>();
Expand Down Expand Up @@ -87,7 +88,7 @@ const tag = new Command()
await new Command()
.name("denotag")
.description("Tag audio files")
.version("4.5.2")
.version(meta.version)
.default("help")
.command("tag", tag).alias("t")
.command("completions", new CompletionsCommand())
Expand Down

0 comments on commit f16b367

Please sign in to comment.