From 349a6e698b132b79c5b6592be316d5669232e06a Mon Sep 17 00:00:00 2001 From: Christopher Turner Date: Wed, 5 Aug 2020 23:01:33 +1000 Subject: [PATCH] updating std version --- deps.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deps.ts b/deps.ts index d523491..b8c16f4 100644 --- a/deps.ts +++ b/deps.ts @@ -1,12 +1,12 @@ -export * as flags from "https://deno.land/std@0.57.0/flags/mod.ts"; +export * as flags from "https://deno.land/std@0.63.0/flags/mod.ts"; // fs contains unstable features just re-export under fs -import { readJson } from "https://deno.land/std@0.57.0/fs/read_json.ts"; -import { walk } from "https://deno.land/std@0.57.0/fs/walk.ts"; +import { readJson } from "https://deno.land/std@0.63.0/fs/read_json.ts"; +import { walk } from "https://deno.land/std@0.63.0/fs/walk.ts"; export const fs = { readJson, walk }; -export * as http from "https://deno.land/std@0.57.0/http/mod.ts"; +export * as http from "https://deno.land/std@0.63.0/http/mod.ts"; -export * as path from "https://deno.land/std@0.57.0/path/mod.ts"; +export * as path from "https://deno.land/std@0.63.0/path/mod.ts"; export * as pathToRegexp from "https://raw.githubusercontent.com/pillarjs/path-to-regexp/v6.1.0/src/index.ts";