-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.ts
52 lines (45 loc) · 1.46 KB
/
build.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
import { BuildOptions, build, Plugin } from "esbuild";
import { glob } from "glob";
import fs from "fs";
import path from "path";
const entryPoints = glob.sync("./lib/**/*.ts");
const addJsExtensionPlugin: Plugin = {
name: "add-js-extension",
setup(build) {
build.onEnd(() => {
function addJsExtensionToImports(filePath: string) {
const fileContent = fs.readFileSync(filePath, "utf8");
const updatedContent = fileContent.replace(
/from ['"](.+?)['"]/g,
(match, importPath) => {
if (importPath.startsWith(".") && !importPath.endsWith(".js")) {
return `from '${importPath}.js'`;
}
return match;
}
);
fs.writeFileSync(filePath, updatedContent);
}
function processDirectory(dirPath: string) {
const entries = fs.readdirSync(dirPath, { withFileTypes: true });
for (const entry of entries) {
if (entry.isDirectory()) {
processDirectory(path.join(dirPath, entry.name));
} else if (entry.name.endsWith(".js")) {
addJsExtensionToImports(path.join(dirPath, entry.name));
}
}
}
processDirectory("./.dist");
});
},
};
const buildConfig = {
entryPoints: [...entryPoints, "./index.ts"],
platform: "node",
format: "esm",
sourcemap: false,
outdir: ".dist",
plugins: [addJsExtensionPlugin],
} as BuildOptions;
build(buildConfig).catch(() => process.exit(1));