hmt 3 years ago
parent
commit
c861793aa2
2 changed files with 3 additions and 3 deletions
  1. 2 2
      deps.ts
  2. 1 1
      mod.ts

+ 2 - 2
deps.ts

@@ -4,7 +4,7 @@ export { join } from "https://deno.land/std/path/mod.ts";
 export { createHash } from "https://deno.land/std/hash/mod.ts";
 export * as Color from "https://deno.land/std/fmt/colors.ts";
 export { HttpError } from "https://deno.land/x/http_error@0.1.3/mod.ts";
-export { opine, Router } from "https://deno.land/x/opine@2.1.5";
-export type { ErrorRequestHandler, Request, ParamsDictionary } from "https://deno.land/x/opine@2.1.5";
+export { opine, Router } from "https://deno.land/x/opine@2.1.5/mod.ts";
+export type { ErrorRequestHandler, Request, ParamsDictionary } from "https://deno.land/x/opine@2.1.5/mod.ts";
 export const secret: string = Deno.env.get("TINYSCALE_SECRET") || ""
 export interface server { host: string; secret: string };

+ 1 - 1
mod.ts

@@ -1,6 +1,6 @@
 import { Color, secret } from './deps.ts'
 
-const VERSION = 'v1.8.0'
+const VERSION = 'v1.8.1'
 // give your tinyscale server a secret so it looks like a BBB server
 if (!secret) throw "No secret set for tinyscale"
 console.log(Color.green(`Starting tinyscale ${VERSION} on Deno ${Deno.version.deno}`))