diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2019-01-15 22:01:58 +1000 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-15 07:01:58 -0500 |
| commit | f1ac2b9540174e150e7fc0d201cd661961f05143 (patch) | |
| tree | c45ee8220f7a69732636a9c6088c6b3230986b1c | |
| parent | 61b401c63a4a7bd069672842f94d1b4c09a73b60 (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
| -rw-r--r-- | azure-pipelines.yml | 2 | ||||
| -rw-r--r-- | media_types/deps.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 600f74227..1bb173ad2 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 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; |
