-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathcheck-dts.ts
103 lines (91 loc) · 2.5 KB
/
check-dts.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
import { exec } from 'child_process'
import { promisify } from 'util'
import path from 'path'
import fs from 'fs'
/**
* This script is for extra typechecking of the built .d.ts files in {package_name}/dist/types/*.
* Occassionally, "internal" .dts errors can result from oddities in typescript configuration,
* such as: https://github.com/segmentio/analytics-next/issues/748.
* These errors would only surface for customers with `skipLibCheck` enabled.
*/
const execa = promisify(exec)
const allPublicPackageDirNames = [
'browser',
'core',
'node',
'signals/signals',
'signals/signals-runtime',
] as const
type PackageDirName = typeof allPublicPackageDirNames[number]
class Tsc {
// e.g. packages/browser
configPathDir: string
// e.g. packages/browser/tsconfig.json
configPath: string
private jsonConfig: string = JSON.stringify({
extends: '../../tsconfig.json',
include: ['./dist/types/**/*'],
compilerOptions: {
noEmit: true,
skipLibCheck: false,
},
})
constructor(packageDirName: PackageDirName) {
this.configPathDir = path.join('packages', packageDirName)
this.configPath = path.join(this.configPathDir, 'tmp.tsconfig.json')
}
typecheck() {
this.writeConfig()
const cmd = [
`node_modules/.bin/tsc`,
`--project ${this.configPath}`,
`--pretty false`,
].join(' ')
return execa(cmd).finally(() => this.deleteConfig())
}
private deleteConfig() {
fs.unlinkSync(this.configPath)
}
private writeConfig() {
fs.writeFileSync(this.configPath, this.jsonConfig, {
encoding: 'utf8',
})
}
}
const checkDts = async (packageDirName: PackageDirName): Promise<void> => {
const tsc = new Tsc(packageDirName)
try {
await tsc.typecheck()
} catch (err: any) {
if (!err || typeof err !== 'object' || !err.stdout) {
throw err
}
const errors: string[] = err.stdout.toString().split('\n')
const relevantErrors = errors.filter((msg) =>
msg.includes(tsc.configPathDir)
)
if (relevantErrors.length) {
throw relevantErrors
}
}
}
const main = async () => {
let hasError = false
for (const packageDirName of allPublicPackageDirNames) {
try {
console.log(`Checking "${packageDirName}/dist/types"...`)
await checkDts(packageDirName)
} catch (err) {
console.error(err)
hasError = true
}
}
if (hasError) {
console.log('\n Tests failed.')
process.exit(1)
} else {
console.log('\n Tests passed.')
process.exit(0)
}
}
void main()