Skip to content

Commit cab5666

Browse files
committed
chore: update deps
1 parent f616ec0 commit cab5666

File tree

5 files changed

+110
-18
lines changed

5 files changed

+110
-18
lines changed

_dev_deps.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
export { describe, it } from "https://deno.land/std@0.180.0/testing/bdd.ts";
1+
export { describe, it } from "https://deno.land/std@0.181.0/testing/bdd.ts";
22
export {
33
assert,
44
assertEquals,
55
assertExists,
66
assertThrows,
7-
} from "https://deno.land/std@0.180.0/testing/asserts.ts";
7+
} from "https://deno.land/std@0.181.0/testing/asserts.ts";
88
export {
99
assertSpyCallArg,
1010
assertSpyCallArgs,
1111
assertSpyCalls,
1212
spy,
13-
} from "https://deno.land/std@0.180.0/testing/mock.ts";
14-
export { equalsResponse } from "https://deno.land/x/[email protected].13/response.ts";
15-
export { equalsRequest } from "https://deno.land/x/[email protected].13/request.ts";
13+
} from "https://deno.land/std@0.181.0/testing/mock.ts";
14+
export { equalsResponse } from "https://deno.land/x/[email protected].14/response.ts";
15+
export { equalsRequest } from "https://deno.land/x/[email protected].14/request.ts";
1616
export {
1717
ConditionalHeader,
1818
RangeHeader,
1919
RepresentationHeader,
2020
} from "https://deno.land/x/[email protected]/header.ts";
2121
export { Method } from "https://deno.land/x/[email protected]/method.ts";
22-
export { Status } from "https://deno.land/std@0.180.0/http/http_status.ts";
22+
export { Status } from "https://deno.land/std@0.181.0/http/http_status.ts";

_test_import_map.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"imports": {
33
"https://deno.land/x/conditional_request_middleware@$VERSION/": "./",
4-
"https://deno.land/std/": "https://deno.land/std@0.180.0/"
4+
"https://deno.land/std/": "https://deno.land/std@0.181.0/"
55
}
66
}

deno.lock

Lines changed: 83 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deps.ts

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,14 @@ export {
55
isSuccessfulStatus,
66
Status,
77
type SuccessfulStatus,
8-
} from "https://deno.land/std@0.180.0/http/http_status.ts";
8+
} from "https://deno.land/std@0.181.0/http/http_status.ts";
99
export { distinct } from "https://deno.land/[email protected]/collections/distinct.ts";
10-
export {
11-
isBoolean,
12-
isNegativeNumber,
13-
isNull,
14-
isNumber,
15-
isString,
16-
isValidDate,
17-
} from "https://deno.land/x/[email protected]/mod.ts";
10+
export { isBoolean } from "https://deno.land/x/[email protected]/is_boolean.ts";
11+
export { isNull } from "https://deno.land/x/[email protected]/is_null.ts";
12+
export { isString } from "https://deno.land/x/[email protected]/is_string.ts";
13+
export { isNumber } from "https://deno.land/x/[email protected]/is_number.ts";
14+
export { isNegativeNumber } from "https://deno.land/x/[email protected]/number/is_negative_number.ts";
15+
export { isValidDate } from "https://deno.land/x/[email protected]/date/is_valid_date.ts";
1816
export {
1917
type Handler,
2018
type Middleware,
@@ -37,11 +35,14 @@ export {
3735
parse as parseETag,
3836
} from "https://deno.land/x/[email protected]/mod.ts";
3937
export { isErr, unsafe } from "https://deno.land/x/[email protected]/mod.ts";
40-
export { ascend } from "https://deno.land/std@0.180.0/collections/_comparators.ts";
38+
export { ascend } from "https://deno.land/std@0.181.0/collections/_comparators.ts";
4139
export { withContentRange } from "https://deno.land/x/[email protected]/transform.ts";
4240
export {
41+
type BytesContext,
4342
BytesRange,
43+
type ComputeBoundary,
4444
type Range,
45+
type RangesSpecifier,
4546
} from "https://deno.land/x/[email protected]/mod.ts";
4647
export { default as parseHttpDate } from "https://esm.sh/[email protected]";
4748

mod.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,13 @@ export { IfMatch } from "./preconditions/if_match.ts";
77
export { IfModifiedSince } from "./preconditions/if_modified_since.ts";
88
export { IfUnmodifiedSince } from "./preconditions/if_unmodified_since.ts";
99
export { IfRange } from "./preconditions/if_range.ts";
10-
export { type Handler, type Middleware } from "./deps.ts";
10+
export {
11+
type BytesContext,
12+
BytesRange,
13+
type ComputeBoundary,
14+
type Handler,
15+
type Middleware,
16+
type Range,
17+
type RangesSpecifier,
18+
} from "./deps.ts";
1119
export { type Precondition } from "./types.ts";

0 commit comments

Comments
 (0)