Skip to content

Commit 1fd36da

Browse files
authored
Merge pull request #28 from masx200/deno-dependency-updates
Update dependencies
2 parents 522d64e + 6e00162 commit 1fd36da

File tree

14 files changed

+18
-18
lines changed

14 files changed

+18
-18
lines changed

add-two-polynomials-represented-as-linked-lists/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.163.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts";
22

33
import { ArrayToPolyNode } from "./ArrayToPolyNode.ts";
44
import addPoly from "./index.ts";

basic-calculator-iv/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.163.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts";
22

33
import basicCalculatorIV from "./index.ts";
44
import { Poly } from "./Poly.ts";

booking-concert-tickets-in-groups/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.163.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts";
22
import { runScript } from "leetcode-class";
33

44
import BookMyShow from "./index.ts";

brace-expansion-ii/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.163.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts";
22

33
import braceExpansionII from "./index.ts";
44

brace-expansion/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.163.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts";
22

33
import expand from "./index.ts";
44

construct-binary-search-tree-from-preorder-traversal/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.163.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts";
22

33
import { TreeNodeLeetCodeFromJSON } from "../utils/TreeNodeLeetCodeParse.ts";
44
import { TreeNodeLeetCodeToJSON } from "../utils/TreeNodeLeetCodeStringify.ts";

construct-binary-tree-from-string/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.163.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts";
22

33
import str2tree from "./index.ts";
44

count-of-smaller-numbers-after-self/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.163.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts";
22

33
import countSmaller from "./index.ts";
44

delete-tree-nodes/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.163.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts";
22

33
import deleteTreeNodes from "./index.ts";
44

deps.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export {
55
assertFalse,
66
assertStrictEquals,
77
equal,
8-
} from "https://deno.land/std@0.163.0/testing/asserts.ts";
8+
} from "https://deno.land/std@0.164.0/testing/asserts.ts";
99
export { default as random } from "https://cdn.skypack.dev/lodash@4.17.21/random?dts";
1010
export { default as countBy } from "https://cdn.skypack.dev/lodash@4.17.21/countBy?dts";
1111
export { default as zip } from "https://cdn.skypack.dev/lodash@4.17.21/zip?dts";
@@ -14,10 +14,10 @@ export { default as uniqBy } from "https://cdn.skypack.dev/lodash@4.17.21/uniqBy
1414

1515
export { default as intersection } from "https://cdn.skypack.dev/lodash@4.17.21/intersection?dts";
1616

17-
export { walk } from "https://deno.land/std@0.163.0/fs/mod.ts";
18-
export { parse } from "https://deno.land/std@0.163.0/flags/mod.ts";
17+
export { walk } from "https://deno.land/std@0.164.0/fs/mod.ts";
18+
export { parse } from "https://deno.land/std@0.164.0/flags/mod.ts";
1919
export { combinations } from "https://deno.land/x/combinatorics@1.1.2/mod.ts";
20-
export { isIP } from "https://deno.land/std@0.163.0/node/internal/net.ts";
20+
export { isIP } from "https://deno.land/std@0.164.0/node/internal/net.ts";
2121
export { Heap } from "https://esm.sh/@datastructures-js/heap@4.1.2/";
2222
export {
2323
AvlTree,
@@ -31,7 +31,7 @@ export {
3131
TreeNode,
3232
} from "https://esm.sh/@masx200/leetcode-class@1.2.5";
3333

34-
export type { WalkEntry } from "https://deno.land/std@0.163.0/fs/_util.ts";
34+
export type { WalkEntry } from "https://deno.land/std@0.164.0/fs/_util.ts";
3535
import AsyncLimiterClass, {
3636
AsyncCurrentLimiter,
3737
} from "https://cdn.skypack.dev/@masx200/async-task-current-limiter@2.1.0?dts";

design-a-file-sharing-system/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ export default class FileSharing {
6363
return usersList;
6464
}
6565
}
66-
import { BinaryHeap } from "https://deno.land/std@0.163.0/collections/binary_heap.ts";
66+
import { BinaryHeap } from "https://deno.land/std@0.164.0/collections/binary_heap.ts";

import_map.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"imports": {
33
"assert": "https://esm.sh/assert@2.0.0",
44
"leetcode-class": "https://esm.sh/@masx200/leetcode-class@1.2.5",
5-
"asserts": "https://deno.land/std@0.163.0/testing/asserts.ts"
5+
"asserts": "https://deno.land/std@0.164.0/testing/asserts.ts"
66
}
77
}

total-cost-to-hire-k-workers/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ export default function totalCost(
3030
costs.sort(compare);
3131
return ans + costs.slice(0, k).reduce((p, c) => p + c, 0);
3232
}
33-
import { BinaryHeap } from "https://deno.land/std@0.163.0/collections/binary_heap.ts";
33+
import { BinaryHeap } from "https://deno.land/std@0.164.0/collections/binary_heap.ts";

utils/split_by_count.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { chunk } from "https://deno.land/std@0.163.0/collections/chunk.ts";
1+
import { chunk } from "https://deno.land/std@0.164.0/collections/chunk.ts";
22
export function split_by_count<T>(files: T[], limit: number): T[][] {
33
return chunk(files, limit) as T[][];
44
}

0 commit comments

Comments
 (0)