-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathhelpers.ts
53 lines (41 loc) · 1.48 KB
/
helpers.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
import * as path from "path";
import * as recast from "recast";
import * as parser from "recast/parsers/babel";
import glob = require("glob");
export const distDir = path.resolve(__dirname, "..", "dist");
export function eachFile(
dir: string,
callback: (absPath: string, relPath: string) => any
) {
const promises: Promise<any>[] = [];
return new Promise<void>((resolve, reject) => {
glob(`${dir.replace(/\\/g, "/")}/**/*.js`, (error, files) => {
if (error) return reject(error);
files.sort().forEach((file) => {
const relPath = path.relative(dir, file);
// Outside the distDir, somehow.
if (relPath.startsWith("../")) return;
// Avoid re-transforming CommonJS bundle files.
if (relPath.endsWith(".cjs")) return;
if (relPath.endsWith(".cjs.js")) return;
if (relPath.endsWith(".cjs.native.js")) return;
// Avoid re-transforming CommonJS bundle files.
if (relPath.endsWith(".min.js")) return;
// This file is not meant to be imported or processed.
if (relPath.endsWith("invariantErrorCodes.js")) return;
promises.push(
new Promise((resolve) => {
resolve(callback(file, relPath));
})
);
});
resolve();
});
}).then(() => Promise.all(promises));
}
export function reparse(source: string) {
return recast.parse(source, { parser });
}
export function reprint(ast: ReturnType<typeof reparse>) {
return recast.print(ast).code;
}