Skip to content

Commit

Permalink
📦 Update Deno dependencies
Browse files Browse the repository at this point in the history
Update dependencies by udd:

/home/runner/work/deno-unknownutil/deno-unknownutil/util_test.ts
[1/1] Looking for releases: https://deno.land/[email protected]/testing/asserts.ts
[1/1] Attempting update: https://deno.land/[email protected]/testing/asserts.ts -> 0.197.0
[1/1] Update successful: https://deno.land/[email protected]/testing/asserts.ts -> 0.197.0

/home/runner/work/deno-unknownutil/deno-unknownutil/util.ts

/home/runner/work/deno-unknownutil/deno-unknownutil/is_test.ts
[1/2] Looking for releases: https://deno.land/[email protected]/testing/asserts.ts
[1/2] Attempting update: https://deno.land/[email protected]/testing/asserts.ts -> 0.197.0
[1/2] Update successful: https://deno.land/[email protected]/testing/asserts.ts -> 0.197.0
[2/2] Looking for releases: https://deno.land/[email protected]/testing/types.ts
[2/2] Attempting update: https://deno.land/[email protected]/testing/types.ts -> 0.197.0
[2/2] Update successful: https://deno.land/[email protected]/testing/types.ts -> 0.197.0

/home/runner/work/deno-unknownutil/deno-unknownutil/mod.ts

/home/runner/work/deno-unknownutil/deno-unknownutil/is.ts

/home/runner/work/deno-unknownutil/deno-unknownutil/scripts/build_npm.ts
[1/1] Looking for releases: https://deno.land/x/[email protected]/mod.ts
[1/1] Attempting update: https://deno.land/x/[email protected]/mod.ts -> 0.38.0
[1/1] Update successful: https://deno.land/x/[email protected]/mod.ts -> 0.38.0

/home/runner/work/deno-unknownutil/deno-unknownutil/is_bench.ts

Successfully updated:
https://deno.land/[email protected]/testing/asserts.ts 0.192.0 -> 0.197.0
https://deno.land/[email protected]/testing/asserts.ts 0.192.0 -> 0.197.0
https://deno.land/[email protected]/testing/types.ts 0.192.0 -> 0.197.0
https://deno.land/x/[email protected]/mod.ts 0.37.0 -> 0.38.0
  • Loading branch information
lambdalisue committed Aug 4, 2023
1 parent e00eee8 commit dece335
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions is_test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import {
assertEquals,
assertStrictEquals,
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
} from "https://deno.land/std@0.197.0/testing/asserts.ts";
import type {
AssertTrue,
IsExact,
} from "https://deno.land/std@0.192.0/testing/types.ts";
} from "https://deno.land/std@0.197.0/testing/types.ts";
import is, {
isAllOf,
isArray,
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_npm.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { build, emptyDir } from "https://deno.land/x/dnt@0.37.0/mod.ts";
import { build, emptyDir } from "https://deno.land/x/dnt@0.38.0/mod.ts";

const name = "unknownutil";
const version = Deno.args[0];
Expand Down
2 changes: 1 addition & 1 deletion util_test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
assertStrictEquals,
assertThrows,
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
} from "https://deno.land/std@0.197.0/testing/asserts.ts";
import { assert, AssertError, ensure, maybe } from "./util.ts";

const x: unknown = Symbol("x");
Expand Down

0 comments on commit dece335

Please sign in to comment.