Skip to content

Commit d32fe1b

Browse files
committed
chore(_tools): add deps mapping
1 parent cab5666 commit d32fe1b

File tree

1 file changed

+32
-10
lines changed

1 file changed

+32
-10
lines changed

_tools/meta.ts

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@ export const makeOptions = (version: string): BuildOptions => ({
44
test: false,
55
shims: {},
66
compilerOptions: {
7-
lib: [
8-
"esnext",
9-
"dom",
10-
"dom.iterable",
11-
],
7+
lib: ["esnext", "dom", "dom.iterable"],
128
},
139
typeCheck: false,
1410
entryPoints: ["./mod.ts"],
@@ -48,9 +44,35 @@ export const makeOptions = (version: string): BuildOptions => ({
4844
},
4945
packageManager: "pnpm",
5046
mappings: {
51-
"https://deno.land/x/[email protected]/mod.ts": {
52-
name: "isxx",
53-
version: "1.0.0-beta.24",
47+
"https://deno.land/x/[email protected]/is_boolean.ts": {
48+
name: "@miyauci/isx",
49+
version: "1.0.0",
50+
subPath: "is_boolean",
51+
},
52+
"https://deno.land/x/[email protected]/is_null.ts": {
53+
name: "@miyauci/isx",
54+
version: "1.0.0",
55+
subPath: "is_null",
56+
},
57+
"https://deno.land/x/[email protected]/is_string.ts": {
58+
name: "@miyauci/isx",
59+
version: "1.0.0",
60+
subPath: "is_string",
61+
},
62+
"https://deno.land/x/[email protected]/is_number.ts": {
63+
name: "@miyauci/isx",
64+
version: "1.0.0",
65+
subPath: "is_number",
66+
},
67+
"https://deno.land/x/[email protected]/number/is_negative_number.ts": {
68+
name: "@miyauci/isx",
69+
version: "1.0.0",
70+
subPath: "number/is_negative_number",
71+
},
72+
"https://deno.land/x/[email protected]/date/is_valid_date.ts": {
73+
name: "@miyauci/isx",
74+
version: "1.0.0",
75+
subPath: "date/is_valid_date",
5476
},
5577
"https://deno.land/x/[email protected]/mod.ts": {
5678
name: "@httpland/http-middleware",
@@ -72,9 +94,9 @@ export const makeOptions = (version: string): BuildOptions => ({
7294
name: "@miyauci/result",
7395
version: "1.0.0",
7496
},
75-
"https://deno.land/x/[email protected]-beta.1/mod.ts": {
97+
"https://deno.land/x/[email protected]/mod.ts": {
7698
name: "@httpland/range-request-middleware",
77-
version: "1.0.0-beta.1",
99+
version: "1.0.0",
78100
},
79101
},
80102
});

0 commit comments

Comments
 (0)