Skip to content

Commit

Permalink
chore: upgrade to deno 1.34.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cknight committed Jun 28, 2023
1 parent f754d53 commit da0ecef
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/optic-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: download deno
uses: denolib/setup-deno@v2
with:
deno-version: v1.32.1
deno-version: v1.34.3
- name: check format
if: matrix.os == 'ubuntu-latest'
run: deno fmt --check
Expand Down
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ export {
gray,
red,
yellow,
} from "https://deno.land/std@0.181.0/fmt/colors.ts";
} from "https://deno.land/std@0.192.0/fmt/colors.ts";
4 changes: 3 additions & 1 deletion logger/profileMeasure_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,11 @@ test({
);

assert(
outputWithHeapIncrease.includes(""),
outputWithHeapIncrease.includes("ms; heap usage increased "),
);

console.log(outputWithHeapIncrease);

assert(
/^Measuring 'start of test' -> 'Now', took \d+(?:\.\d+)?ms; heap usage increased \d+\.\d+ [A-Z]{2} to \d+\.\d+ [A-Z]{2}$/
.test(outputWithHeapIncrease),
Expand Down
6 changes: 3 additions & 3 deletions streams/fileStream/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
export {
basename as posixBasename,
dirname as posixDirname,
} from "https://deno.land/std@0.181.0/path/posix.ts";
} from "https://deno.land/std@0.192.0/path/posix.ts";
export {
basename as win32Basename,
dirname as win32Dirname,
} from "https://deno.land/std@0.181.0/path/win32.ts";
export { BufWriterSync } from "https://deno.land/std@0.181.0/io/buf_writer.ts";
} from "https://deno.land/std@0.192.0/path/win32.ts";
export { BufWriterSync } from "https://deno.land/std@0.192.0/io/buf_writer.ts";
2 changes: 1 addition & 1 deletion test_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ export {
assertStrictEquals,
assertStringIncludes,
assertThrows,
} from "https://deno.land/std@0.181.0/testing/asserts.ts";
} from "https://deno.land/std@0.192.0/testing/asserts.ts";

0 comments on commit da0ecef

Please sign in to comment.