summaryrefslogtreecommitdiff
path: root/media_types
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-01-15 22:01:58 +1000
committerRyan Dahl <ry@tinyclouds.org>2019-01-15 07:01:58 -0500
commitf1ac2b9540174e150e7fc0d201cd661961f05143 (patch)
treec45ee8220f7a69732636a9c6088c6b3230986b1c /media_types
parent61b401c63a4a7bd069672842f94d1b4c09a73b60 (diff)
Fix media_types running under Deno with ESM (denoland/deno_std#113)
And bump CI to v0.2.7 Original: https://github.com/denoland/deno_std/commit/77b3391a21fc823f891f85c854c2bc58f9ad298f
Diffstat (limited to 'media_types')
-rw-r--r--media_types/deps.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/media_types/deps.ts b/media_types/deps.ts
index e305f6831..bc08f3a48 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;