From 2ebc2cf198e3bf19c8afe6b8a9e8cd5f30575ea7 Mon Sep 17 00:00:00 2001 From: Fil Maj Date: Tue, 19 Jul 2022 10:23:04 -0400 Subject: [PATCH] Import from deep_merge directly instead of the mod.ts to avoid pulling in unnecessary code. (#24) --- src/deps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deps.ts b/src/deps.ts index 2959f8d..97dcc86 100644 --- a/src/deps.ts +++ b/src/deps.ts @@ -1,4 +1,4 @@ -export { deepMerge } from "https://deno.land/std@0.134.0/collections/mod.ts"; +export { deepMerge } from "https://deno.land/std@0.134.0/collections/deep_merge.ts"; export { parse } from "https://deno.land/std@0.134.0/flags/mod.ts"; export { ensureDir } from "https://deno.land/std@0.134.0/fs/mod.ts"; export * as path from "https://deno.land/std@0.134.0/path/mod.ts";