Skip to content

Commit

Permalink
build: update Deno to deno_std 0.202.0, deno 1.37.0
Browse files Browse the repository at this point in the history
  • Loading branch information
srackham committed Sep 20, 2023
1 parent 0af73f7 commit 6980fb2
Show file tree
Hide file tree
Showing 5 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 @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
deno-version: [1.34.1]
deno-version: [1.37.0]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion examples/dynamic-tasks.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as path from "https://deno.land/std@0.190.0/path/mod.ts";
import * as path from "https://deno.land/std@0.202.0/path/mod.ts";
import {
desc,
env,
Expand Down
6 changes: 3 additions & 3 deletions lib/deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * as colors from "https://deno.land/std@0.190.0/fmt/colors.ts";
export { walkSync } from "https://deno.land/std@0.190.0/fs/walk.ts";
export * as path from "https://deno.land/std@0.190.0/path/mod.ts";
export * as colors from "https://deno.land/std@0.202.0/fmt/colors.ts";
export { walkSync } from "https://deno.land/std@0.202.0/fs/walk.ts";
export * as path from "https://deno.land/std@0.202.0/path/mod.ts";
2 changes: 1 addition & 1 deletion lib/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ export function isFileTask(name: string): boolean {
export function normalizePath(name: string): string {
name = path.normalize(name);
if (isNormalTask(name)) {
name = "." + path.sep + name;
name = "." + path.SEP + name;
}
return name;
}
Expand Down
4 changes: 2 additions & 2 deletions tests/deps.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export * as path from "https://deno.land/std@0.190.0/path/mod.ts";
export * as path from "https://deno.land/std@0.202.0/path/mod.ts";
export {
assert,
assertEquals,
assertNotEquals,
assertRejects,
assertStringIncludes,
assertThrows,
} from "https://deno.land/std@0.190.0/testing/asserts.ts";
} from "https://deno.land/std@0.202.0/testing/asserts.ts";

0 comments on commit 6980fb2

Please sign in to comment.