Skip to content

Commit

Permalink
deps: deno@v1.20.3, deno_std@v0.132.0 (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
uki00a authored Mar 28, 2022
1 parent 6293515 commit 2c9db0b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@master
- uses: denoland/setup-deno@main
with:
deno-version: "1.19.1"
deno-version: "1.20.3"
- uses: browser-actions/setup-chrome@latest
- name: Run linter
if: matrix.os == 'ubuntu-latest'
Expand Down
18 changes: 9 additions & 9 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
export { exists } from "https://deno.land/std@0.127.0/fs/exists.ts";
export { exists } from "https://deno.land/std@0.132.0/fs/exists.ts";
export {
dirname,
fromFileUrl,
join,
resolve,
} from "https://deno.land/std@0.127.0/path/mod.ts";
export { BufReader } from "https://deno.land/std@0.127.0/io/bufio.ts";
export { concat } from "https://deno.land/std@0.127.0/bytes/mod.ts";
} from "https://deno.land/std@0.132.0/path/mod.ts";
export { BufReader } from "https://deno.land/std@0.132.0/io/bufio.ts";
export { concat } from "https://deno.land/std@0.132.0/bytes/mod.ts";
// TODO: Remove this import statement.
export { decode, encode } from "https://deno.land/std@0.84.0/encoding/utf8.ts";
export {
decode as decodeFromBase64,
encode as encodeToBase64,
} from "https://deno.land/std@0.127.0/encoding/base64.ts";
export { deferred } from "https://deno.land/std@0.127.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.127.0/async/deferred.ts";
} from "https://deno.land/std@0.132.0/encoding/base64.ts";
export { deferred } from "https://deno.land/std@0.132.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.132.0/async/deferred.ts";

export { readAll, writeAll } from "https://deno.land/std@0.127.0/io/util.ts";
export { readAll, writeAll } from "https://deno.land/std@0.132.0/io/util.ts";

export {
assert,
Expand All @@ -25,7 +25,7 @@ export {
assertStrictEquals,
assertStringIncludes,
fail,
} from "https://deno.land/std@0.127.0/testing/asserts.ts";
} from "https://deno.land/std@0.132.0/testing/asserts.ts";

export { default as puppeteer } from "https://unpkg.com/puppeteer@13.3.2/lib/esm/puppeteer/web.js";
export { EventEmitter } from "https://unpkg.com/puppeteer@13.3.2/lib/esm/puppeteer/common/EventEmitter.js";
Expand Down

0 comments on commit 2c9db0b

Please # to comment.