Skip to content

Commit e794564

Browse files
committed
chore(deps): update deps version
1 parent 1f4260d commit e794564

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

_tools/meta.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ import { BuildOptions } from "https://deno.land/x/[email protected]/mod.ts";
22

33
export const makeOptions = (version: string): BuildOptions => ({
44
test: false,
5-
shims: {
6-
undici: true,
5+
shims: {},
6+
compilerOptions: {
7+
lib: ["dom", "esnext", "dom.iterable"],
78
},
89
typeCheck: false,
910
entryPoints: ["./mod.ts"],
@@ -35,4 +36,11 @@ export const makeOptions = (version: string): BuildOptions => ({
3536
},
3637
},
3738
packageManager: "pnpm",
39+
mappings: {
40+
"https://deno.land/x/[email protected]/to_lower_case.ts": {
41+
name: "@miyauci/prelude",
42+
version: "1.0.0",
43+
subPath: "to_lower_case",
44+
},
45+
},
3846
});

deno.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"tasks": {
3-
"test": "deno test --import-map=./_test_import_map.json --doc"
3+
"test": "deno test --import-map=./_test_import_map.json --doc",
4+
"build:npm": "deno run -A _tools/build_npm.ts"
45
},
56
"fmt": {
67
"files": {

deno.lock

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

deps.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
export {
55
Status,
66
STATUS_TEXT,
7-
} from "https://deno.land/[email protected]/http/http_status.ts";
8-
export {
9-
toLowerCase,
10-
} from "https://deno.land/x/[email protected]/mod.ts";
7+
} from "https://deno.land/[email protected]/http/http_status.ts";
8+
export { toLowerCase } from "https://deno.land/x/[email protected]/to_lower_case.ts";
119
export { default as db } from "https://deno.land/x/[email protected]/db.json" assert { type: "json" };

0 commit comments

Comments
 (0)