forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.ts
36 lines (34 loc) · 1.17 KB
/
utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
const workspaces = JSON.parse(await Deno.readTextFile("deno.json"))
.workspace as string[];
// deno-lint-ignore no-explicit-any
const denoConfig = {} as Record<string, any>;
for (const workspace of workspaces) {
const { default: config } = await import("../" + workspace + "/deno.json", {
with: { type: "json" },
});
denoConfig[config.name.replace("@std/", "")] = config;
}
export function resolveWorkspaceSpecifiers(
specifier: string,
referrer: string,
) {
if (specifier.startsWith("../") || specifier.startsWith("./")) {
return new URL(specifier, referrer).href;
} else if (specifier.startsWith("@std/")) {
let [_std, pkg, exp] = specifier.split("/");
if (exp === undefined) {
exp = ".";
} else {
exp = "./" + exp;
}
const pkgPath = "../" + pkg!.replaceAll("-", "_") + "/";
const config = denoConfig[pkg!];
if (typeof config.exports === "string") {
return new URL(pkgPath + config.exports, import.meta.url).href;
}
return new URL(pkgPath + config.exports[exp], import.meta.url).href;
} else {
return new URL(specifier).href;
}
}