forked from c4spar/deno-cliffy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup_node.ts
executable file
·108 lines (93 loc) · 2.76 KB
/
setup_node.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#! /usr/bin/env -S deno run -A
import { walk } from "@std/fs/walk";
import denoConfig from "../deno.json" with { type: "json" };
import { join } from "@std/path/posix";
const projects = await getProjects();
const paths: Record<string, Array<string>> = {};
await Promise.all(projects.map(async (project) => {
let { default: { exports } }: {
default: { exports: Record<string, string> | string };
} = await import(`../${project}/deno.json`, { with: { type: "json" } });
if (typeof exports === "string") {
exports = { ".": exports };
}
for (const [specifier, path] of Object.entries(exports)) {
paths[join("@cliffy", project, specifier)] = [`./${join(project, path)}`];
}
}));
await Deno.writeTextFile(
"./tsconfig.json",
JSON.stringify({
compilerOptions: {
allowJs: true,
esModuleInterop: true,
experimentalDecorators: false,
inlineSourceMap: true,
isolatedModules: true,
module: "esnext",
moduleDetection: "force",
strict: true,
target: "esnext",
useDefineForClassFields: true,
paths,
},
}),
);
const dependencies: Record<string, string> = {};
for (const [specifier, version] of Object.entries(denoConfig.imports)) {
if (specifier.includes("cliffy")) {
continue;
}
dependencies[specifier] = version.startsWith("jsr:")
? `npm:@jsr/${version.replace("/", "__").replace("jsr:@", "")}`
: version;
}
console.log("PATH:", Deno.env.get("PATH"));
console.log("PNPM_HOME:", Deno.env.get("PNPM_HOME"));
await Deno.writeTextFile(
"./package.json",
JSON.stringify({
type: "module",
packageManager: "pnpm@9.7.1",
dependencies: {
...dependencies,
tsx: "4.17.0",
},
}),
);
await Deno.writeTextFile("./.npmrc", "@jsr:registry=https://npm.jsr.io\n");
await new Deno.Command("deno", {
args: ["fmt", "tsconfig.json", "package.json"],
}).spawn().output();
if (!Deno.args.includes("--no-install")) {
if (Deno.args.includes("--bun")) {
await new Deno.Command("bun", {
args: ["install"],
}).spawn().output();
} else {
await new Deno.Command("pnpm", {
args: ["install"],
}).spawn().output();
}
}
async function getProjects(): Promise<Array<string>> {
const projects: Array<string> = [];
for await (
const entry of walk(".", { includeDirs: true, followSymlinks: false })
) {
if (
entry.isDirectory && !entry.path.startsWith(".") &&
[".", "node_modules"].every((path) => !entry.path.startsWith(path))
) {
try {
const files = [...Deno.readDirSync(entry.path)];
if (files.some((file) => file.name === "deno.json")) {
projects.push(entry.path);
}
} catch (error) {
console.error(`Error reading directory ${entry.path}:`, error);
}
}
}
return projects;
}