Skip to content

Commit

Permalink
build: Upgrade to deno 1.0.1, std 0.52.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
srackham committed May 20, 2020
1 parent 2ebe3e2 commit 4fc02bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions lib/deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * as colors from "https://deno.land/std@v0.51.0/fmt/colors.ts";
export { existsSync } from "https://deno.land/std@v0.51.0/fs/exists.ts";
export { walkSync } from "https://deno.land/std@v0.51.0/fs/walk.ts";
export * as path from "https://deno.land/std@v0.51.0/path/mod.ts";
export * as colors from "https://deno.land/std@v0.52.0/fmt/colors.ts";
export { existsSync } from "https://deno.land/std@v0.52.0/fs/exists.ts";
export { walkSync } from "https://deno.land/std@v0.52.0/fs/walk.ts";
export * as path from "https://deno.land/std@v0.52.0/path/mod.ts";
6 changes: 3 additions & 3 deletions tests/deps.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export { existsSync } from "https://deno.land/std@v0.51.0/fs/exists.ts";
export * as path from "https://deno.land/std@v0.51.0/path/mod.ts";
export { existsSync } from "https://deno.land/std@v0.52.0/fs/exists.ts";
export * as path from "https://deno.land/std@v0.52.0/path/mod.ts";
export {
assert,
assertEquals,
assertNotEquals,
assertStrContains,
assertThrows,
assertThrowsAsync,
} from "https://deno.land/std@v0.51.0/testing/asserts.ts";
} from "https://deno.land/std@v0.52.0/testing/asserts.ts";

0 comments on commit 4fc02bd

Please sign in to comment.