Skip to content

Commit

Permalink
Bump deno version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hayd committed Jul 18, 2020
1 parent e139866 commit 5e0f46a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: denolib/setup-deno@master
with:
deno-version: 1.1.0
deno-version: 1.2.0

- name: Run tests
run: deno test --allow-read --allow-write --unstable
4 changes: 2 additions & 2 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import _JSZip from "https://dev.jspm.io/[email protected]";
import { WalkOptions, walk } from "https://deno.land/std@v0.57.0/fs/mod.ts";
import { SEP, join } from "https://deno.land/std@v0.57.0/path/mod.ts";
import { WalkOptions, walk } from "https://deno.land/std@v0.61.0/fs/mod.ts";
import { SEP, join } from "https://deno.land/std@v0.61.0/path/mod.ts";
import {
InputFileFormat,
JSZipFileOptions,
Expand Down
6 changes: 3 additions & 3 deletions test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { decode, encode } from "https://deno.land/std@v0.54.0/encoding/utf8.ts";
import { join } from "https://deno.land/std@v0.54.0/path/mod.ts";
import { assertEquals } from "https://deno.land/std@v0.54.0/testing/asserts.ts";
import { decode, encode } from "https://deno.land/std@v0.61.0/encoding/utf8.ts";
import { join } from "https://deno.land/std@v0.61.0/path/mod.ts";
import { assertEquals } from "https://deno.land/std@v0.61.0/testing/asserts.ts";
import { JSZip, readZip, zipDir } from "./mod.ts";

// FIXME use tmp directory and clean up.
Expand Down

0 comments on commit 5e0f46a

Please sign in to comment.