Skip to content

Commit 02993df

Browse files
committed
chore(deps): up deps version
1 parent 2aacec4 commit 02993df

File tree

3 files changed

+58
-22
lines changed

3 files changed

+58
-22
lines changed

_tools/meta.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -44,34 +44,34 @@ export const makeOptions = (version: string): BuildOptions => ({
4444
},
4545
packageManager: "pnpm",
4646
mappings: {
47-
"https://deno.land/x/isx@1.0.0/is_boolean.ts": {
47+
"https://deno.land/x/isx@1.1.1/is_boolean.ts": {
4848
name: "@miyauci/isx",
49-
version: "1.0.0",
49+
version: "1.1.1",
5050
subPath: "is_boolean",
5151
},
52-
"https://deno.land/x/isx@1.0.0/is_null.ts": {
52+
"https://deno.land/x/isx@1.1.1/is_null.ts": {
5353
name: "@miyauci/isx",
54-
version: "1.0.0",
54+
version: "1.1.1",
5555
subPath: "is_null",
5656
},
57-
"https://deno.land/x/isx@1.0.0/is_string.ts": {
57+
"https://deno.land/x/isx@1.1.1/is_string.ts": {
5858
name: "@miyauci/isx",
59-
version: "1.0.0",
59+
version: "1.1.1",
6060
subPath: "is_string",
6161
},
62-
"https://deno.land/x/isx@1.0.0/is_number.ts": {
62+
"https://deno.land/x/isx@1.1.1/is_number.ts": {
6363
name: "@miyauci/isx",
64-
version: "1.0.0",
64+
version: "1.1.1",
6565
subPath: "is_number",
6666
},
67-
"https://deno.land/x/isx@1.0.0/number/is_negative_number.ts": {
67+
"https://deno.land/x/isx@1.1.1/number/is_negative_number.ts": {
6868
name: "@miyauci/isx",
69-
version: "1.0.0",
69+
version: "1.1.1",
7070
subPath: "number/is_negative_number",
7171
},
72-
"https://deno.land/x/isx@1.0.0/date/is_valid_date.ts": {
72+
"https://deno.land/x/isx@1.1.1/date/is_valid_date.ts": {
7373
name: "@miyauci/isx",
74-
version: "1.0.0",
74+
version: "1.1.1",
7575
subPath: "date/is_valid_date",
7676
},
7777
"https://deno.land/x/http_middleware@1.0.0/mod.ts": {
@@ -90,9 +90,9 @@ export const makeOptions = (version: string): BuildOptions => ({
9090
name: "@miyauci/result",
9191
version: "1.0.0",
9292
},
93-
"https://deno.land/x/range_request_middleware@1.0.0/mod.ts": {
93+
"https://deno.land/x/range_request_middleware@1.1.0/mod.ts": {
9494
name: "@httpland/range-request-middleware",
95-
version: "1.0.0",
95+
version: "1.1.0",
9696
},
9797
"https://deno.land/x/accept_ranges_parser@1.0.0/mod.ts": {
9898
name: "@httpland/accept-ranges-parser",

deno.lock

Lines changed: 36 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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ export {
77
type SuccessfulStatus,
88
} from "https://deno.land/std@0.181.0/http/http_status.ts";
99
export { distinct } from "https://deno.land/std@0.181.0/collections/distinct.ts";
10-
export { isBoolean } from "https://deno.land/x/isx@1.0.0/is_boolean.ts";
11-
export { isNull } from "https://deno.land/x/isx@1.0.0/is_null.ts";
12-
export { isString } from "https://deno.land/x/isx@1.0.0/is_string.ts";
13-
export { isNumber } from "https://deno.land/x/isx@1.0.0/is_number.ts";
14-
export { isNegativeNumber } from "https://deno.land/x/isx@1.0.0/number/is_negative_number.ts";
15-
export { isValidDate } from "https://deno.land/x/isx@1.0.0/date/is_valid_date.ts";
10+
export { isBoolean } from "https://deno.land/x/isx@1.1.1/is_boolean.ts";
11+
export { isNull } from "https://deno.land/x/isx@1.1.1/is_null.ts";
12+
export { isString } from "https://deno.land/x/isx@1.1.1/is_string.ts";
13+
export { isNumber } from "https://deno.land/x/isx@1.1.1/is_number.ts";
14+
export { isNegativeNumber } from "https://deno.land/x/isx@1.1.1/number/is_negative_number.ts";
15+
export { isValidDate } from "https://deno.land/x/isx@1.1.1/date/is_valid_date.ts";
1616
export {
1717
type Handler,
1818
type Middleware,
@@ -38,14 +38,14 @@ export {
3838
} from "https://deno.land/x/etag_parser@1.1.0/mod.ts";
3939
export { isErr, unsafe } from "https://deno.land/x/result_js@1.0.0/mod.ts";
4040
export { ascend } from "https://deno.land/std@0.181.0/collections/_comparators.ts";
41-
export { withContentRange } from "https://deno.land/x/range_request_middleware@1.0.0/transform.ts";
41+
export { withContentRange } from "https://deno.land/x/range_request_middleware@1.1.0/transform.ts";
4242
export {
4343
type BytesContext,
4444
BytesRange,
4545
type ComputeBoundary,
4646
type Range,
4747
type RangesSpecifier,
48-
} from "https://deno.land/x/range_request_middleware@1.0.0/mod.ts";
48+
} from "https://deno.land/x/range_request_middleware@1.1.0/mod.ts";
4949
export { default as parseHttpDate } from "https://esm.sh/http-dates@1.2.0";
5050
export {
5151
parseAcceptRanges,

0 commit comments

Comments
 (0)