summaryrefslogtreecommitdiff
path: root/cli/js/version.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/version.ts')
-rw-r--r--cli/js/version.ts25
1 files changed, 0 insertions, 25 deletions
diff --git a/cli/js/version.ts b/cli/js/version.ts
deleted file mode 100644
index 30157af04..000000000
--- a/cli/js/version.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-
-interface Version {
- deno: string;
- v8: string;
- typescript: string;
-}
-
-export const version: Version = {
- deno: "",
- v8: "",
- typescript: "",
-};
-
-export function setVersions(
- denoVersion: string,
- v8Version: string,
- tsVersion: string,
-): void {
- version.deno = denoVersion;
- version.v8 = v8Version;
- version.typescript = tsVersion;
-
- Object.freeze(version);
-}