Skip to content

Commit c8a343d

Browse files
committed
feat(deps): update deps version
1 parent 7009037 commit c8a343d

File tree

4 files changed

+56
-55
lines changed

4 files changed

+56
-55
lines changed

_dev_deps.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ export {
33
assertEquals,
44
assertFalse,
55
assertThrows,
6-
} from "https://deno.land/std@0.180.0/testing/asserts.ts";
7-
export { describe, it } from "https://deno.land/std@0.180.0/testing/bdd.ts";
6+
} from "https://deno.land/std@0.181.0/testing/asserts.ts";
7+
export { describe, it } from "https://deno.land/std@0.181.0/testing/bdd.ts";
88
export {
99
assertSpyCalls,
1010
spy,
11-
} from "https://deno.land/std@0.180.0/testing/mock.ts";
12-
export { equalsResponse } from "https://deno.land/x/[email protected]-beta.13/response.ts";
11+
} from "https://deno.land/std@0.181.0/testing/mock.ts";
12+
export { equalsResponse } from "https://deno.land/x/[email protected]/response.ts";

_tools/meta.ts

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ export const makeOptions = (version: string): BuildOptions => ({
4242
publishConfig: {
4343
access: "public",
4444
},
45+
dependencies: {
46+
"@types/compressible": "2.0.0",
47+
"@types/node": "^18",
48+
},
4549
},
4650
mappings: {
4751
"https://esm.sh/[email protected]": {
@@ -52,13 +56,20 @@ export const makeOptions = (version: string): BuildOptions => ({
5256
name: "@httpland/http-middleware",
5357
version: "1.0.0",
5458
},
55-
"https://deno.land/x/[email protected]/header.ts": {
56-
name: "@httpland/http-utils",
57-
version: "1.0.0-beta.13",
59+
"https://deno.land/x/[email protected]/is_null.ts": {
60+
name: "@miyauci/isx",
61+
version: "1.1.1",
62+
subPath: "is_null",
63+
},
64+
"https://deno.land/x/[email protected]/is_iterable.ts": {
65+
name: "@miyauci/isx",
66+
version: "1.1.1",
67+
subPath: "is_iterable",
5868
},
59-
"https://deno.land/x/[email protected]/mod.ts": {
60-
name: "isxx",
61-
version: "1.0.0-beta.24",
69+
"https://deno.land/x/[email protected]/header.ts": {
70+
name: "@httpland/http-utils",
71+
version: "1.0.0",
72+
subPath: "header.js",
6273
},
6374
},
6475
packageManager: "pnpm",

deno.lock

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

deps.ts

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ export {
99
CachingHeader,
1010
ContentNegotiationHeader,
1111
RepresentationHeader,
12-
} from "https://deno.land/x/[email protected]/header.ts";
13-
export { acceptsEncodings } from "https://deno.land/[email protected]/http/negotiation.ts";
14-
export { parseMediaType } from "https://deno.land/[email protected]/media_types/mod.ts";
15-
export {
16-
isIterable,
17-
isNull,
18-
} from "https://deno.land/x/[email protected]/mod.ts";
12+
} from "https://deno.land/x/[email protected]/header.ts";
13+
export { acceptsEncodings } from "https://deno.land/[email protected]/http/negotiation.ts";
14+
export { parseMediaType } from "https://deno.land/[email protected]/media_types/mod.ts";
15+
export { isNull } from "https://deno.land/x/[email protected]/is_null.ts";
16+
export { isIterable } from "https://deno.land/x/[email protected]/is_iterable.ts";
1917
export { default as compressible } from "https://esm.sh/[email protected]";
2018
export { vary } from "https://deno.land/x/[email protected]/mod.ts";

0 commit comments

Comments
 (0)