Skip to content

Commit

Permalink
updating std version
Browse files Browse the repository at this point in the history
  • Loading branch information
tur-nr committed Aug 5, 2020
1 parent e64c7e1 commit 349a6e6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -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";

0 comments on commit 349a6e6

Please sign in to comment.