From 77b3391a21fc823f891f85c854c2bc58f9ad298f Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Tue, 15 Jan 2019 22:01:58 +1000 Subject: [PATCH] Fix media_types running under Deno with ESM (#113) And bump CI to v0.2.7 --- azure-pipelines.yml | 2 +- media_types/deps.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 600f742274..1bb173ad29 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,5 +1,5 @@ variables: - DENO_VERSION: 'v0.2.6' + DENO_VERSION: 'v0.2.7' jobs: diff --git a/media_types/deps.ts b/media_types/deps.ts index e305f6831c..bc08f3a480 100644 --- a/media_types/deps.ts +++ b/media_types/deps.ts @@ -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;