Skip to content

Commit

Permalink
Merge pull request #19 from hayd/1.2.0
Browse files Browse the repository at this point in the history
Bump deno version to 1.2.0
  • Loading branch information
hayd authored Jul 18, 2020
2 parents e139866 + 5e0f46a commit 5ec785a
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/jszip@3.5.0";
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 5ec785a

Please sign in to comment.