-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathutil.ts
80 lines (67 loc) · 2.45 KB
/
util.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
import * as ts from "typescript"
import * as path from "path"
import { readFile } from "fs-extra"
import BluebirdPromise from "bluebird-lst"
export function transpile(transpilator: (basePath: string, config: ts.ParsedCommandLine, tsConfig: any) => Promise<any>) {
const paths = process.argv.slice(2)
if (paths.length == 0) {
paths.push(process.cwd())
}
return transpilePaths(paths, transpilator)
}
export function transpilePaths(paths: Array<string>, transpilator: (basePath: string, config: ts.ParsedCommandLine, tsConfig: any) => Promise<any>) {
return BluebirdPromise.map(paths, basePath => {
return build(basePath, transpilator)
.catch(e => {
if (e == null) {
return
}
if (!(e instanceof CompilationError)) {
throw e
}
for (const diagnostic of e.errors) {
if (diagnostic.file == null) {
console.log(diagnostic.messageText)
continue
}
const location = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start!!)
const message = ts.flattenDiagnosticMessageText(diagnostic.messageText, "\n")
console.log(`${diagnostic.file.fileName} (${location.line + 1}, ${location.character + 1}): ${message}`)
}
process.exit(-1)
return
})
})
}
async function build(basePath: string, transpilator: (basePath: string, config: ts.ParsedCommandLine, tsConfig: any) => Promise<any>) {
const tsConfigPath = path.join(basePath, "tsconfig.json")
const jsonResult = ts.parseConfigFileTextToJson(tsConfigPath, await readFile(tsConfigPath, "utf8"))
if (jsonResult.error != null) {
throw new CompilationError([jsonResult.error])
}
const result = ts.parseJsonConfigFileContent(jsonResult.config, ts.sys, basePath)
checkErrors(result.errors)
await transpilator(basePath, result, jsonResult.config)
}
export function checkErrors(errors: ReadonlyArray<ts.Diagnostic>): void {
if (errors.length !== 0) {
throw new CompilationError(errors)
}
}
class CompilationError extends Error {
constructor(public errors: ReadonlyArray<ts.Diagnostic>) {
super("Compilation error")
}
}
export function processTree(sourceFile: ts.SourceFile, replacer: (node: ts.Node) => boolean): void {
function visit(node: ts.Node) {
if (node.flags & ts.ModifierFlags.Private) {
// skip private nodes
return
}
if (!replacer(node)) {
ts.forEachChild(node, visit)
}
}
visit(sourceFile)
}