-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
pre-commit.ts
73 lines (72 loc) · 2.38 KB
/
pre-commit.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
import { ChildProcess } from '@bcms/selfhosted-utils/child-process';
import { StringUtility } from '@bcms/selfhosted-utils/string-utility';
import path from 'path';
export async function preCommit() {
const whatToCheck = {
backend: false,
ui: false,
client: false,
};
let gitOutput = '';
await ChildProcess.advancedExec('git status', {
cwd: process.cwd(),
doNotThrowError: true,
onChunk(type, chunk) {
gitOutput += chunk;
process[type].write(chunk);
},
}).awaiter;
const paths = StringUtility.allTextBetween(gitOutput, ' ', '\n');
for (let i = 0; i < paths.length; i++) {
const p = paths[i];
if (p.startsWith('backend/')) {
whatToCheck.backend = true;
} else if (p.startsWith('ui/')) {
whatToCheck.ui = true;
} else if (p.startsWith('client/')) {
whatToCheck.ui = true;
}
}
if (whatToCheck.backend) {
await ChildProcess.advancedExec('npm run lint', {
cwd: path.join(process.cwd(), 'backend'),
onChunk(type, chunk) {
process[type].write(chunk);
},
}).awaiter;
await ChildProcess.advancedExec('npm run build:noEmit', {
cwd: path.join(process.cwd(), 'backend'),
onChunk(type, chunk) {
process[type].write(chunk);
},
}).awaiter;
}
if (whatToCheck.ui) {
await ChildProcess.advancedExec('npm run lint', {
cwd: path.join(process.cwd(), 'ui'),
onChunk(type, chunk) {
process[type].write(chunk);
},
}).awaiter;
await ChildProcess.advancedExec('npm run type-check', {
cwd: path.join(process.cwd(), 'ui'),
onChunk(type, chunk) {
process[type].write(chunk);
},
}).awaiter;
}
if (whatToCheck.client) {
await ChildProcess.advancedExec('npm run lint', {
cwd: path.join(process.cwd(), 'client'),
onChunk(type, chunk) {
process[type].write(chunk);
},
}).awaiter;
await ChildProcess.advancedExec('npm run build:noEmit', {
cwd: path.join(process.cwd(), 'client'),
onChunk(type, chunk) {
process[type].write(chunk);
},
}).awaiter;
}
}