Skip to content

Commit

Permalink
Merge pull request #8 from hayd/1.0.0-rc2
Browse files Browse the repository at this point in the history
Bump deno version to 1.0.0-rc2
  • Loading branch information
hayd authored May 10, 2020
2 parents b912123 + 31f6e6b commit 48066cd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .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: 0.42.0
deno-version: 1.0.0-rc2

- name: Run tests
run: deno test --allow-write --allow-read
run: deno test --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.4.0";
import { WalkOptions, walk } from "https://deno.land/std@v0.42.0/fs/mod.ts";
import { SEP, join } from "https://deno.land/std@v0.42.0/path/mod.ts";
import { WalkOptions, walk } from "https://deno.land/std@v0.50.0/fs/mod.ts";
import { SEP, join } from "https://deno.land/std@v0.50.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.42.0/encoding/utf8.ts";
import { join } from "https://deno.land/std@v0.42.0/path/mod.ts";
import { assertEquals } from "https://deno.land/std@v0.42.0/testing/asserts.ts";
import { decode, encode } from "https://deno.land/std@v0.50.0/encoding/utf8.ts";
import { join } from "https://deno.land/std@v0.50.0/path/mod.ts";
import { assertEquals } from "https://deno.land/std@v0.50.0/testing/asserts.ts";
import { JSZip, readZip, zipDir } from "./mod.ts";

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

0 comments on commit 48066cd

Please sign in to comment.