forked from babel/babel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbabel-worker.ts
More file actions
62 lines (58 loc) · 1.81 KB
/
Copy pathbabel-worker.ts
File metadata and controls
62 lines (58 loc) · 1.81 KB
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
import { transformAsync } from "@babel/core";
import { mkdirSync, statSync, readFileSync, writeFileSync } from "node:fs";
import path from "node:path";
import { styleText } from "node:util";
import { log } from "./scripts/utils/logger.ts";
/** * Check if the source file needs to be compiled based on its modification time
* compared to the destination file.
* If the destination file does not exist, it will return true to indicate that
* compilation is needed.
* @param {string} src - The source file path.
* @param {string} dest - The destination file path.
* @returns {boolean}
*/
function needCompile(src: string, dest: string): boolean {
let destStat;
try {
destStat = statSync(dest);
} catch (err: any) {
if (err.code === "ENOENT") {
return true;
} else {
throw err;
}
}
const srcStat = statSync(src);
return srcStat.mtimeMs >= destStat.mtimeMs;
}
export async function transform(src: string, dest: string, opts: any = {}) {
mkdirSync(path.dirname(dest), { recursive: true });
if (!needCompile(src, dest)) {
return;
}
log(`Compiling '${styleText("cyan", src)}'...`);
const content = readFileSync(src, { encoding: "utf8" });
const { code, map } = (await transformAsync(content, {
filename: src,
sourceFileName: path.relative(path.dirname(dest), src),
caller: {
// We have wrapped packages/babel-core/src/config/files/configuration.js with feature detection
supportsDynamicImport: true,
name: "babel-worker",
},
...opts,
}))!;
if (map) {
writeFileSync(
dest,
`${code}
//# sourceMappingURL=${path.basename(dest)}.map
`,
"utf8"
);
writeFileSync(dest + ".map", JSON.stringify(map), "utf8");
} else {
// @ts-expect-error code must not be for our project source
writeFileSync(dest, code, "utf8");
}
}