Fix media_types running under Deno with ESM (#113)

And bump CI to v0.2.7
This commit is contained in:
Kitson Kelly 2019-01-15 22:01:58 +10:00 committed by Ryan Dahl
parent 39cfdb48a8
commit 77b3391a21
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
variables:
DENO_VERSION: 'v0.2.6'
DENO_VERSION: 'v0.2.7'
jobs:

View File

@ -11,5 +11,5 @@ interface DB {
};
}
import * as _db from "./db_1.37.0.json";
import _db from "./db_1.37.0.json";
export const db: DB = _db;