Skip to content

Commit

Permalink
refactor: add version file
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed May 13, 2021
1 parent 562b65f commit ebc6143
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cli/mod.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { VERSION } from "../../version.ts";
import { io, path } from "../runtime/mod.ts";
import { bundleCommand } from "./bundle.ts";
import { compileCommand } from "./compile.ts";
import { Command, ValidationError } from "./deps.ts";

export function dzx() {
return new Command<void>()
.version("0.2.0")
.version(VERSION)
.name("dzx")
.description("🦕 A custom deno runtime for fun.")
.stopEarly()
Expand Down
1 change: 1 addition & 0 deletions version.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const VERSION = "0.2.0";

0 comments on commit ebc6143

Please sign in to comment.