forked from denoland/x-to-jsr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno_json.ts
68 lines (62 loc) · 1.56 KB
/
deno_json.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import $, { type Path } from "dax";
import { errors, type FileSystemHost } from "@ts-morph/common";
export interface DenoJson {
path: Path;
value: DenoJsonValue;
}
export interface DenoJsonValue {
name?: string;
version?: string;
imports?: Record<string, string>;
}
export class DenoJsonResolver {
#fileSystem: FileSystemHost;
constructor(fileSystem: FileSystemHost) {
this.#fileSystem = fileSystem;
}
resolve(cwd: Path): DenoJson | "exit" {
const denoJson = cwd.join("deno.json");
if (this.#fileSystem.fileExistsSync(denoJson.toString())) {
const json = this.#tryReadJson(denoJson);
if (json === "exit") {
return json;
}
return {
path: denoJson,
value: json ?? {},
};
} else {
const denoJsonc = cwd.join("deno.jsonc");
const json = this.#tryReadJson(denoJsonc);
if (json === "exit") {
return json;
}
if (json != null) {
return {
path: denoJsonc,
value: json,
};
} else {
return {
path: denoJson,
value: {},
};
}
}
}
#tryReadJson(path: Path) {
try {
const content = this.#fileSystem.readFileSync(path.toString());
return JSON.parse(content) as DenoJsonValue;
} catch (err) {
if (err instanceof errors.FileNotFoundError) {
return undefined;
}
$.logError(
`error: failed reading JSON file '${path}'. Only JSON files without comments are supported at the moment.`,
err,
);
return "exit";
}
}
}