Skip to content

Commit

Permalink
feat(deps): update deps version
Browse files Browse the repository at this point in the history
  • Loading branch information
TomokiMiyauci committed Apr 2, 2023
1 parent 827afcb commit de20d9a
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 20 deletions.
4 changes: 2 additions & 2 deletions _dev_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ export {
spy,
} from "https://deno.land/std@0.181.0/testing/mock.ts";
export { Status } from "https://deno.land/std@0.181.0/http/http_status.ts";
export { equalsResponse } from "https://deno.land/x/http_utils@1.0.0-beta.14/response.ts";
export { equalsResponse } from "https://deno.land/x/http_utils@1.0.0/response.ts";
export {
ConditionalHeader,
RangeHeader,
RepresentationHeader,
} from "https://deno.land/x/http_utils@1.0.0-beta.14/header.ts";
} from "https://deno.land/x/http_utils@1.0.0/header.ts";
export {
type IntRange,
type SuffixRange,
Expand Down
2 changes: 1 addition & 1 deletion _test_import_map.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"imports": {
"https://deno.land/x/range_request_middleware@$VERSION/": "./",
"https://deno.land/std/testing/asserts.ts": "https://deno.land/std@0.181.0/testing/asserts.ts"
"https://deno.land/std/": "https://deno.land/std@0.181.0/"
}
}
12 changes: 7 additions & 5 deletions _tools/meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const makeOptions = (version: string): BuildOptions => ({
compilerOptions: {
lib: ["dom", "dom.iterable", "esnext"],
},
typeCheck: false,
typeCheck: true,
entryPoints: ["./mod.ts"],
outDir: "./npm",
package: {
Expand Down Expand Up @@ -66,13 +66,15 @@ export const makeOptions = (version: string): BuildOptions => ({
version: "1.1.1",
subPath: "iterable/is_not_empty",
},
"https://deno.land/x/http_utils@1.0.0-beta.14/header.ts": {
"https://deno.land/x/http_utils@1.0.0/header.ts": {
name: "@httpland/http-utils",
version: "1.0.0-beta.14",
version: "1.0.0",
subPath: "header.js",
},
"https://deno.land/x/http_utils@1.0.0-beta.14/method.ts": {
"https://deno.land/x/http_utils@1.0.0/method.ts": {
name: "@httpland/http-utils",
version: "1.0.0-beta.14",
version: "1.0.0",
subPath: "method.js",
},
"https://deno.land/x/result_js@1.0.0/mod.ts": {
name: "@miyauci/result",
Expand Down
15 changes: 5 additions & 10 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export {
isRepresentationHeader,
RangeHeader,
RepresentationHeader,
} from "https://deno.land/x/http_utils@1.0.0-beta.14/header.ts";
export { Method } from "https://deno.land/x/http_utils@1.0.0-beta.14/method.ts";
} from "https://deno.land/x/http_utils@1.0.0/header.ts";
export { Method } from "https://deno.land/x/http_utils@1.0.0/method.ts";
export { isErr, unsafe } from "https://deno.land/x/result_js@1.0.0/mod.ts";
export {
type IntRange,
Expand Down

0 comments on commit de20d9a

Please sign in to comment.