Skip to content

Commit

Permalink
Merge pull request #25 from olaven/compile-deno-0.41.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eliassjogreen authored Apr 18, 2020
2 parents 239fec4 + 8e0f617 commit 6fdbd44
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@master
- uses: denolib/setup-deno@master
with:
deno-version: 0.40.0
deno-version: 0.41.0
- if: matrix.os == 'ubuntu-latest'
run: deno fmt --check
- run: deno test -A
2 changes: 1 addition & 1 deletion denon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ if (import.meta.main) {
}
const filepath = resolve(file);
const fileInfo = await Deno.lstat(filepath);
if (fileInfo.isDirectory()) {
if (fileInfo.isDirectory) {
fail(`Could not start denon because "${file}" is a directory`);
}

Expand Down
10 changes: 5 additions & 5 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
export { parse } from "https://deno.land/std@v0.40.0/flags/mod.ts";
export { parse } from "https://deno.land/std@v0.41.0/flags/mod.ts";
export {
exists,
readFileStr,
} from "https://deno.land/std@v0.40.0/fs/mod.ts";
} from "https://deno.land/std@v0.41.0/fs/mod.ts";
export {
dirname,
extname,
globToRegExp,
resolve,
} from "https://deno.land/std@v0.40.0/path/mod.ts";
export { deferred } from "https://deno.land/std@v0.40.0/util/async.ts";
} from "https://deno.land/std@v0.41.0/path/mod.ts";
export { deferred } from "https://deno.land/std@v0.41.0/util/async.ts";
export {
green,
red,
setColorEnabled,
yellow,
} from "https://deno.land/std@v0.40.0/fmt/mod.ts";
} from "https://deno.land/std@v0.41.0/fmt/mod.ts";
2 changes: 1 addition & 1 deletion test_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export const test = Deno.test;
export {
assertEquals,
assert,
} from "https://deno.land/std@v0.40.0/testing/asserts.ts";
} from "https://deno.land/std@v0.41.0/testing/asserts.ts";

0 comments on commit 6fdbd44

Please sign in to comment.