Skip to content

Commit

Permalink
Bump std and other dependency version
Browse files Browse the repository at this point in the history
  • Loading branch information
rahmanfadhil committed Aug 5, 2020
1 parent f74e011 commit 5a149e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
export {
Client as MysqlClient,
ClientConfig as MysqlClientConfig,
} from "https://deno.land/x/mysql@v2.3.0/mod.ts";
export { Client as PostgresClient } from "https://deno.land/x/postgres/mod.ts";
} from "https://deno.land/x/mysql@v2.4.0/mod.ts";
export { Client as PostgresClient } from "https://deno.land/x/postgres@v0.4.3/mod.ts";
export {
DB as SqliteDB,
Empty as SqliteEmpty,
} from "https://deno.land/x/sqlite@v2.3.0/mod.ts";

// CLI
export * as Colors from "https://deno.land/std@v0.62.0/fmt/colors.ts";
export { parse as parseFlags } from "https://deno.land/std@v0.62.0/flags/mod.ts";
export { join as joinPath } from "https://deno.land/std@v0.62.0/path/mod.ts";
export * as Colors from "https://deno.land/std@v0.63.0/fmt/colors.ts";
export { parse as parseFlags } from "https://deno.land/std@v0.63.0/flags/mod.ts";
export { join as joinPath } from "https://deno.land/std@v0.63.0/path/mod.ts";
2 changes: 1 addition & 1 deletion testdeps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ export {
assertEquals,
assertThrows,
assertThrowsAsync,
} from "https://deno.land/std@v0.62.0/testing/asserts.ts";
} from "https://deno.land/std@v0.63.0/testing/asserts.ts";
export { joinPath } from "./deps.ts";
export { stub, spy } from "https://deno.land/x/mock@v0.3.0/stub.ts";

0 comments on commit 5a149e2

Please sign in to comment.