Skip to content

Commit

Permalink
Merge pull request #24 from hayd/master2
Browse files Browse the repository at this point in the history
Bump std versions
  • Loading branch information
hayd committed Oct 24, 2020
2 parents 62527e1 + 3731af8 commit 0120205
Show file tree
Hide file tree
Showing 4 changed files with 9 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.2.0
deno-version: 1.4.6

- name: Run tests
run: deno test --allow-read --allow-write --unstable
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vscode
example.zip

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@0.61.0/fs/mod.ts";
import { SEP, join } from "https://deno.land/std@0.61.0/path/mod.ts";
import { WalkOptions, walk } from "https://deno.land/std@0.74.0/fs/mod.ts";
import { SEP, join } from "https://deno.land/std@0.74.0/path/mod.ts";
import type {
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.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 { decode, encode } from "https://deno.land/std@0.74.0/encoding/utf8.ts";
import { join } from "https://deno.land/std@0.74.0/path/mod.ts";
import { assertEquals } from "https://deno.land/std@0.74.0/testing/asserts.ts";
import { JSZip, readZip, zipDir } from "./mod.ts";

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

0 comments on commit 0120205

Please sign in to comment.